mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 09:23:21 +01:00
parent
3e4b11e0d7
commit
74049c19fc
20
package-lock.json
generated
20
package-lock.json
generated
@ -344,6 +344,11 @@
|
|||||||
"negotiator": "0.6.1"
|
"negotiator": "0.6.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"accounting": {
|
||||||
|
"version": "0.4.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/accounting/-/accounting-0.4.1.tgz",
|
||||||
|
"integrity": "sha1-h91BA+/39EYPHhhvXGd+1s9WaIM="
|
||||||
|
},
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "4.0.13",
|
"version": "4.0.13",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz",
|
||||||
@ -4073,6 +4078,16 @@
|
|||||||
"cssom": "0.3.2"
|
"cssom": "0.3.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"currency-formatter": {
|
||||||
|
"version": "1.4.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/currency-formatter/-/currency-formatter-1.4.2.tgz",
|
||||||
|
"integrity": "sha512-rQ5HB3DenCZwfVPdpVTuVcAORodVO0VoqIbjhdUSuy0sE2b9jBdCaVKbA355NUc2KhPbu5ojHs3WypuEwPLfNg==",
|
||||||
|
"requires": {
|
||||||
|
"accounting": "0.4.1",
|
||||||
|
"locale-currency": "0.0.1",
|
||||||
|
"object-assign": "4.1.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"currently-unhandled": {
|
"currently-unhandled": {
|
||||||
"version": "0.4.1",
|
"version": "0.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
|
"resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
|
||||||
@ -13074,6 +13089,11 @@
|
|||||||
"object-assign": "4.1.1"
|
"object-assign": "4.1.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"locale-currency": {
|
||||||
|
"version": "0.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/locale-currency/-/locale-currency-0.0.1.tgz",
|
||||||
|
"integrity": "sha1-yeFaIv9XW0tLuUekv5KsI2vR/ps="
|
||||||
|
},
|
||||||
"locate-path": {
|
"locate-path": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
|
||||||
|
@ -81,6 +81,7 @@
|
|||||||
"classnames": "^2.2.5",
|
"classnames": "^2.2.5",
|
||||||
"clone": "^2.1.1",
|
"clone": "^2.1.1",
|
||||||
"copy-to-clipboard": "^3.0.8",
|
"copy-to-clipboard": "^3.0.8",
|
||||||
|
"currency-formatter": "^1.4.2",
|
||||||
"debounce": "^1.0.0",
|
"debounce": "^1.0.0",
|
||||||
"debounce-stream": "^2.0.0",
|
"debounce-stream": "^2.0.0",
|
||||||
"deep-extend": "^0.5.0",
|
"deep-extend": "^0.5.0",
|
||||||
|
17
test/unit/balance-formatter-test.js
Normal file
17
test/unit/balance-formatter-test.js
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
const assert = require('assert')
|
||||||
|
const currencyFormatter = require('currency-formatter')
|
||||||
|
const infuraConversion = require('../../ui/app/infura-conversion.json')
|
||||||
|
|
||||||
|
describe.only('currencyFormatting', function () {
|
||||||
|
it('be able to format any infura currency', function (done) {
|
||||||
|
const number = 10000
|
||||||
|
|
||||||
|
infuraConversion.objects.forEach((conversion) => {
|
||||||
|
const code = conversion.quote.code.toUpperCase()
|
||||||
|
const result = currencyFormatter.format(number, { code })
|
||||||
|
assert.ok(result, `Currency ${code} formatted as ${result}`)
|
||||||
|
})
|
||||||
|
|
||||||
|
done()
|
||||||
|
})
|
||||||
|
})
|
@ -4,6 +4,7 @@ const h = require('react-hyperscript')
|
|||||||
const inherits = require('util').inherits
|
const inherits = require('util').inherits
|
||||||
const TokenBalance = require('./token-balance')
|
const TokenBalance = require('./token-balance')
|
||||||
const Identicon = require('./identicon')
|
const Identicon = require('./identicon')
|
||||||
|
const currencyFormatter = require('currency-formatter')
|
||||||
|
|
||||||
const { formatBalance, generateBalanceObject } = require('../util')
|
const { formatBalance, generateBalanceObject } = require('../util')
|
||||||
|
|
||||||
@ -97,9 +98,13 @@ BalanceComponent.prototype.renderFiatAmount = function (fiatDisplayNumber, fiatS
|
|||||||
const shouldNotRenderFiat = fiatDisplayNumber === 'N/A' || Number(fiatDisplayNumber) === 0
|
const shouldNotRenderFiat = fiatDisplayNumber === 'N/A' || Number(fiatDisplayNumber) === 0
|
||||||
if (shouldNotRenderFiat) return null
|
if (shouldNotRenderFiat) return null
|
||||||
|
|
||||||
|
const display = currencyFormatter.format(Number(fiatDisplayNumber), {
|
||||||
|
code: fiatSuffix.toUpperCase()
|
||||||
|
})
|
||||||
|
|
||||||
return h('div.fiat-amount', {
|
return h('div.fiat-amount', {
|
||||||
style: {},
|
style: {},
|
||||||
}, `${fiatPrefix}${fiatDisplayNumber} ${fiatSuffix}`)
|
}, display)
|
||||||
}
|
}
|
||||||
|
|
||||||
BalanceComponent.prototype.getTokenBalance = function (formattedBalance, shorten) {
|
BalanceComponent.prototype.getTokenBalance = function (formattedBalance, shorten) {
|
||||||
|
Loading…
Reference in New Issue
Block a user