aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/balance-component.js
diff options
context:
space:
mode:
authorSimon Liang <simon@divby0.io>2017-08-08 16:49:45 +0800
committerSimon Liang <simon@divby0.io>2017-08-08 16:49:45 +0800
commite8ade42f2aa3af6e0091e939beef3fdf769a2606 (patch)
tree5b9aeb9df48cf218f9fde348fbb9bf9c99eadb11 /ui/app/components/balance-component.js
parentd8fff0fc8c25d1bd0a287502ca633a44a7844911 (diff)
downloadtangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar.gz
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar.bz2
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar.lz
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar.xz
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.tar.zst
tangerine-wallet-browser-e8ade42f2aa3af6e0091e939beef3fdf769a2606.zip
extracted balance component and renders to the format, also wired in the account name
Diffstat (limited to 'ui/app/components/balance-component.js')
-rw-r--r--ui/app/components/balance-component.js89
1 files changed, 89 insertions, 0 deletions
diff --git a/ui/app/components/balance-component.js b/ui/app/components/balance-component.js
new file mode 100644
index 000000000..62024895b
--- /dev/null
+++ b/ui/app/components/balance-component.js
@@ -0,0 +1,89 @@
+const Component = require('react').Component
+const h = require('react-hyperscript')
+const inherits = require('util').inherits
+
+const { formatBalance, generateBalanceObject } = require('../util')
+
+module.exports = BalanceComponent
+
+inherits(BalanceComponent, Component)
+function BalanceComponent () {
+ Component.call(this)
+}
+
+BalanceComponent.prototype.render = function () {
+ const props = this.props
+ const { balanceValue } = props
+ const needsParse = 'needsParse' in props ? props.needsParse : true
+ const formattedBalance = balanceValue ? formatBalance(balanceValue, 6, needsParse) : '...'
+
+ return h('div.balance-container', {}, [
+ // laptop: 50px 50px
+ // mobile: 100px 100px
+
+ // TODO: balance icon needs to be passed in
+ h('img.balance-icon', {
+ src: '../images/eth_logo.svg',
+ style: {},
+ }),
+
+ this.renderBalance(formattedBalance),
+ ])
+}
+
+BalanceComponent.prototype.renderBalance = function (formattedBalance) {
+ const props = this.props
+ const { shorten } = props
+ const showFiat = 'showFiat' in props ? props.showFiat : true
+
+ if (formattedBalance === 'None' || formattedBalance === '...') {
+ return h('div.flex-column.balance-display', {}, [
+ h('div.token-amount', {
+ style: {},
+ }, formattedBalance),
+ ])
+ }
+
+ var balanceObj = generateBalanceObject(formattedBalance, shorten ? 1 : 3)
+ var balanceValue = shorten ? balanceObj.shortBalance : balanceObj.balance
+
+ var label = balanceObj.label
+
+ // laptop: 5vw?
+ // phone: 50vw?
+ return h('div.flex-column.balance-display', {}, [
+ h('div.token-amount', {
+ style: {},
+ }, `${balanceValue} ${label}`),
+
+ showFiat ? this.renderFiatValue(formattedBalance) : null,
+ ])
+}
+
+BalanceComponent.prototype.renderFiatValue = function (formattedBalance) {
+
+ const props = this.props
+ const { conversionRate, currentCurrency } = props
+
+ if (formattedBalance === 'None') return formattedBalance
+ var fiatDisplayNumber
+ var splitBalance = formattedBalance.split(' ')
+
+ if (conversionRate !== 0) {
+ fiatDisplayNumber = (Number(splitBalance[0]) * conversionRate).toFixed(2)
+ } else {
+ fiatDisplayNumber = 'N/A'
+ }
+
+ return fiatDisplay(fiatDisplayNumber, currentCurrency)
+}
+
+function fiatDisplay (fiatDisplayNumber, fiatSuffix) {
+ if (fiatDisplayNumber !== 'N/A') {
+ return h('div.fiat-amount', {
+ style: {},
+ }, `${fiatDisplayNumber} ${fiatSuffix}`)
+ } else {
+ return h('div')
+ }
+}