Add Max convenience button in unwrap WETH dialog

This commit is contained in:
Fabio Berger
2017-12-17 15:41:24 -05:00
parent 9e914be975
commit b2256679be

View File

@@ -109,7 +109,16 @@ export class EthWethConversionDialog extends
className="pt1"
style={{fontSize: 12}}
>
1 ETH = 1 WETH
<div className="left">1 ETH = 1 WETH</div>
{this.props.direction === Side.receive &&
<div
className="right"
onClick={this.onMaxClick.bind(this)}
style={{color: DARK_BLUE, textDecoration: 'underline', cursor: 'pointer'}}
>
Max
</div>
}
</div>
</div>
</div>
@@ -137,6 +146,11 @@ export class EthWethConversionDialog extends
</div>
);
}
private onMaxClick() {
this.setState({
value: this.props.tokenState.balance,
});
}
private onValueChange(isValid: boolean, amount?: BigNumber) {
this.setState({
value: amount,