2021-02-04 19:15:23 +01:00
|
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import TokenInput from '../../ui/token-input';
|
2018-10-17 01:03:29 +02:00
|
|
|
|
|
|
|
export default class UserPreferencedTokenInput extends PureComponent {
|
|
|
|
static propTypes = {
|
2020-05-29 00:08:11 +02:00
|
|
|
token: PropTypes.shape({
|
|
|
|
address: PropTypes.string.isRequired,
|
|
|
|
decimals: PropTypes.number,
|
|
|
|
symbol: PropTypes.string,
|
|
|
|
}).isRequired,
|
2018-10-26 10:26:43 +02:00
|
|
|
useNativeCurrencyAsPrimaryCurrency: PropTypes.bool,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-10-17 01:03:29 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
render() {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { useNativeCurrencyAsPrimaryCurrency, ...restProps } = this.props;
|
2018-10-17 01:03:29 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<TokenInput
|
|
|
|
{...restProps}
|
2018-10-26 10:26:43 +02:00
|
|
|
showFiat={!useNativeCurrencyAsPrimaryCurrency}
|
2018-10-17 01:03:29 +02:00
|
|
|
/>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-10-17 01:03:29 +02:00
|
|
|
}
|
|
|
|
}
|