aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/conversion-util.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-13 04:38:02 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-14 05:22:30 +0800
commit6fa1cd62258ba96d1a55bee140f2d1f10f091ed2 (patch)
tree422e3a428393a14777f7ca59d670fd1e9dbc828f /ui/app/conversion-util.js
parent8f31b05ac5b7d8383c720b8b0c9f7f3cecc937f5 (diff)
downloadtangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar.gz
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar.bz2
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar.lz
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar.xz
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.tar.zst
tangerine-wallet-browser-6fa1cd62258ba96d1a55bee140f2d1f10f091ed2.zip
Reapply conversion utility changes and fix calls to utility in pending-tx.
Diffstat (limited to 'ui/app/conversion-util.js')
-rw-r--r--ui/app/conversion-util.js141
1 files changed, 100 insertions, 41 deletions
diff --git a/ui/app/conversion-util.js b/ui/app/conversion-util.js
index 8f2214500..5e1125194 100644
--- a/ui/app/conversion-util.js
+++ b/ui/app/conversion-util.js
@@ -1,49 +1,108 @@
-const {
- numericBalance,
- parseBalance,
- formatBalance,
- normalizeToWei,
- valueTable,
-} = require('./util')
-const hexToBn = require('../../app/scripts/lib/hex-to-bn')
-const { BN } = require('ethereumjs-util')
-const GWEI_MULTIPLIER = normalizeToWei(hexToBn(valueTable.gwei.toString(16)), 'gwei');
+/* Currency Conversion Utility
+* This utility function can be used for converting currency related values within metamask.
+* The caller should be able to pass it a value, along with information about the value's
+* numeric base, denomination and currency, and the desired numeric base, denomination and
+* currency. It should return a single value.
+*
+* @param {(number | string | BN)} value The value to convert.
+* @param {Object} [options] Options to specify details of the conversion
+* @param {string} [options.fromCurrency = 'ETH' | 'USD'] The currency of the passed value
+* @param {string} [options.toCurrency = 'ETH' | 'USD'] The desired currency of the result
+* @param {string} [options.fromNumericBase = 'hex' | 'dec' | 'BN'] The numeric basic of the passed value.
+* @param {string} [options.toNumericBase = 'hex' | 'dec' | 'BN'] The desired numeric basic of the result.
+* @param {string} [options.fromDenomination = 'WEI'] The denomination of the passed value
+* @param {number} [options.numberOfDecimals] The desired number of in the result
+* @param {number} [options.conversionRate] The rate to use to make the fromCurrency -> toCurrency conversion
+* @returns {(number | string | BN)}
+*
+* The utility passes value along with the options as a single object to the `converter` function.
+* `converter` uses Ramda.js to apply a composition of conditional setters to the `value` property, depending
+* on the accompanying options. Some of these conditional setters are selected via key-value maps, where
+* the keys are specified in the options parameters and the values are setter functions.
+*/
+
+const BigNumber = require('bignumber.js')
+const R = require('ramda')
+const { stripHexPrefix } = require('ethereumjs-util')
+
+BigNumber.config({
+ ROUNDING_MODE: BigNumber.ROUND_HALF_DOWN,
+})
+
+// Big Number Constants
+const BIG_NUMBER_WEI_MULTIPLIER = new BigNumber('1000000000000000000')
+
+// Individual Setters
+const convert = R.invoker(1, 'times')
+const round = R.invoker(2, 'toFormat')(R.__, BigNumber.ROUND_DOWN)
+
+// Setter Maps
+const toBigNumber = {
+ hex: n => new BigNumber(stripHexPrefix(n), 16),
+ dec: n => new BigNumber(n, 10),
+ BN: n => new BigNumber(n.toString(16), 16),
+}
+const toNormalizedDenomination = {
+ WEI: bigNumber => bigNumber.div(BIG_NUMBER_WEI_MULTIPLIER)
+}
+const baseChange = {
+ hex: n => n.toString(16),
+ dec: n => n.toString(10),
+ BN: n => new BN(n.toString(16)),
+}
+
+// Predicates
+const fromAndToCurrencyPropsNotEqual = R.compose(
+ R.not,
+ R.eqBy(R.__, 'fromCurrency', 'toCurrency'),
+ R.flip(R.prop)
+)
+
+// Lens
+const valuePropertyLense = R.over(R.lensProp('value'))
+
+// conditional 'value' setting wrappers
+const whenPredSetWithPropAndSetter = (pred, prop, setter) => R.when(
+ pred,
+ R.converge(
+ valuePropertyLense,
+ [R.pipe(R.prop(prop), setter), R.identity]
+ )
+)
+const whenPropApplySetterMap = (prop, setterMap) => whenPredSetWithPropAndSetter(
+ R.prop(prop),
+ prop,
+ R.prop(R.__, setterMap)
+)
+
+// Conversion utility function
+const converter = R.pipe(
+ whenPropApplySetterMap('fromNumericBase', toBigNumber),
+ whenPropApplySetterMap('fromDenomination', toNormalizedDenomination),
+ whenPredSetWithPropAndSetter(fromAndToCurrencyPropsNotEqual, 'conversionRate', convert),
+ whenPredSetWithPropAndSetter(R.prop('numberOfDecimals'), 'numberOfDecimals', round),
+ whenPropApplySetterMap('toNumericBase', baseChange),
+ R.view(R.lensProp('value'))
+);
const conversionUtil = (value, {
+ fromCurrency = null,
+ toCurrency = fromCurrency,
+ fromNumericBase,
+ toNumericBase,
+ fromDenomination,
+ numberOfDecimals,
+ conversionRate,
+}) => converter({
fromCurrency,
toCurrency,
- fromFormat,
- toFormat,
- precision = 2,
+ fromNumericBase,
+ toNumericBase,
+ fromDenomination,
+ numberOfDecimals,
conversionRate,
-}) => {
- let result;
-
- if (fromFormat === 'BN') {
- if (fromCurrency !== 'GWEI') {
- result = normalizeToWei(value, 'gwei')
- }
- else {
- result = value
- }
-
- result = result.toString(16)
- result = formatBalance(result, 9)
- result = result.split(' ')
- result = Number(result[0]) * 1000000000
- }
-
- if (fromCurrency === 'GWEI') {
- result = result / 1000000000
- }
-
- if (toCurrency === 'USD') {
- result = result * conversionRate
- result = result.toFixed(precision)
- }
-
- return result
-};
+ value,
+});
module.exports = {
conversionUtil,