You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.7 KiB
80 lines
1.7 KiB
const Component = require('react').Component
|
|
const PropTypes = require('prop-types')
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const connect = require('react-redux').connect
|
|
const actions = require('../../actions')
|
|
const { getSelectedIdentity } = require('../../selectors')
|
|
const Identicon = require('../identicon')
|
|
|
|
function mapStateToProps (state, ownProps) {
|
|
return {
|
|
selectedIdentity: ownProps.selectedIdentity || getSelectedIdentity(state),
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
hideModal: () => {
|
|
dispatch(actions.hideModal())
|
|
},
|
|
}
|
|
}
|
|
|
|
inherits(AccountModalContainer, Component)
|
|
function AccountModalContainer () {
|
|
Component.call(this)
|
|
}
|
|
|
|
AccountModalContainer.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(AccountModalContainer)
|
|
|
|
|
|
AccountModalContainer.prototype.render = function () {
|
|
const {
|
|
selectedIdentity,
|
|
showBackButton = false,
|
|
backButtonAction,
|
|
} = this.props
|
|
let { children } = this.props
|
|
|
|
if (children.constructor !== Array) {
|
|
children = [children]
|
|
}
|
|
|
|
return h('div', { style: { borderRadius: '4px' }}, [
|
|
h('div.account-modal-container', [
|
|
|
|
h('div', [
|
|
|
|
// Needs a border; requires changes to svg
|
|
h(Identicon, {
|
|
address: selectedIdentity.address,
|
|
diameter: 64,
|
|
style: {},
|
|
}),
|
|
|
|
]),
|
|
|
|
showBackButton && h('div.account-modal-back', {
|
|
onClick: backButtonAction,
|
|
}, [
|
|
|
|
h('i.fa.fa-angle-left.fa-lg'),
|
|
|
|
h('span.account-modal-back__text', ' ' + this.context.t('back')),
|
|
|
|
]),
|
|
|
|
h('div.account-modal-close', {
|
|
onClick: this.props.hideModal,
|
|
}),
|
|
|
|
...children,
|
|
|
|
]),
|
|
])
|
|
}
|
|
|