mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Continuing fiat balance modularization
This commit is contained in:
parent
a76e198c9c
commit
b2ebb6032d
@ -1,20 +1,12 @@
|
|||||||
const Component = require('react').Component
|
const Component = require('react').Component
|
||||||
const h = require('react-hyperscript')
|
const h = require('react-hyperscript')
|
||||||
const inherits = require('util').inherits
|
const inherits = require('util').inherits
|
||||||
const connect = require('react-redux').connect
|
|
||||||
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')
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(EthBalanceComponent)
|
module.exports = EthBalanceComponent
|
||||||
|
|
||||||
function mapStateToProps (state) {
|
|
||||||
return {
|
|
||||||
conversionRate: state.metamask.conversionRate,
|
|
||||||
conversionDate: state.metamask.conversionDate,
|
|
||||||
currentFiat: state.metamask.currentFiat,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inherits(EthBalanceComponent, Component)
|
inherits(EthBalanceComponent, Component)
|
||||||
function EthBalanceComponent () {
|
function EthBalanceComponent () {
|
||||||
@ -22,11 +14,10 @@ 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
|
||||||
|
|
||||||
const value = formatBalance(state.value, 6)
|
var width = props.width
|
||||||
var width = state.width
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
@ -38,30 +29,23 @@ EthBalanceComponent.prototype.render = function () {
|
|||||||
display: 'inline',
|
display: 'inline',
|
||||||
width: width,
|
width: width,
|
||||||
},
|
},
|
||||||
}, this.renderBalance(value, state)),
|
}, this.renderBalance()),
|
||||||
])
|
])
|
||||||
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
EthBalanceComponent.prototype.renderBalance = function (value, state) {
|
|
||||||
|
EthBalanceComponent.prototype.renderBalance = function () {
|
||||||
|
const props = this.props
|
||||||
|
const value = formatBalance(props.value, 6)
|
||||||
|
|
||||||
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, fiatDisplayNumber, fiatTooltipNumber
|
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]
|
||||||
|
|
||||||
|
if (props.shorten) {
|
||||||
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
|
balance = balanceObj.shortBalance
|
||||||
} else {
|
} else {
|
||||||
balance = balanceObj.balance
|
balance = balanceObj.balance
|
||||||
@ -98,43 +82,8 @@ EthBalanceComponent.prototype.renderBalance = function (value, state) {
|
|||||||
}, label),
|
}, label),
|
||||||
]),
|
]),
|
||||||
]),
|
]),
|
||||||
h(Tooltip, {
|
h(FiatValue, { value: props.value }),
|
||||||
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,12 @@ 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
|
||||||
|
const showFiat = 'showFiat' in props ? props.showFiat : true
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
@ -35,15 +37,15 @@ 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]
|
||||||
|
|
||||||
if (state.shorten) {
|
if (props.shorten) {
|
||||||
balance = balanceObj.shortBalance
|
balance = balanceObj.shortBalance
|
||||||
} else {
|
} else {
|
||||||
balance = balanceObj.balance
|
balance = balanceObj.balance
|
||||||
@ -77,6 +79,8 @@ EthBalanceComponent.prototype.renderBalance = function (value) {
|
|||||||
},
|
},
|
||||||
}, label),
|
}, label),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
|
fiatValue ? h(FiatValue, { value: props.value }) : null,
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
80
ui/app/components/fiat-value.js
Normal file
80
ui/app/components/fiat-value.js
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
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)(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 balanceObj = generateBalanceObject(value, props.shorten ? 1 : 3)
|
||||||
|
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'
|
||||||
|
}
|
||||||
|
|
||||||
|
var fiatSuffix = props.currentFiat
|
||||||
|
|
||||||
|
return (
|
||||||
|
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')
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user