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.
114 lines
3.4 KiB
114 lines
3.4 KiB
7 years ago
|
const Component = require('react').Component
|
||
|
const { Switch, Route, matchPath } = require('react-router-dom')
|
||
|
const PropTypes = require('prop-types')
|
||
|
const h = require('react-hyperscript')
|
||
|
const connect = require('react-redux').connect
|
||
6 years ago
|
const actions = require('../../store/actions')
|
||
|
const { getCurrentViewContext } = require('../../selectors/selectors')
|
||
7 years ago
|
const classnames = require('classnames')
|
||
|
const NewAccountCreateForm = require('./new-account')
|
||
|
const NewAccountImportForm = require('./import-account')
|
||
7 years ago
|
const ConnectHardwareForm = require('./connect-hardware')
|
||
|
const {
|
||
|
NEW_ACCOUNT_ROUTE,
|
||
|
IMPORT_ACCOUNT_ROUTE,
|
||
6 years ago
|
CONNECT_HARDWARE_ROUTE,
|
||
6 years ago
|
} = require('../../helpers/constants/routes')
|
||
7 years ago
|
|
||
|
class CreateAccountPage extends Component {
|
||
|
renderTabs () {
|
||
|
const { history, location } = this.props
|
||
|
|
||
|
return h('div.new-account__tabs', [
|
||
|
h('div.new-account__tabs__tab', {
|
||
|
className: classnames('new-account__tabs__tab', {
|
||
|
'new-account__tabs__selected': matchPath(location.pathname, {
|
||
|
path: NEW_ACCOUNT_ROUTE, exact: true,
|
||
|
}),
|
||
|
}),
|
||
|
onClick: () => history.push(NEW_ACCOUNT_ROUTE),
|
||
7 years ago
|
}, [
|
||
|
this.context.t('create'),
|
||
|
]),
|
||
7 years ago
|
|
||
|
h('div.new-account__tabs__tab', {
|
||
|
className: classnames('new-account__tabs__tab', {
|
||
|
'new-account__tabs__selected': matchPath(location.pathname, {
|
||
|
path: IMPORT_ACCOUNT_ROUTE, exact: true,
|
||
|
}),
|
||
|
}),
|
||
|
onClick: () => history.push(IMPORT_ACCOUNT_ROUTE),
|
||
7 years ago
|
}, [
|
||
|
this.context.t('import'),
|
||
|
]),
|
||
7 years ago
|
h(
|
||
|
'div.new-account__tabs__tab',
|
||
|
{
|
||
|
className: classnames('new-account__tabs__tab', {
|
||
|
'new-account__tabs__selected': matchPath(location.pathname, {
|
||
|
path: CONNECT_HARDWARE_ROUTE,
|
||
|
exact: true,
|
||
|
}),
|
||
|
}),
|
||
|
onClick: () => history.push(CONNECT_HARDWARE_ROUTE),
|
||
|
},
|
||
|
this.context.t('connect')
|
||
|
),
|
||
7 years ago
|
])
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
return h('div.new-account', {}, [
|
||
|
h('div.new-account__header', [
|
||
6 years ago
|
h('div.new-account__title', this.context.t('newAccount')),
|
||
7 years ago
|
this.renderTabs(),
|
||
|
]),
|
||
|
h('div.new-account__form', [
|
||
|
h(Switch, [
|
||
|
h(Route, {
|
||
|
exact: true,
|
||
|
path: NEW_ACCOUNT_ROUTE,
|
||
|
component: NewAccountCreateForm,
|
||
|
}),
|
||
|
h(Route, {
|
||
|
exact: true,
|
||
|
path: IMPORT_ACCOUNT_ROUTE,
|
||
|
component: NewAccountImportForm,
|
||
|
}),
|
||
7 years ago
|
h(Route, {
|
||
|
exact: true,
|
||
|
path: CONNECT_HARDWARE_ROUTE,
|
||
|
component: ConnectHardwareForm,
|
||
|
}),
|
||
7 years ago
|
]),
|
||
|
]),
|
||
|
])
|
||
|
}
|
||
|
}
|
||
|
|
||
|
CreateAccountPage.propTypes = {
|
||
|
location: PropTypes.object,
|
||
|
history: PropTypes.object,
|
||
7 years ago
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
CreateAccountPage.contextTypes = {
|
||
|
t: PropTypes.func,
|
||
7 years ago
|
}
|
||
|
|
||
|
const mapStateToProps = state => ({
|
||
|
displayedForm: getCurrentViewContext(state),
|
||
|
})
|
||
|
|
||
|
const mapDispatchToProps = dispatch => ({
|
||
|
displayForm: form => dispatch(actions.setNewAccountForm(form)),
|
||
|
showQrView: (selected, identity) => dispatch(actions.showQrView(selected, identity)),
|
||
|
showExportPrivateKeyModal: () => {
|
||
|
dispatch(actions.showModal({ name: 'EXPORT_PRIVATE_KEY' }))
|
||
|
},
|
||
|
hideModal: () => dispatch(actions.hideModal()),
|
||
7 years ago
|
setAccountLabel: (address, label) => dispatch(actions.setAccountLabel(address, label)),
|
||
7 years ago
|
})
|
||
|
|
||
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(CreateAccountPage)
|