mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
139 lines
3.7 KiB
JavaScript
139 lines
3.7 KiB
JavaScript
const inherits = require('util').inherits
|
|
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const connect = require('react-redux').connect
|
|
const extend = require('xtend')
|
|
const Identicon = require('./components/identicon')
|
|
const actions = require('./actions')
|
|
const EtherBalance = require('./components/eth-balance')
|
|
const valuesFor = require('./util').valuesFor
|
|
const addressSummary = require('./util').addressSummary
|
|
const formatBalance = require('./util').formatBalance
|
|
|
|
module.exports = connect(mapStateToProps)(AccountsScreen)
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
accounts: state.metamask.accounts,
|
|
identities: state.metamask.identities,
|
|
unconfTxs: state.metamask.unconfTxs,
|
|
selectedAddress: state.metamask.selectedAddress,
|
|
currentDomain: state.appState.currentDomain,
|
|
}
|
|
}
|
|
|
|
inherits(AccountsScreen, Component)
|
|
function AccountsScreen() {
|
|
Component.call(this)
|
|
}
|
|
|
|
|
|
AccountsScreen.prototype.render = function() {
|
|
var state = this.props
|
|
var identityList = valuesFor(state.identities)
|
|
var unconfTxList = valuesFor(state.unconfTxs)
|
|
var actions = {
|
|
onSelect: this.onSelect.bind(this),
|
|
onShowDetail: this.onShowDetail.bind(this),
|
|
}
|
|
return (
|
|
|
|
h('.accounts-section.flex-column.flex-grow', [
|
|
|
|
// subtitle and nav
|
|
h('.section-title.flex-column.flex-center', [
|
|
h('h2.page-subtitle', 'Select Account'),
|
|
]),
|
|
|
|
h('hr.horizontal-line'),
|
|
|
|
// identity selection
|
|
h('section.identity-section.flex-column', {
|
|
style: {
|
|
overflowY: 'auto',
|
|
overflowX: 'hidden',
|
|
}
|
|
},
|
|
identityList.map(renderAccountPanel)
|
|
),
|
|
|
|
unconfTxList.length ? (
|
|
|
|
h('.unconftx-link.flex-row.flex-center', {
|
|
onClick: this.navigateToConfTx.bind(this),
|
|
}, [
|
|
h('span', 'Unconfirmed Txs'),
|
|
h('i.fa.fa-arrow-right.fa-lg'),
|
|
])
|
|
|
|
) : (
|
|
null
|
|
),
|
|
|
|
|
|
])
|
|
|
|
)
|
|
|
|
function renderAccountPanel(identity){
|
|
var mayBeFauceting = identity.mayBeFauceting
|
|
var isSelected = state.selectedAddress === identity.address
|
|
var account = state.accounts[identity.address]
|
|
var isFauceting = mayBeFauceting && account.balance === '0x0'
|
|
var componentState = extend(actions, {
|
|
identity: identity,
|
|
account: account,
|
|
isSelected: false,
|
|
isFauceting: isFauceting,
|
|
})
|
|
|
|
return (
|
|
h('.accounts-list-option.flex-row.flex-space-between.cursor-pointer', {
|
|
style: {
|
|
flex: '1 0 auto',
|
|
background: isSelected ? 'white' : 'none',
|
|
},
|
|
onClick: (event) => actions.onShowDetail(identity.address, event),
|
|
}, [
|
|
|
|
h('.identicon-wrapper.flex-column.flex-center.select-none', [
|
|
h(Identicon, {
|
|
address: identity.address
|
|
}),
|
|
]),
|
|
|
|
// account address, balance
|
|
h('.identity-data.flex-column.flex-justify-center.flex-grow.select-none', [
|
|
|
|
h('span', identity.name),
|
|
h('span.font-small', addressSummary(identity.address)),
|
|
// h('span.font-small', formatBalance(account.balance)),
|
|
h(EtherBalance, {
|
|
value: account.balance,
|
|
}),
|
|
|
|
]),
|
|
|
|
])
|
|
)
|
|
}
|
|
}
|
|
|
|
AccountsScreen.prototype.navigateToConfTx = function(){
|
|
event.stopPropagation()
|
|
this.props.dispatch(actions.showConfTxPage())
|
|
}
|
|
|
|
AccountsScreen.prototype.onSelect = function(address, event){
|
|
event.stopPropagation()
|
|
// if already selected, deselect
|
|
if (this.props.selectedAddress === address) address = null
|
|
this.props.dispatch(actions.setSelectedAddress(address))
|
|
}
|
|
|
|
AccountsScreen.prototype.onShowDetail = function(address, event){
|
|
event.stopPropagation()
|
|
this.props.dispatch(actions.showAccountDetail(address))
|
|
}
|