mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 01:39:44 +01:00
Merge branch 'master' into AddNewLogo
This commit is contained in:
commit
762bf2f48a
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Add fiat conversion values to more views.
|
||||||
- On fresh install, open a new tab with the MetaMask Introduction video.
|
- On fresh install, open a new tab with the MetaMask Introduction video.
|
||||||
- Block negative values from transactions.
|
- Block negative values from transactions.
|
||||||
- Fixed a memory leak.
|
- Fixed a memory leak.
|
||||||
|
@ -10,7 +10,7 @@ const ReactCSSTransitionGroup = require('react-addons-css-transition-group')
|
|||||||
const valuesFor = require('./util').valuesFor
|
const valuesFor = require('./util').valuesFor
|
||||||
|
|
||||||
const Identicon = require('./components/identicon')
|
const Identicon = require('./components/identicon')
|
||||||
const AccountEtherBalance = require('./components/account-eth-balance')
|
const EthBalance = require('./components/eth-balance')
|
||||||
const TransactionList = require('./components/transaction-list')
|
const TransactionList = require('./components/transaction-list')
|
||||||
const ExportAccountView = require('./components/account-export')
|
const ExportAccountView = require('./components/account-export')
|
||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
@ -168,7 +168,7 @@ AccountDetailScreen.prototype.render = function () {
|
|||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
|
|
||||||
h(AccountEtherBalance, {
|
h(EthBalance, {
|
||||||
value: account && account.balance,
|
value: account && account.balance,
|
||||||
style: {
|
style: {
|
||||||
lineHeight: '7px',
|
lineHeight: '7px',
|
||||||
|
@ -3,7 +3,7 @@ const h = require('react-hyperscript')
|
|||||||
const inherits = require('util').inherits
|
const inherits = require('util').inherits
|
||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
|
|
||||||
const AccountEtherBalance = require('../components/account-eth-balance')
|
const EthBalance = require('../components/eth-balance')
|
||||||
const CopyButton = require('../components/copyButton')
|
const CopyButton = require('../components/copyButton')
|
||||||
const Identicon = require('../components/identicon')
|
const Identicon = require('../components/identicon')
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ NewComponent.prototype.render = function () {
|
|||||||
textOverflow: 'ellipsis',
|
textOverflow: 'ellipsis',
|
||||||
},
|
},
|
||||||
}, ethUtil.toChecksumAddress(identity.address)),
|
}, ethUtil.toChecksumAddress(identity.address)),
|
||||||
h(AccountEtherBalance, {
|
h(EthBalance, {
|
||||||
value: account.balance,
|
value: account.balance,
|
||||||
style: {
|
style: {
|
||||||
lineHeight: '7px',
|
lineHeight: '7px',
|
||||||
|
@ -245,7 +245,7 @@ App.prototype.renderNetworkDropdown = function () {
|
|||||||
label: 'Localhost 8545',
|
label: 'Localhost 8545',
|
||||||
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
||||||
action: () => props.dispatch(actions.setRpcTarget('http://localhost:8545')),
|
action: () => props.dispatch(actions.setRpcTarget('http://localhost:8545')),
|
||||||
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-question-circle.fa-lg'),
|
||||||
activeNetworkRender: props.provider.rpcTarget,
|
activeNetworkRender: props.provider.rpcTarget,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@ -253,7 +253,7 @@ App.prototype.renderNetworkDropdown = function () {
|
|||||||
label: 'Custom RPC',
|
label: 'Custom RPC',
|
||||||
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
||||||
action: () => this.props.dispatch(actions.showConfigPage()),
|
action: () => this.props.dispatch(actions.showConfigPage()),
|
||||||
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-question-circle.fa-lg'),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
this.renderCustomOption(props.provider.rpcTarget),
|
this.renderCustomOption(props.provider.rpcTarget),
|
||||||
@ -289,21 +289,21 @@ App.prototype.renderDropdown = function () {
|
|||||||
label: 'Settings',
|
label: 'Settings',
|
||||||
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
||||||
action: () => this.props.dispatch(actions.showConfigPage()),
|
action: () => this.props.dispatch(actions.showConfigPage()),
|
||||||
icon: h('i.fa.fa-gear.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-gear.fa-lg'),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
h(DropMenuItem, {
|
h(DropMenuItem, {
|
||||||
label: 'Lock',
|
label: 'Lock',
|
||||||
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
||||||
action: () => this.props.dispatch(actions.lockMetamask()),
|
action: () => this.props.dispatch(actions.lockMetamask()),
|
||||||
icon: h('i.fa.fa-lock.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-lock.fa-lg'),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
h(DropMenuItem, {
|
h(DropMenuItem, {
|
||||||
label: 'Help',
|
label: 'Help',
|
||||||
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
closeMenu: () => this.setState({ isMainMenuOpen: !isOpen }),
|
||||||
action: () => this.props.dispatch(actions.showInfoPage()),
|
action: () => this.props.dispatch(actions.showInfoPage()),
|
||||||
icon: h('i.fa.fa-question.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-question.fa-lg'),
|
||||||
}),
|
}),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
@ -312,7 +312,6 @@ App.prototype.renderBackButton = function (style, justArrow = false) {
|
|||||||
return (
|
return (
|
||||||
h('.flex-row', {
|
h('.flex-row', {
|
||||||
key: 'leftArrow',
|
key: 'leftArrow',
|
||||||
transForward: false,
|
|
||||||
style: style,
|
style: style,
|
||||||
onClick: () => props.dispatch(actions.goBackToInitView()),
|
onClick: () => props.dispatch(actions.goBackToInitView()),
|
||||||
}, [
|
}, [
|
||||||
@ -515,14 +514,14 @@ App.prototype.renderCustomOption = function (rpcTarget) {
|
|||||||
label: 'Custom RPC',
|
label: 'Custom RPC',
|
||||||
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
||||||
action: () => this.props.dispatch(actions.showConfigPage()),
|
action: () => this.props.dispatch(actions.showConfigPage()),
|
||||||
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-question-circle.fa-lg'),
|
||||||
})
|
})
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return h(DropMenuItem, {
|
return h(DropMenuItem, {
|
||||||
label: `${rpcTarget}`,
|
label: `${rpcTarget}`,
|
||||||
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
closeMenu: () => this.setState({ isNetworkMenuOpen: false }),
|
||||||
icon: h('i.fa.fa-question-circle.fa-lg', { ariaHidden: true }),
|
icon: h('i.fa.fa-question-circle.fa-lg'),
|
||||||
activeNetworkRender: 'custom',
|
activeNetworkRender: 'custom',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -1,140 +0,0 @@
|
|||||||
const Component = require('react').Component
|
|
||||||
const h = require('react-hyperscript')
|
|
||||||
const inherits = require('util').inherits
|
|
||||||
const connect = require('react-redux').connect
|
|
||||||
const formatBalance = require('../util').formatBalance
|
|
||||||
const generateBalanceObject = require('../util').generateBalanceObject
|
|
||||||
const Tooltip = require('./tooltip.js')
|
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(EthBalanceComponent)
|
|
||||||
|
|
||||||
function mapStateToProps (state) {
|
|
||||||
return {
|
|
||||||
conversionRate: state.metamask.conversionRate,
|
|
||||||
conversionDate: state.metamask.conversionDate,
|
|
||||||
currentFiat: state.metamask.currentFiat,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inherits(EthBalanceComponent, Component)
|
|
||||||
function EthBalanceComponent () {
|
|
||||||
Component.call(this)
|
|
||||||
}
|
|
||||||
|
|
||||||
EthBalanceComponent.prototype.render = function () {
|
|
||||||
var state = this.props
|
|
||||||
var style = state.style
|
|
||||||
|
|
||||||
const value = formatBalance(state.value, 6)
|
|
||||||
var width = state.width
|
|
||||||
|
|
||||||
return (
|
|
||||||
|
|
||||||
h('.ether-balance', {
|
|
||||||
style: style,
|
|
||||||
}, [
|
|
||||||
h('.ether-balance-amount', {
|
|
||||||
style: {
|
|
||||||
display: 'inline',
|
|
||||||
width: width,
|
|
||||||
},
|
|
||||||
}, this.renderBalance(value, state)),
|
|
||||||
])
|
|
||||||
|
|
||||||
)
|
|
||||||
}
|
|
||||||
EthBalanceComponent.prototype.renderBalance = function (value, state) {
|
|
||||||
if (value === 'None') return value
|
|
||||||
var balanceObj = generateBalanceObject(value, state.shorten ? 1 : 3)
|
|
||||||
var balance, fiatDisplayNumber, fiatTooltipNumber
|
|
||||||
var splitBalance = value.split(' ')
|
|
||||||
var ethNumber = splitBalance[0]
|
|
||||||
var ethSuffix = splitBalance[1]
|
|
||||||
|
|
||||||
|
|
||||||
if (state.conversionRate !== 0) {
|
|
||||||
fiatTooltipNumber = Number(splitBalance[0]) * state.conversionRate
|
|
||||||
fiatDisplayNumber = fiatTooltipNumber.toFixed(2)
|
|
||||||
} else {
|
|
||||||
fiatDisplayNumber = 'N/A'
|
|
||||||
}
|
|
||||||
|
|
||||||
var fiatSuffix = state.currentFiat
|
|
||||||
|
|
||||||
if (state.shorten) {
|
|
||||||
balance = balanceObj.shortBalance
|
|
||||||
} else {
|
|
||||||
balance = balanceObj.balance
|
|
||||||
}
|
|
||||||
|
|
||||||
var label = balanceObj.label
|
|
||||||
|
|
||||||
return (
|
|
||||||
h('.flex-column', [
|
|
||||||
h(Tooltip, {
|
|
||||||
position: 'bottom',
|
|
||||||
title: `${ethNumber} ${ethSuffix}`,
|
|
||||||
}, [
|
|
||||||
h('.flex-row', {
|
|
||||||
style: {
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
lineHeight: '13px',
|
|
||||||
fontFamily: 'Montserrat Light',
|
|
||||||
textRendering: 'geometricPrecision',
|
|
||||||
marginBottom: '5px',
|
|
||||||
},
|
|
||||||
}, [
|
|
||||||
h('div', {
|
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
textAlign: 'right',
|
|
||||||
},
|
|
||||||
}, balance),
|
|
||||||
h('div', {
|
|
||||||
style: {
|
|
||||||
color: '#AEAEAE',
|
|
||||||
marginLeft: '5px',
|
|
||||||
},
|
|
||||||
}, label),
|
|
||||||
]),
|
|
||||||
]),
|
|
||||||
h(Tooltip, {
|
|
||||||
position: 'bottom',
|
|
||||||
title: `${fiatTooltipNumber} ${fiatSuffix}`,
|
|
||||||
}, [
|
|
||||||
fiatDisplay(fiatDisplayNumber, fiatSuffix),
|
|
||||||
]),
|
|
||||||
])
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function fiatDisplay (fiatDisplayNumber, fiatSuffix) {
|
|
||||||
if (fiatDisplayNumber !== 'N/A') {
|
|
||||||
return h('.flex-row', {
|
|
||||||
style: {
|
|
||||||
alignItems: 'flex-end',
|
|
||||||
lineHeight: '13px',
|
|
||||||
fontFamily: 'Montserrat Light',
|
|
||||||
textRendering: 'geometricPrecision',
|
|
||||||
},
|
|
||||||
}, [
|
|
||||||
h('div', {
|
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
textAlign: 'right',
|
|
||||||
fontSize: '12px',
|
|
||||||
color: '#333333',
|
|
||||||
},
|
|
||||||
}, fiatDisplayNumber),
|
|
||||||
h('div', {
|
|
||||||
style: {
|
|
||||||
color: '#AEAEAE',
|
|
||||||
marginLeft: '5px',
|
|
||||||
fontSize: '12px',
|
|
||||||
},
|
|
||||||
}, fiatSuffix),
|
|
||||||
])
|
|
||||||
} else {
|
|
||||||
return h('div')
|
|
||||||
}
|
|
||||||
}
|
|
@ -4,6 +4,7 @@ const inherits = require('util').inherits
|
|||||||
const formatBalance = require('../util').formatBalance
|
const formatBalance = require('../util').formatBalance
|
||||||
const generateBalanceObject = require('../util').generateBalanceObject
|
const generateBalanceObject = require('../util').generateBalanceObject
|
||||||
const Tooltip = require('./tooltip.js')
|
const Tooltip = require('./tooltip.js')
|
||||||
|
const FiatValue = require('./fiat-value.js')
|
||||||
|
|
||||||
module.exports = EthBalanceComponent
|
module.exports = EthBalanceComponent
|
||||||
|
|
||||||
@ -13,11 +14,11 @@ function EthBalanceComponent () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
EthBalanceComponent.prototype.render = function () {
|
EthBalanceComponent.prototype.render = function () {
|
||||||
var state = this.props
|
var props = this.props
|
||||||
var style = state.style
|
var style = props.style
|
||||||
var needsParse = this.props.needsParse !== undefined ? this.props.needsParse : true
|
var needsParse = this.props.needsParse !== undefined ? this.props.needsParse : true
|
||||||
const value = formatBalance(state.value, 6, needsParse)
|
const value = formatBalance(props.value, 6, needsParse)
|
||||||
var width = state.width
|
var width = props.width
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
@ -35,15 +36,16 @@ EthBalanceComponent.prototype.render = function () {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
EthBalanceComponent.prototype.renderBalance = function (value) {
|
EthBalanceComponent.prototype.renderBalance = function (value) {
|
||||||
var state = this.props
|
var props = this.props
|
||||||
if (value === 'None') return value
|
if (value === 'None') return value
|
||||||
var balanceObj = generateBalanceObject(value, state.shorten ? 1 : 3)
|
var balanceObj = generateBalanceObject(value, props.shorten ? 1 : 3)
|
||||||
var balance
|
var balance
|
||||||
var splitBalance = value.split(' ')
|
var splitBalance = value.split(' ')
|
||||||
var ethNumber = splitBalance[0]
|
var ethNumber = splitBalance[0]
|
||||||
var ethSuffix = splitBalance[1]
|
var ethSuffix = splitBalance[1]
|
||||||
|
const showFiat = 'showFiat' in props ? props.showFiat : true
|
||||||
|
|
||||||
if (state.shorten) {
|
if (props.shorten) {
|
||||||
balance = balanceObj.shortBalance
|
balance = balanceObj.shortBalance
|
||||||
} else {
|
} else {
|
||||||
balance = balanceObj.balance
|
balance = balanceObj.balance
|
||||||
@ -55,8 +57,8 @@ EthBalanceComponent.prototype.renderBalance = function (value) {
|
|||||||
h(Tooltip, {
|
h(Tooltip, {
|
||||||
position: 'bottom',
|
position: 'bottom',
|
||||||
title: `${ethNumber} ${ethSuffix}`,
|
title: `${ethNumber} ${ethSuffix}`,
|
||||||
}, [
|
}, h('div.flex-column', [
|
||||||
h('.flex-column', {
|
h('.flex-row', {
|
||||||
style: {
|
style: {
|
||||||
alignItems: 'flex-end',
|
alignItems: 'flex-end',
|
||||||
lineHeight: '13px',
|
lineHeight: '13px',
|
||||||
@ -74,9 +76,12 @@ EthBalanceComponent.prototype.renderBalance = function (value) {
|
|||||||
style: {
|
style: {
|
||||||
color: ' #AEAEAE',
|
color: ' #AEAEAE',
|
||||||
fontSize: '12px',
|
fontSize: '12px',
|
||||||
|
marginLeft: '5px',
|
||||||
},
|
},
|
||||||
}, label),
|
}, label),
|
||||||
]),
|
]),
|
||||||
])
|
|
||||||
|
showFiat ? h(FiatValue, { value: props.value }) : null,
|
||||||
|
]))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
71
ui/app/components/fiat-value.js
Normal file
71
ui/app/components/fiat-value.js
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
const Component = require('react').Component
|
||||||
|
const h = require('react-hyperscript')
|
||||||
|
const inherits = require('util').inherits
|
||||||
|
const connect = require('react-redux').connect
|
||||||
|
const formatBalance = require('../util').formatBalance
|
||||||
|
|
||||||
|
module.exports = connect(mapStateToProps)(FiatValue)
|
||||||
|
|
||||||
|
function mapStateToProps (state) {
|
||||||
|
return {
|
||||||
|
conversionRate: state.metamask.conversionRate,
|
||||||
|
currentFiat: state.metamask.currentFiat,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
inherits(FiatValue, Component)
|
||||||
|
function FiatValue () {
|
||||||
|
Component.call(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
FiatValue.prototype.render = function () {
|
||||||
|
const props = this.props
|
||||||
|
const value = formatBalance(props.value, 6)
|
||||||
|
|
||||||
|
if (value === 'None') return value
|
||||||
|
var fiatDisplayNumber, fiatTooltipNumber
|
||||||
|
var splitBalance = value.split(' ')
|
||||||
|
|
||||||
|
if (props.conversionRate !== 0) {
|
||||||
|
fiatTooltipNumber = Number(splitBalance[0]) * props.conversionRate
|
||||||
|
fiatDisplayNumber = fiatTooltipNumber.toFixed(2)
|
||||||
|
} else {
|
||||||
|
fiatDisplayNumber = 'N/A'
|
||||||
|
fiatTooltipNumber = 'Unknown'
|
||||||
|
}
|
||||||
|
|
||||||
|
var fiatSuffix = props.currentFiat
|
||||||
|
|
||||||
|
return fiatDisplay(fiatDisplayNumber, fiatSuffix)
|
||||||
|
}
|
||||||
|
|
||||||
|
function fiatDisplay (fiatDisplayNumber, fiatSuffix) {
|
||||||
|
if (fiatDisplayNumber !== 'N/A') {
|
||||||
|
return h('.flex-row', {
|
||||||
|
style: {
|
||||||
|
alignItems: 'flex-end',
|
||||||
|
lineHeight: '13px',
|
||||||
|
fontFamily: 'Montserrat Light',
|
||||||
|
textRendering: 'geometricPrecision',
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
h('div', {
|
||||||
|
style: {
|
||||||
|
width: '100%',
|
||||||
|
textAlign: 'right',
|
||||||
|
fontSize: '12px',
|
||||||
|
color: '#333333',
|
||||||
|
},
|
||||||
|
}, fiatDisplayNumber),
|
||||||
|
h('div', {
|
||||||
|
style: {
|
||||||
|
color: '#AEAEAE',
|
||||||
|
marginLeft: '5px',
|
||||||
|
fontSize: '12px',
|
||||||
|
},
|
||||||
|
}, fiatSuffix),
|
||||||
|
])
|
||||||
|
} else {
|
||||||
|
return h('div')
|
||||||
|
}
|
||||||
|
}
|
@ -75,7 +75,6 @@ Network.prototype.render = function () {
|
|||||||
default:
|
default:
|
||||||
return h('.network-indicator', [
|
return h('.network-indicator', [
|
||||||
h('i.fa.fa-question-circle.fa-lg', {
|
h('i.fa.fa-question-circle.fa-lg', {
|
||||||
ariaHidden: true,
|
|
||||||
style: {
|
style: {
|
||||||
margin: '10px',
|
margin: '10px',
|
||||||
color: 'rgb(125, 128, 130)',
|
color: 'rgb(125, 128, 130)',
|
||||||
|
@ -4,9 +4,8 @@ const inherits = require('util').inherits
|
|||||||
const carratInline = require('fs').readFileSync('./images/forward-carrat.svg', 'utf8')
|
const carratInline = require('fs').readFileSync('./images/forward-carrat.svg', 'utf8')
|
||||||
|
|
||||||
const MiniAccountPanel = require('./mini-account-panel')
|
const MiniAccountPanel = require('./mini-account-panel')
|
||||||
const EtherBalance = require('./eth-balance')
|
const EthBalance = require('./eth-balance')
|
||||||
const addressSummary = require('../util').addressSummary
|
const addressSummary = require('../util').addressSummary
|
||||||
const formatBalance = require('../util').formatBalance
|
|
||||||
const nameForAddress = require('../../lib/contract-namer')
|
const nameForAddress = require('../../lib/contract-namer')
|
||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
const BN = ethUtil.BN
|
const BN = ethUtil.BN
|
||||||
@ -70,7 +69,7 @@ PTXP.render = function () {
|
|||||||
fontFamily: 'Montserrat Light, Montserrat, sans-serif',
|
fontFamily: 'Montserrat Light, Montserrat, sans-serif',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
h(EtherBalance, {
|
h(EthBalance, {
|
||||||
value: balance,
|
value: balance,
|
||||||
inline: true,
|
inline: true,
|
||||||
labelColor: '#F7861C',
|
labelColor: '#F7861C',
|
||||||
@ -107,12 +106,12 @@ PTXP.render = function () {
|
|||||||
|
|
||||||
h('.row', [
|
h('.row', [
|
||||||
h('.cell.label', 'Amount'),
|
h('.cell.label', 'Amount'),
|
||||||
h('.cell.value', formatBalance(txParams.value)),
|
h(EthBalance, { value: txParams.value }),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('.cell.row', [
|
h('.cell.row', [
|
||||||
h('.cell.label', 'Max Transaction Fee'),
|
h('.cell.label', 'Max Transaction Fee'),
|
||||||
h('.cell.value', formatBalance(txFee.toString(16))),
|
h(EthBalance, { value: txFee.toString(16) }),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
h('.cell.row', {
|
h('.cell.row', {
|
||||||
@ -129,7 +128,7 @@ PTXP.render = function () {
|
|||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
h(EtherBalance, {
|
h(EthBalance, {
|
||||||
value: maxCost.toString(16),
|
value: maxCost.toString(16),
|
||||||
inline: true,
|
inline: true,
|
||||||
labelColor: 'black',
|
labelColor: 'black',
|
||||||
|
@ -11,12 +11,14 @@ function Tooltip () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Tooltip.prototype.render = function () {
|
Tooltip.prototype.render = function () {
|
||||||
|
|
||||||
const props = this.props
|
const props = this.props
|
||||||
|
const { position, title, children } = props
|
||||||
|
|
||||||
return h(ReactTooltip, {
|
return h(ReactTooltip, {
|
||||||
position: props.position ? props.position : 'left',
|
position: position || 'left',
|
||||||
title: props.title,
|
title,
|
||||||
fixed: false,
|
fixed: false,
|
||||||
}, props.children)
|
}, children)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -77,6 +77,7 @@ TransactionListItem.prototype.render = function () {
|
|||||||
value: txParams.value,
|
value: txParams.value,
|
||||||
width: '55px',
|
width: '55px',
|
||||||
shorten: true,
|
shorten: true,
|
||||||
|
showFiat: false,
|
||||||
style: {fontSize: '15px'},
|
style: {fontSize: '15px'},
|
||||||
}) : h('.flex-column'),
|
}) : h('.flex-column'),
|
||||||
])
|
])
|
||||||
|
@ -7,7 +7,7 @@ const actions = require('./actions')
|
|||||||
const util = require('./util')
|
const util = require('./util')
|
||||||
const numericBalance = require('./util').numericBalance
|
const numericBalance = require('./util').numericBalance
|
||||||
const addressSummary = require('./util').addressSummary
|
const addressSummary = require('./util').addressSummary
|
||||||
const EtherBalance = require('./components/eth-balance')
|
const EthBalance = require('./components/eth-balance')
|
||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(SendTransactionScreen)
|
module.exports = connect(mapStateToProps)(SendTransactionScreen)
|
||||||
@ -107,8 +107,7 @@ SendTransactionScreen.prototype.render = function () {
|
|||||||
// balance
|
// balance
|
||||||
h('.flex-row.flex-center', [
|
h('.flex-row.flex-center', [
|
||||||
|
|
||||||
// h('div', formatBalance(account && account.balance)),
|
h(EthBalance, {
|
||||||
h(EtherBalance, {
|
|
||||||
value: account && account.balance,
|
value: account && account.balance,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user