mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
74 lines
2.1 KiB
JavaScript
74 lines
2.1 KiB
JavaScript
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.buy-modal-content.transfers-subview', {
|
|
}, [
|
|
h('div.buy-modal-content-title-wrapper.flex-column.flex-center', {
|
|
style: {},
|
|
}, [
|
|
h('div.buy-modal-content-title', {
|
|
style: {},
|
|
}, 'Account Details Modal'),
|
|
h('div', {}, 'How would you like to buy Ether?'),
|
|
]),
|
|
|
|
h('div.buy-modal-content-options.flex-column.flex-center', {}, [
|
|
|
|
h('div.buy-modal-content-option', {
|
|
onClick: () => {},
|
|
}, [
|
|
h('div.buy-modal-content-option-title', {}, 'Coinbase'),
|
|
h('div.buy-modal-content-option-subtitle', {}, 'Buy with Fiat'),
|
|
]),
|
|
|
|
h('div.buy-modal-content-option', {}, [
|
|
h('div.buy-modal-content-option-title', {}, 'Shapeshift'),
|
|
h('div.buy-modal-content-option-subtitle', {}, 'Trade any digital asset for any other'),
|
|
]),
|
|
|
|
h('div.buy-modal-content-option', {}, [
|
|
h('div.buy-modal-content-option-title', {}, 'Direct Deposit'),
|
|
h('div.buy-modal-content-option-subtitle', {}, 'Deposit from another account'),
|
|
]),
|
|
|
|
]),
|
|
|
|
h('button', {
|
|
style: {
|
|
background: 'white',
|
|
},
|
|
onClick: () => { this.props.hideModal() },
|
|
}, h('div.buy-modal-content-footer#buy-modal-content-footer-text',{}, 'Cancel')),
|
|
])
|
|
])
|
|
}
|