aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/transaction-list.js
blob: 7e1bedb05c5a99228310a7b44efc5965fd9b4c09 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                            
                                      

                                         
                                                              
 



                                    
                             


                      
                                                
                                                         
                      
                        


                                                                                                                            
                                  
 
          
 
                                   
 









                                                                       


                                                    
                           

                               

          
                  


                     

                            
                          
                            

                              
          
 

                                                  








                                                               
                                           
                                           
                                 

                                              
              
            
                             
                  
                                    

                           

                                    

           
      
   
 
 
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits

const TransactionListItem = require('./transaction-list-item')

module.exports = TransactionList


inherits(TransactionList, Component)
function TransactionList () {
  Component.call(this)
}

TransactionList.prototype.render = function () {
  const { txsToRender, network, unconfMsgs } = this.props
  var shapeShiftTxList
  if (network === '1') {
    shapeShiftTxList = this.props.shapeShiftTxList
  }
  const transactions = !shapeShiftTxList ? txsToRender.concat(unconfMsgs) : txsToRender.concat(unconfMsgs, shapeShiftTxList)
  .sort((a, b) => b.time - a.time)

  return (

    h('section.transaction-list', [

      h('style', `
        .transaction-list .transaction-list-item:not(:last-of-type) {
          border-bottom: 1px solid #D4D4D4;
        }
        .transaction-list .transaction-list-item .ether-balance-label {
          display: block !important;
          font-size: small;
        }
      `),

      h('h3.flex-center.text-transform-uppercase', {
        style: {
          background: '#EBEBEB',
          color: '#AEAEAE',
          paddingTop: '4px',
          paddingBottom: '4px',
        },
      }, [
        'History',
      ]),

      h('.tx-list', {
        style: {
          overflowY: 'auto',
          height: '300px',
          padding: '0 20px',
          textAlign: 'center',
        },
      }, [

        transactions.length
          ? transactions.map((transaction, i) => {
            let key
            switch (transaction.key) {
              case 'shapeshift':
                const { depositAddress, time } = transaction
                key = `shift-tx-${depositAddress}-${time}-${i}`
                break
              default:
                key = `tx-${transaction.id}-${i}`
            }
            return h(TransactionListItem, {
              transaction, i, network, key,
              showTx: (txId) => {
                this.props.viewPendingTx(txId)
              },
            })
          })
        : h('.flex-center', {
          style: {
            flexDirection: 'column',
            height: '100%',
          },
        }, [
          'No transaction history.',
        ]),
      ]),
    ])
  )
}