aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list.js
blob: 9348b9fc4d0392b22baa3b43ed7265aa5b6151fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const genAccountLink = require('../../lib/account-link')
const extension = require('../../../app/scripts/lib/extension')

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, address } = this.props
  const transactions = txsToRender.concat(unconfMsgs)
  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)
  const accountLink = genAccountLink(address, network)

  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',
        },
      }, [
        'Transactions',
      ]),

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

        transactions.length
          ? transactions.map((transaction, i) => {
            return h(TransactionListItem, {
              transaction, i, network,
              showTx: (txId) => {
                this.props.viewPendingTx(txId)
              },
            })
          }).concat(viewMoreButton(accountLink))
        : h('.flex-center', {
          style: {
            flexDirection: 'column',
            height: '100%',
          },
        }, [
          'No transaction history.',
          viewMoreButton(accountLink),
        ]),
      ]),
    ])
  )
}

function viewMoreButton(url) {
  return url ? h('button', {
    style: {
      margin: '10px',
    },
    onClick: (ev) => {
      ev.preventDefault()
      extension.tabs.create({ url })
    },
  }, 'Show More') : null
}