import removeIcon from 'assets/images/icon-remove.svg'; import React from 'react'; import { TokenValue } from 'libs/units'; import { UnitDisplay } from 'components/ui'; import './TokenRow.scss'; type ToggleTrackedFn = (symbol: string) => void; interface Props { balance: TokenValue; symbol: string; custom?: boolean; decimal: number; tracked: boolean; toggleTracked: ToggleTrackedFn | false; onRemove(symbol: string): void; } interface State { showLongBalance: boolean; } export default class TokenRow extends React.Component { public state = { showLongBalance: false }; public render() { const { balance, symbol, custom, decimal, tracked } = this.props; const { showLongBalance } = this.state; return ( {this.props.toggleTracked && ( )} {symbol} {!!custom && ( )} ); } public toggleShowLongBalance = (e: React.SyntheticEvent) => { e.preventDefault(); this.setState(state => { return { showLongBalance: !state.showLongBalance }; }); }; private onRemove = () => { this.props.onRemove(this.props.symbol); }; private handleToggleTracked = () => { if (this.props.toggleTracked) { this.props.toggleTracked(this.props.symbol); } }; }