aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/usd-fee-display.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send/usd-fee-display.js')
-rw-r--r--ui/app/components/send/usd-fee-display.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/ui/app/components/send/usd-fee-display.js b/ui/app/components/send/usd-fee-display.js
new file mode 100644
index 00000000..4cf31a49
--- /dev/null
+++ b/ui/app/components/send/usd-fee-display.js
@@ -0,0 +1,35 @@
+const Component = require('react').Component
+const h = require('react-hyperscript')
+const inherits = require('util').inherits
+const FiatValue = require('../fiat-value')
+const { getTxFeeBn } = require('../../util')
+
+module.exports = USDFeeDisplay
+
+inherits(USDFeeDisplay, Component)
+function USDFeeDisplay () {
+ Component.call(this)
+}
+
+USDFeeDisplay.prototype.render = function () {
+ const {
+ activeCurrency,
+ conversionRate,
+ gas,
+ gasPrice,
+ blockGasLimit,
+ } = this.props
+
+ return h(FiatValue, {
+ value: getTxFeeBn(gas, gasPrice, blockGasLimit),
+ conversionRate,
+ currentCurrency: activeCurrency,
+ style: {
+ color: '#5d5d5d',
+ fontSize: '16px',
+ fontFamily: 'DIN OT',
+ lineHeight: '22.4px',
+ },
+ })
+}
+
s='column1'>| | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight * - Convert ports of net-im/, net-mgmt/ and net-p2p/ to new USES=pythonmva2014-10-251-2/+2 | | | | Approved by: portmgr (implicit) * Update to 1.1.2ehaupt2014-05-271-1/+1 | * Update to 1.1.1ehaupt2013-11-051-1/+1 | * Support staging.ehaupt2013-10-231-1/+0 | * Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1 | | | | net-mgmt) * Remove MAKE_JOBS_SAFE which is now default.ehaupt2013-07-241-1/+0 | * Mark MAKE_JOBS_SAFEehaupt2013-05-081-0/+1 | * Update to 1.0.0ehaupt2013-01-261-2/+2 |