2020-06-04 09:26:20 +03:00
|
|
|
import * as React from 'react';
|
|
|
|
import * as Strings from '~/common/strings';
|
|
|
|
import * as Constants from '~/common/constants';
|
|
|
|
import * as System from '~/components/system';
|
2020-04-09 00:29:13 +03:00
|
|
|
|
2020-06-04 09:26:20 +03:00
|
|
|
import { css } from '@emotion/react';
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
|
|
const STYLES_FOCUS = css`
|
|
|
|
font-size: ${Constants.typescale.lvl1};
|
2020-06-04 09:26:20 +03:00
|
|
|
font-family: 'inter-medium';
|
2020-04-09 00:29:13 +03:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
strong {
|
2020-06-04 09:26:20 +03:00
|
|
|
font-family: 'inter-semi-bold';
|
2020-04-09 00:29:13 +03:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_SUBTEXT = css`
|
|
|
|
margin-top: 8px;
|
|
|
|
font-size: 12px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_ITEM = css`
|
|
|
|
margin-top: 16px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default class SidebarWalletSendFunds extends React.Component {
|
|
|
|
state = {
|
2020-06-04 09:26:20 +03:00
|
|
|
address: '',
|
|
|
|
amount: '',
|
2020-04-09 00:29:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleSubmit = () => {
|
2020-06-04 09:26:20 +03:00
|
|
|
let addresses = {};
|
|
|
|
|
|
|
|
this.props.viewer.addresses.forEach((a) => {
|
|
|
|
addresses[a.value] = a;
|
|
|
|
});
|
|
|
|
|
|
|
|
const currentAddress = addresses[this.props.selected.address];
|
|
|
|
|
|
|
|
if (currentAddress.address === this.state.address) {
|
|
|
|
alert('TODO: Proper message for not allowing poeple to send funds to the same address.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.onSubmit({
|
|
|
|
type: 'SEND_WALLET_ADDRESS_FILECOIN',
|
|
|
|
source: currentAddress.address,
|
|
|
|
target: this.state.address,
|
|
|
|
amount: this.state.amount,
|
|
|
|
});
|
2020-04-09 00:29:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleCancel = () => {
|
|
|
|
this.props.onCancel();
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleChange = (e) => {
|
|
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let addresses = {};
|
|
|
|
|
|
|
|
this.props.viewer.addresses.forEach((a) => {
|
|
|
|
addresses[a.value] = a;
|
|
|
|
});
|
|
|
|
|
|
|
|
const currentAddress = addresses[this.props.selected.address];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
2020-06-04 09:26:20 +03:00
|
|
|
<System.P style={{ fontFamily: 'inter-semi-bold' }}>Send Filecoin</System.P>
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
|
|
<System.SelectMenuFull
|
|
|
|
containerStyle={{ marginTop: 24 }}
|
|
|
|
name="address"
|
|
|
|
label="From"
|
|
|
|
value={this.props.selected.address}
|
|
|
|
category="address"
|
|
|
|
onChange={this.props.onSelectedChange}
|
2020-06-04 09:26:20 +03:00
|
|
|
options={this.props.viewer.addresses}>
|
2020-04-09 00:29:13 +03:00
|
|
|
{currentAddress.name}
|
|
|
|
</System.SelectMenuFull>
|
|
|
|
|
|
|
|
<System.Input
|
|
|
|
containerStyle={{ marginTop: 24 }}
|
|
|
|
label="To"
|
|
|
|
name="address"
|
|
|
|
value={this.state.address}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<System.Input
|
|
|
|
containerStyle={{ marginTop: 24 }}
|
|
|
|
label="Amount (Filecoin)"
|
|
|
|
name="amount"
|
|
|
|
value={this.state.amount}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div css={STYLES_ITEM}>
|
2020-06-08 09:45:53 +03:00
|
|
|
<div css={STYLES_FOCUS}>0 FIL</div>
|
2020-04-09 00:29:13 +03:00
|
|
|
<div css={STYLES_SUBTEXT}>Transaction Fee</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={STYLES_ITEM}>
|
2020-06-08 09:45:53 +03:00
|
|
|
<div css={STYLES_FOCUS}>{Strings.formatNumber(this.state.amount)}</div>
|
2020-04-09 00:29:13 +03:00
|
|
|
<div css={STYLES_SUBTEXT}>Total Filecoin</div>
|
|
|
|
</div>
|
|
|
|
|
2020-06-04 09:26:20 +03:00
|
|
|
<System.ButtonPrimaryFull style={{ marginTop: 48 }} onClick={this._handleSubmit}>
|
2020-04-09 00:29:13 +03:00
|
|
|
Send
|
|
|
|
</System.ButtonPrimaryFull>
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|