Daniel Ternyak 37008e9fe9 Complete Generate/Create Wallet Flow (#38)
* GenerateWallet: Download real UTC file.

* Paper wallet (#45)

* Working paper wallet (#52)

* Reset Generate Wallet state when component will unmount
2017-07-16 16:02:13 -05:00

72 lines
1.8 KiB
JavaScript

// @flow
import React from "react";
import translate from "translations";
import UnitDropdown from "./UnitDropdown";
type Props = {
value: string,
unit: string,
tokens: string[],
onChange?: (value: string, unit: string) => void
};
export default class AmountField extends React.Component {
props: Props;
render() {
const { value, unit, onChange } = this.props;
const isReadonly = !onChange;
return (
<div>
<label>
{translate("SEND_amount")}
</label>
<div className="input-group col-sm-11">
<input
className={`form-control ${isFinite(Number(value)) &&
Number(value) > 0
? "is-valid"
: "is-invalid"}`}
type="text"
placeholder={translate("SEND_amount_short")}
value={value}
disabled={isReadonly}
onChange={isReadonly ? void 0 : this.onValueChange}
/>
<UnitDropdown
value={unit}
options={["ether"].concat(this.props.tokens)}
onChange={isReadonly ? void 0 : this.onUnitChange}
/>
</div>
{!isReadonly &&
<p>
<a onClick={this.onSendEverything}>
<span className="strong">
{translate("SEND_TransferTotal")}
</span>
</a>
</p>}
</div>
);
}
onUnitChange = (unit: string) => {
if (this.props.onChange) {
this.props.onChange(this.props.value, unit);
}
};
onValueChange = (e: SyntheticInputEvent) => {
if (this.props.onChange) {
this.props.onChange(e.target.value, this.props.unit);
}
};
onSendEverything = () => {
if (this.props.onChange) {
this.props.onChange("everything", this.props.unit);
}
};
}