1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/tx-view.js

127 lines
2.8 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const ethUtil = require('ethereumjs-util')
const inherits = require('util').inherits
2017-08-02 22:32:02 +02:00
const actions = require('../actions')
2017-08-11 04:35:10 +02:00
const WalletView = require('./wallet-view')
const BalanceComponent = require('./balance-component')
2017-08-09 12:10:51 +02:00
const TxList = require('./tx-list')
const Identicon = require('./identicon')
2017-08-02 22:32:02 +02:00
module.exports = connect(mapStateToProps, mapDispatchToProps)(TxView)
function mapStateToProps (state) {
const sidebarOpen = state.appState.sidebarOpen
const identities = state.metamask.identities
const accounts = state.metamask.accounts
const selectedAddress = state.metamask.selectedAddress || Object.keys(accounts)[0]
const checksumAddress = selectedAddress && ethUtil.toChecksumAddress(selectedAddress)
const identity = identities[selectedAddress]
const account = accounts[selectedAddress]
2017-08-02 22:32:02 +02:00
return {
sidebarOpen,
selectedAddress,
checksumAddress,
identity,
account,
2017-08-02 22:32:02 +02:00
}
}
2017-08-02 22:32:02 +02:00
function mapDispatchToProps (dispatch) {
return {
showSidebar: () => { dispatch(actions.showSidebar()) },
hideSidebar: () => { dispatch(actions.hideSidebar()) },
showModal: (payload) => { dispatch(actions.showModal(payload)) },
2017-08-02 22:32:02 +02:00
}
}
2017-08-01 06:34:37 +02:00
inherits(TxView, Component)
function TxView () {
Component.call(this)
}
TxView.prototype.render = function () {
const { selectedAddress, identity, account } = this.props
return h('div.tx-view.flex-column', {
style: {},
}, [
h('div.flex-row.phone-visible', {
style: {
margin: '1em 0.9em',
alignItems: 'center',
},
onClick: () => {
this.props.sidebarOpen ? this.props.hideSidebar() : this.props.showSidebar()
},
}, [
2017-08-11 04:35:10 +02:00
h('div.fa.fa-bars', {
style: {
fontSize: '1.3em',
},
}, []),
h('.identicon-wrapper.select-none', {
style: {
marginLeft: '0.9em',
},
}, [
h(Identicon, {
diameter: 24,
address: selectedAddress,
}),
]),
h('span.account-name', {
style: {},
}, [
identity.name,
]),
]),
2017-08-07 00:46:55 +02:00
h('div.hero-balance', {
style: {},
2017-08-03 09:43:24 +02:00
}, [
h(BalanceComponent, {
balanceValue: account && account.balance,
style: {},
2017-08-07 00:46:55 +02:00
}),
h('div.flex-row.flex-center.hero-balance-buttons', {
2017-08-09 12:10:51 +02:00
style: {},
2017-08-07 00:46:55 +02:00
}, [
h('button.btn-clear', {
style: {
2017-08-07 00:46:55 +02:00
textAlign: 'center',
},
onClick: () => {
this.props.showModal({
name: 'BUY',
})
},
2017-08-07 00:46:55 +02:00
}, 'BUY'),
2017-08-03 09:43:24 +02:00
2017-08-07 00:46:55 +02:00
h('button.btn-clear', {
style: {
textAlign: 'center',
marginLeft: '1.4em',
},
}, 'SEND'),
2017-08-07 00:46:55 +02:00
]),
2017-08-03 09:43:24 +02:00
]),
2017-08-09 12:10:51 +02:00
h(TxList, {}),
2017-08-01 07:00:18 +02:00
])
}