aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/wallet-view.js
blob: 7d4b8cd513bb2bd3da6db22dd0eb9f6730552c19 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
const Component = require('react').Component
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const inherits = require('util').inherits
const Identicon = require('./identicon')
const AccountDropdowns = require('./account-dropdowns').AccountDropdowns
const Content = require('./wallet-content-display')
const actions = require('../actions')
const selectors = require('../selectors')

module.exports = connect(mapStateToProps, mapDispatchToProps)(WalletView)

function mapStateToProps (state) {
  return {
    network: state.metamask.network,
    sidebarOpen: state.appState.sidebarOpen,
    identities: state.metamask.identities,
    accounts: state.metamask.accounts,
    selectedAddress: selectors.getSelectedAddress(state),
    selectedIdentity: selectors.getSelectedIdentity(state),
    selectedAccount: selectors.getSelectedAccount(state),
  }
}

function mapDispatchToProps (dispatch) {
  return {
    showSendPage: () => { dispatch(actions.showSendPage()) },
    hideSidebar: () => { dispatch(actions.hideSidebar()) },
  }
}

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

const noop = () => {}

WalletView.prototype.render = function () {
  const { network, responsiveDisplayClassname, style, identities, selectedAddress, selectedIdentity } = this.props

  return h('div.wallet-view.flex-column' + (responsiveDisplayClassname || ''), {
    style: {},
  }, [

    // TODO: Separate component: wallet account details
    h('div.flex-column', {
      style: {},
    }, [

      h('div.flex-row.account-options-menu', {
        style: {
          position: 'relative',
        },
      }, [

        h(AccountDropdowns, {
          selected: selectedAddress,
          network,
          identities,
          enableAccountOptions: true,
          dropdownWrapperStyle: {
            padding: '1px 15px',
            marginLeft: '-25px',
            position: 'absolute',
            width: '122%', //TODO, refactor all of this component out into media queries
          },
          menuItemStyles: {
            padding: '0px 0px',
            margin: '22px 0px',
          }
        }, []),

      ]),

      h('div.flex-column.flex-center', {
        style: {
          position: 'relative',
        },
      }, [

        h('.identicon-wrapper.select-none', {
          style: {
            marginBottom: '1%',
          },
        }, [
          h(Identicon, {
            diameter: 54,
            address: selectedAddress,
          }),
        ]),

        h('span.account-name', {
          style: {},
        }, [
          selectedIdentity.name,
        ]),

        h(AccountDropdowns, {
          style: {
            position: 'absolute',
            left: 'calc(50% + 28px + 5.5px)',
            top: '19.5%',
          },
          selectedAddress,
          network,
          identities,
          enableAccountsSelector: true,
        }, []),
      ]),

    ]),

    h(Content, {
      title: 'Wallet',
      amount: '1001.124 ETH',
      fiatValue: '$300,000.00 USD',
      active: true,
    }),

    // Wallet contents
    h(Content, {
      title: 'Total Token Balance',
      amount: '45.439 ETH',
      fiatValue: '$13,000.00 USD',
      active: false,
      style: {
        marginTop: '1.3em',
      },
    }),
  ])
}