mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
e10ddbe3a3
* add erc-721 token detection and flag to disable sending * addressing feedback * remove redundant provider instantiation * fix issue caused by unprotected destructuring * add tests and documentation * move add isERC721 flag to useTokenTracker hook * Update and unit tests * use memoizedTokens in useTokenTracker Co-authored-by: Dan Miller <danjm.com@gmail.com>
225 lines
6.4 KiB
JavaScript
225 lines
6.4 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import SendRowWrapper from '../send-row-wrapper';
|
|
import Identicon from '../../../../components/ui/identicon/identicon.component';
|
|
import TokenBalance from '../../../../components/ui/token-balance';
|
|
import UserPreferencedCurrencyDisplay from '../../../../components/app/user-preferenced-currency-display';
|
|
import { ERC20, PRIMARY } from '../../../../helpers/constants/common';
|
|
|
|
export default class SendAssetRow extends Component {
|
|
static propTypes = {
|
|
tokens: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
address: PropTypes.string,
|
|
decimals: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
symbol: PropTypes.string,
|
|
}),
|
|
).isRequired,
|
|
accounts: PropTypes.object.isRequired,
|
|
assetImages: PropTypes.object,
|
|
selectedAddress: PropTypes.string.isRequired,
|
|
sendTokenAddress: PropTypes.string,
|
|
setSendToken: PropTypes.func.isRequired,
|
|
nativeCurrency: PropTypes.string,
|
|
nativeCurrencyImage: PropTypes.string,
|
|
setUnsendableAssetError: PropTypes.func.isRequired,
|
|
updateSendErrors: PropTypes.func.isRequired,
|
|
updateTokenType: PropTypes.func.isRequired,
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
};
|
|
|
|
state = {
|
|
isShowingDropdown: false,
|
|
sendableTokens: [],
|
|
};
|
|
|
|
async componentDidMount() {
|
|
const sendableTokens = this.props.tokens.filter((token) => !token.isERC721);
|
|
this.setState({ sendableTokens });
|
|
}
|
|
|
|
openDropdown = () => this.setState({ isShowingDropdown: true });
|
|
|
|
closeDropdown = () => this.setState({ isShowingDropdown: false });
|
|
|
|
clearUnsendableAssetError = () => {
|
|
this.props.setUnsendableAssetError(false);
|
|
this.props.updateSendErrors({
|
|
unsendableAssetError: null,
|
|
gasLoadingError: null,
|
|
});
|
|
};
|
|
|
|
selectToken = async (token) => {
|
|
if (token && token.isERC721 === undefined) {
|
|
const updatedToken = await this.props.updateTokenType(token.address);
|
|
if (updatedToken.isERC721) {
|
|
this.props.setUnsendableAssetError(true);
|
|
this.props.updateSendErrors({
|
|
unsendableAssetError: 'unsendableAssetError',
|
|
});
|
|
}
|
|
}
|
|
|
|
if ((token && token.isERC721 === false) || token === undefined) {
|
|
this.clearUnsendableAssetError();
|
|
}
|
|
|
|
this.setState(
|
|
{
|
|
isShowingDropdown: false,
|
|
},
|
|
() => {
|
|
this.context.metricsEvent({
|
|
eventOpts: {
|
|
category: 'Transactions',
|
|
action: 'Send Screen',
|
|
name: 'User clicks "Assets" dropdown',
|
|
},
|
|
customVariables: {
|
|
assetSelected: token ? ERC20 : this.props.nativeCurrency,
|
|
},
|
|
});
|
|
this.props.setSendToken(token);
|
|
},
|
|
);
|
|
};
|
|
|
|
render() {
|
|
const { t } = this.context;
|
|
|
|
return (
|
|
<SendRowWrapper label={`${t('asset')}:`}>
|
|
<div className="send-v2__asset-dropdown">
|
|
{this.renderSendToken()}
|
|
{this.state.sendableTokens.length > 0
|
|
? this.renderAssetDropdown()
|
|
: null}
|
|
</div>
|
|
</SendRowWrapper>
|
|
);
|
|
}
|
|
|
|
renderSendToken() {
|
|
const { sendTokenAddress } = this.props;
|
|
const token = this.props.tokens.find(
|
|
({ address }) => address === sendTokenAddress,
|
|
);
|
|
return (
|
|
<div
|
|
className="send-v2__asset-dropdown__input-wrapper"
|
|
onClick={this.openDropdown}
|
|
>
|
|
{token ? this.renderAsset(token) : this.renderNativeCurrency()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderAssetDropdown() {
|
|
return (
|
|
this.state.isShowingDropdown && (
|
|
<div>
|
|
<div
|
|
className="send-v2__asset-dropdown__close-area"
|
|
onClick={this.closeDropdown}
|
|
/>
|
|
<div className="send-v2__asset-dropdown__list">
|
|
{this.renderNativeCurrency(true)}
|
|
{this.state.sendableTokens.map((token) =>
|
|
this.renderAsset(token, true),
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
);
|
|
}
|
|
|
|
renderNativeCurrency(insideDropdown = false) {
|
|
const { t } = this.context;
|
|
const {
|
|
accounts,
|
|
selectedAddress,
|
|
nativeCurrency,
|
|
nativeCurrencyImage,
|
|
} = this.props;
|
|
|
|
const balanceValue = accounts[selectedAddress]
|
|
? accounts[selectedAddress].balance
|
|
: '';
|
|
|
|
return (
|
|
<div
|
|
className={
|
|
this.state.sendableTokens.length > 0
|
|
? 'send-v2__asset-dropdown__asset'
|
|
: 'send-v2__asset-dropdown__single-asset'
|
|
}
|
|
onClick={() => this.selectToken()}
|
|
>
|
|
<div className="send-v2__asset-dropdown__asset-icon">
|
|
<Identicon
|
|
diameter={36}
|
|
image={nativeCurrencyImage}
|
|
address={nativeCurrency}
|
|
/>
|
|
</div>
|
|
<div className="send-v2__asset-dropdown__asset-data">
|
|
<div className="send-v2__asset-dropdown__symbol">
|
|
{nativeCurrency}
|
|
</div>
|
|
<div className="send-v2__asset-dropdown__name">
|
|
<span className="send-v2__asset-dropdown__name__label">
|
|
{`${t('balance')}:`}
|
|
</span>
|
|
<UserPreferencedCurrencyDisplay
|
|
value={balanceValue}
|
|
type={PRIMARY}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{!insideDropdown && this.state.sendableTokens.length > 0 && (
|
|
<i className="fa fa-caret-down fa-lg send-v2__asset-dropdown__caret" />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderAsset(token, insideDropdown = false) {
|
|
const { address, symbol } = token;
|
|
const { t } = this.context;
|
|
const { assetImages } = this.props;
|
|
|
|
return (
|
|
<div
|
|
key={address}
|
|
className="send-v2__asset-dropdown__asset"
|
|
onClick={() => this.selectToken(token)}
|
|
>
|
|
<div className="send-v2__asset-dropdown__asset-icon">
|
|
<Identicon
|
|
address={address}
|
|
diameter={36}
|
|
image={assetImages[address]}
|
|
/>
|
|
</div>
|
|
<div className="send-v2__asset-dropdown__asset-data">
|
|
<div className="send-v2__asset-dropdown__symbol">{symbol}</div>
|
|
<div className="send-v2__asset-dropdown__name">
|
|
<span className="send-v2__asset-dropdown__name__label">
|
|
{`${t('balance')}:`}
|
|
</span>
|
|
<TokenBalance token={token} />
|
|
</div>
|
|
</div>
|
|
{!insideDropdown && (
|
|
<i className="fa fa-caret-down fa-lg send-v2__asset-dropdown__caret" />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|