nifty-wallet/ui/app/components/modals/account-details-modal.js

71 lines
1.9 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const connect = require('react-redux').connect
const actions = require('../../actions')
2017-09-19 17:56:10 -07:00
const AccountModalContainer = require('./account-modal-container')
2017-08-21 09:50:22 -07:00
const { getSelectedIdentity, getSelectedAddress } = require('../../selectors')
const genAccountLink = require('../../../lib/account-link.js')
2017-08-21 09:50:22 -07:00
const QrView = require('../qr-code')
function mapStateToProps (state) {
return {
network: state.metamask.network,
2017-08-21 09:50:22 -07:00
selectedIdentity: getSelectedIdentity(state),
}
}
function mapDispatchToProps (dispatch) {
return {
2017-09-19 17:56:10 -07:00
// Is this supposed to be used somewhere?
2017-08-21 09:50:22 -07:00
showQrView: (selected, identity) => dispatch(actions.showQrView(selected, identity)),
showExportPrivateKeyModal: () => {
dispatch(actions.showModal({ name: 'EXPORT_PRIVATE_KEY' }))
},
hideModal: () => dispatch(actions.hideModal()),
}
}
inherits(AccountDetailsModal, Component)
function AccountDetailsModal () {
Component.call(this)
}
module.exports = connect(mapStateToProps, mapDispatchToProps)(AccountDetailsModal)
// Not yet pixel perfect todos:
2017-09-19 17:56:10 -07:00
// fonts of qr-header
AccountDetailsModal.prototype.render = function () {
const {
selectedIdentity,
network,
showExportPrivateKeyModal,
hideModal,
} = this.props
2017-09-19 17:56:10 -07:00
const { name, address } = selectedIdentity
2017-09-19 17:56:10 -07:00
return h(AccountModalContainer, {}, [
h(QrView, {
Qr: {
2017-09-19 17:56:10 -07:00
message: name,
data: address,
2017-08-29 07:50:48 -07:00
},
2017-09-11 00:45:06 -07:00
}),
2017-09-19 17:56:10 -07:00
h('div.account-modal-divider'),
h('button.btn-clear', {
2017-09-19 17:56:10 -07:00
onClick: () => global.platform.openWindow({ url: genAccountLink(address, network) }),
2017-09-11 00:45:06 -07:00
}, [ 'View account on Etherscan' ]),
// Holding on redesign for Export Private Key functionality
h('button.btn-clear', {
onClick: () => {
showExportPrivateKeyModal()
},
}, [ 'Export private key' ]),
2017-09-19 17:56:10 -07:00
])
}