diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 10:10:49 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 10:10:49 +0800 |
commit | 71b2dd290b2bbf3107d06d0616ec8858d21b44da (patch) | |
tree | 874a8857b70254b42bf1cd1b1ff6b2c1d4a5246e /ui/app/components/modals/account-details-modal.js | |
parent | 4e9376ca7129611d12a7ec263741f1dee0e4d79c (diff) | |
download | tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar.gz tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar.bz2 tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar.lz tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar.xz tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.tar.zst tangerine-wallet-browser-71b2dd290b2bbf3107d06d0616ec8858d21b44da.zip |
Enhance global modal to handle Buy, Edit, and Details Modals
Diffstat (limited to 'ui/app/components/modals/account-details-modal.js')
-rw-r--r-- | ui/app/components/modals/account-details-modal.js | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/ui/app/components/modals/account-details-modal.js b/ui/app/components/modals/account-details-modal.js new file mode 100644 index 000000000..45f54908f --- /dev/null +++ b/ui/app/components/modals/account-details-modal.js @@ -0,0 +1,73 @@ +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') + +function mapStateToProps (state) { + return { + address: state.metamask.selectedAddress, + } +} + +function mapDispatchToProps (dispatch) { + return { + hideModal: () => { + dispatch(actions.hideModal()) + } + } +} + +inherits(AccountDetailsModal, Component) +function AccountDetailsModal () { + Component.call(this) +} + +module.exports = connect(mapStateToProps, mapDispatchToProps)(AccountDetailsModal) + +// AccountDetailsModal is currently meant to be rendered inside <Modal /> +// It is the only component in this codebase that does so +// It utilizes modal styles +AccountDetailsModal.prototype.render = function () { + return h('div', {}, [ + h('div.modal-content.transfers-subview', { + }, [ + h('div.modal-content-title-wrapper.flex-column.flex-center', { + style: {}, + }, [ + h('div.modal-content-title', { + style: {}, + }, 'Account Details Modal'), + h('div', {}, 'How would you like to buy Ether?'), + ]), + + h('div.modal-content-options.flex-column.flex-center', {}, [ + + h('div.modal-content-option', { + onClick: () => {}, + }, [ + h('div.modal-content-option-title', {}, 'Coinbase'), + h('div.modal-content-option-subtitle', {}, 'Buy with Fiat'), + ]), + + h('div.modal-content-option', {}, [ + h('div.modal-content-option-title', {}, 'Shapeshift'), + h('div.modal-content-option-subtitle', {}, 'Trade any digital asset for any other'), + ]), + + h('div.modal-content-option', {}, [ + h('div.modal-content-option-title', {}, 'Direct Deposit'), + h('div.modal-content-option-subtitle', {}, 'Deposit from another account'), + ]), + + ]), + + h('button', { + style: { + background: 'white', + }, + onClick: () => { this.props.hideModal() }, + }, h('div.modal-content-footer#modal-content-footer-text',{}, 'Cancel')), + ]) + ]) +} |