1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/components/send/currency-display.js

104 lines
2.6 KiB
JavaScript
Raw Normal View History

2017-10-09 18:25:23 +02:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const Identicon = require('../identicon')
const AutosizeInput = require('react-input-autosize').default
const { conversionUtil } = require('../../conversion-util')
module.exports = CurrencyDisplay
inherits(CurrencyDisplay, Component)
function CurrencyDisplay () {
Component.call(this)
this.state = {
minWidth: null,
2017-10-11 02:45:31 +02:00
currentScrollWidth: null,
2017-10-09 18:25:23 +02:00
}
}
function isValidNumber (text) {
const re = /^([1-9]\d*|0)(\.|\.\d*)?$/
return re.test(text)
}
CurrencyDisplay.prototype.componentDidMount = function () {
2017-10-11 02:45:31 +02:00
this.setState({
minWidth: this.refs.currencyDisplayInput.sizer.clientWidth + 10,
currentclientWidth: this.refs.currencyDisplayInput.sizer.clientWidth,
})
}
CurrencyDisplay.prototype.componentWillUpdate = function ({ value: nextValue }) {
const { value: currentValue } = this.props
const { currentclientWidth } = this.state
const newclientWidth = this.refs.currencyDisplayInput.sizer.clientWidth
if (currentclientWidth !== newclientWidth) {
const clientWidthChange = newclientWidth - currentclientWidth
this.setState({
minWidth: this.state.minWidth + clientWidthChange,
currentclientWidth: newclientWidth,
})
}
2017-10-09 18:25:23 +02:00
}
CurrencyDisplay.prototype.render = function () {
const {
className,
primaryCurrency,
convertedCurrency,
value = '',
placeholder = '0',
conversionRate,
convertedPrefix = '',
readOnly = false,
handleChange,
inputFontSize,
} = this.props
const { minWidth } = this.state
const convertedValue = conversionUtil(value, {
fromNumericBase: 'dec',
fromCurrency: primaryCurrency,
toCurrency: convertedCurrency,
conversionRate,
})
return h('div.currency-display', {
className,
}, [
h('div.currency-display__primary-row', [
h(AutosizeInput, {
ref: 'currencyDisplayInput',
className: 'currency-display__input-wrapper',
inputClassName: 'currency-display__input',
value,
placeholder,
readOnly,
minWidth,
onChange: (event) => {
const newValue = event.target.value
if (newValue && !isValidNumber(newValue)) {
event.preventDefault()
}
else {
handleChange(newValue)
}
},
style: { fontSize: inputFontSize },
}),
h('span.currency-display__primary-currency', {}, primaryCurrency),
]),
h('div.currency-display__converted-value', {}, `${convertedPrefix}${convertedValue} ${convertedCurrency}`),
])
}