aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-11-10 11:32:53 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-14 01:52:40 +0800
commit544166437a0a41ce25d3d47814409a7ce01b4e07 (patch)
tree6ff16e4eb555e6b482b7916c768257d60f25aad9 /ui/app/components/modals
parent08d9ecc0454c729356f3f7a6d91156ee96c66959 (diff)
downloadtangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar.gz
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar.bz2
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar.lz
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar.xz
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.tar.zst
tangerine-wallet-browser-544166437a0a41ce25d3d47814409a7ce01b4e07.zip
Deposit button shows link to faucet on testnet networks.
Diffstat (limited to 'ui/app/components/modals')
-rw-r--r--ui/app/components/modals/buy-options-modal.js38
1 files changed, 23 insertions, 15 deletions
diff --git a/ui/app/components/modals/buy-options-modal.js b/ui/app/components/modals/buy-options-modal.js
index 33615c483..53e40ba92 100644
--- a/ui/app/components/modals/buy-options-modal.js
+++ b/ui/app/components/modals/buy-options-modal.js
@@ -3,6 +3,7 @@ const h = require('react-hyperscript')
const inherits = require('util').inherits
const connect = require('react-redux').connect
const actions = require('../../actions')
+const networkNames = require('../../../../app/scripts/config.js').networkNames
function mapStateToProps (state) {
return {
@@ -22,6 +23,7 @@ function mapDispatchToProps (dispatch) {
showAccountDetailModal: () => {
dispatch(actions.showModal({ name: 'ACCOUNT_DETAILS' }))
},
+ toFaucet: network => dispatch(actions.buyEth({ network })),
}
}
@@ -32,7 +34,20 @@ function BuyOptions () {
module.exports = connect(mapStateToProps, mapDispatchToProps)(BuyOptions)
+BuyOptions.prototype.renderModalContentOption = function (title, header, onClick) {
+ return h('div.buy-modal-content-option', {
+ onClick,
+ }, [
+ h('div.buy-modal-content-option-title', {}, title),
+ h('div.buy-modal-content-option-subtitle', {}, header),
+ ])
+}
+
BuyOptions.prototype.render = function () {
+ const { network, toCoinbase, address, toFaucet } = this.props
+ const networkIsTest = ['3', '4', '42'].find(n => n === network)
+ const networkName = networkNames[network]
+
return h('div', {}, [
h('div.buy-modal-content.transfers-subview', {
}, [
@@ -47,27 +62,20 @@ BuyOptions.prototype.render = function () {
h('div.buy-modal-content-options.flex-column.flex-center', {}, [
- h('div.buy-modal-content-option', {
- onClick: () => {
- const { toCoinbase, address } = this.props
- toCoinbase(address)
- },
- }, [
- h('div.buy-modal-content-option-title', {}, 'Coinbase'),
- h('div.buy-modal-content-option-subtitle', {}, 'Deposit with Fiat'),
- ]),
+ networkIsTest
+ ? this.renderModalContentOption(networkName, 'Test Faucet', () => toFaucet(network))
+ : this.renderModalContentOption('Coinbase', 'Deposit with Fiat', () => toCoinbase(address)),
// 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', {
- onClick: () => this.goToAccountDetailsModal(),
- }, [
- h('div.buy-modal-content-option-title', {}, 'Direct Deposit'),
- h('div.buy-modal-content-option-subtitle', {}, 'Deposit from another account'),
- ]),
+ this.renderModalContentOption(
+ 'Direct Deposit',
+ 'Deposit from another account',
+ () => this.goToAccountDetailsModal()
+ ),
]),