49fdd23d58
* Move secureApi to shell * Extract isTestnet test * Use mobx + subscriptions for status * Re-add status indicator * Add lerna * Move intial packages to js/packages * Move 3rdparty/{email,sms}-verification to correct location * Move package.json & README to library src * Move tests for library packages * Move views & dapps to packages * Move i18n to root * Move shell to actual src (main app) * Remove ~ references * Change ~ to root (explicit imports) * Finalise convert of ~ * Move views into dapps as well * Move dapps to packages/ * Fix references * Update css * Update test spec locations * Update tests * Case fix * Skip flakey tests * Update enzyme * Skip previously ignored tests * Allow empty api for hw * Re-add theme for embed
347 lines
9.7 KiB
JavaScript
347 lines
9.7 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { eip20 } from '@parity/shared/contracts/abi';
|
|
|
|
import { api } from '../../parity';
|
|
import { loadBalances } from '../../services';
|
|
import AddressSelect from '../../AddressSelect';
|
|
import Container from '../../Container';
|
|
|
|
import styles from './send.css';
|
|
|
|
export default class Send extends Component {
|
|
static contextTypes = {
|
|
accounts: PropTypes.object.isRequired
|
|
}
|
|
|
|
state = {
|
|
loading: true,
|
|
tokens: null,
|
|
selectedToken: null,
|
|
availableBalances: [],
|
|
fromAddress: null,
|
|
fromBalance: null,
|
|
toAddress: null,
|
|
toKnown: true,
|
|
amount: 0,
|
|
amountError: null,
|
|
sendBusy: false,
|
|
sendError: null,
|
|
sendState: null,
|
|
sendDone: false,
|
|
signerRequestId: null,
|
|
txHash: null,
|
|
txReceipt: null
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.loadBalances();
|
|
this.onAmountChange({ target: { value: '0' } });
|
|
}
|
|
|
|
render () {
|
|
const { loading } = this.state;
|
|
|
|
return loading
|
|
? this.renderLoading()
|
|
: this.renderBody();
|
|
}
|
|
|
|
renderBody () {
|
|
const { sendBusy } = this.state;
|
|
|
|
return sendBusy
|
|
? this.renderSending()
|
|
: this.renderForm();
|
|
}
|
|
|
|
renderSending () {
|
|
const { sendDone, sendError, sendState } = this.state;
|
|
|
|
if (sendDone) {
|
|
return (
|
|
<Container>
|
|
<div className={ styles.statusHeader }>
|
|
Your token value transfer has been completed
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
if (sendError) {
|
|
return (
|
|
<Container>
|
|
<div className={ styles.statusHeader }>
|
|
Your deployment has encountered an error
|
|
</div>
|
|
<div className={ styles.statusError }>
|
|
{ sendError }
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Container>
|
|
<div className={ styles.statusHeader }>
|
|
Your token value is being transferred
|
|
</div>
|
|
<div className={ styles.statusState }>
|
|
{ sendState }
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
renderLoading () {
|
|
return (
|
|
<Container>
|
|
<div className={ styles.statusHeader }>
|
|
Loading available tokens
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
renderForm () {
|
|
const { tokens } = this.state;
|
|
|
|
if (!tokens || tokens.length === 0) {
|
|
return (
|
|
<Container>
|
|
<div className={ styles.statusHeader }>
|
|
There are no tokens to transfer
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const { accounts } = this.context;
|
|
const { availableBalances, fromAddress, amount, amountError, toKnown, toAddress } = this.state;
|
|
|
|
const fromBalance = availableBalances.find((balance) => balance.address === fromAddress);
|
|
const fromAddresses = availableBalances.map((balance) => balance.address);
|
|
const toAddresses = Object.keys(accounts);
|
|
const toInput = toKnown
|
|
? <AddressSelect addresses={ toAddresses } onChange={ this.onChangeTo } />
|
|
: <input value={ toAddress } onChange={ this.onChangeTo } />;
|
|
const hasError = amountError;
|
|
const error = `${styles.input} ${styles.error}`;
|
|
const maxAmountHint = `Value to transfer (max: ${fromBalance ? fromBalance.balance.div(1000000).toFormat(6) : '1'})`;
|
|
|
|
return (
|
|
<Container>
|
|
<div className={ styles.form }>
|
|
<div className={ styles.input }>
|
|
<label>token type</label>
|
|
<select onChange={ this.onSelectToken }>
|
|
{ this.renderTokens() }
|
|
</select>
|
|
<div className={ styles.hint }>
|
|
type of token to transfer
|
|
</div>
|
|
</div>
|
|
<div className={ styles.input }>
|
|
<label>transfer from</label>
|
|
<AddressSelect
|
|
addresses={ fromAddresses }
|
|
onChange={ this.onSelectFrom }
|
|
/>
|
|
<div className={ styles.hint }>
|
|
account to transfer from
|
|
</div>
|
|
</div>
|
|
<div className={ styles.input }>
|
|
<label>transfer to</label>
|
|
<select onChange={ this.onChangeToType }>
|
|
<option value='known'>Known, Select from list</option>
|
|
<option value='unknown'>Unknown, Keyboard input</option>
|
|
</select>
|
|
<div className={ styles.hint }>
|
|
the type of address input
|
|
</div>
|
|
</div>
|
|
<div className={ styles.input }>
|
|
<label />
|
|
{ toInput }
|
|
<div className={ styles.hint }>
|
|
account to transfer to
|
|
</div>
|
|
</div>
|
|
<div className={ amountError ? error : styles.input }>
|
|
<label>amount</label>
|
|
<input
|
|
type='number'
|
|
min='0'
|
|
step='0.1'
|
|
value={ amount }
|
|
max={ fromBalance ? fromBalance.balance.div(1000000).toFixed(6) : 1 }
|
|
onChange={ this.onAmountChange }
|
|
/>
|
|
<div className={ styles.hint }>
|
|
{ amountError || maxAmountHint }
|
|
</div>
|
|
</div>
|
|
<div className={ styles.input }>
|
|
<label />
|
|
<div className={ styles.buttonRow }>
|
|
<div
|
|
className={ styles.button }
|
|
disabled={ hasError }
|
|
onClick={ this.onSend }
|
|
>
|
|
Transfer Tokens
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
renderTokens () {
|
|
const { tokens } = this.state;
|
|
|
|
return tokens.map((token) => (
|
|
<option
|
|
key={ token.address }
|
|
value={ token.address }
|
|
>
|
|
{ token.coin.tla } / { token.coin.name }
|
|
</option>
|
|
));
|
|
}
|
|
|
|
onSelectFrom = (event) => {
|
|
const fromAddress = event.target.value;
|
|
|
|
this.setState({ fromAddress });
|
|
}
|
|
|
|
onChangeTo = (event) => {
|
|
const toAddress = event.target.value;
|
|
|
|
this.setState({ toAddress });
|
|
}
|
|
|
|
onChangeToType = (event) => {
|
|
const toKnown = event.target.value === 'known';
|
|
|
|
this.setState({ toKnown });
|
|
}
|
|
|
|
onSelectToken = (event) => {
|
|
const { tokens } = this.state;
|
|
const address = event.target.value;
|
|
const selectedToken = tokens.find((_token) => _token.address === address);
|
|
const availableBalances = selectedToken.balances.filter((balance) => balance.balance.gt(0));
|
|
|
|
this.setState({ selectedToken, availableBalances });
|
|
this.onSelectFrom({ target: { value: availableBalances[0].address } });
|
|
}
|
|
|
|
onAmountChange = (event) => {
|
|
const amount = parseFloat(event.target.value);
|
|
const amountError = !isFinite(amount) || amount <= 0
|
|
? 'amount needs to be > 0'
|
|
: null;
|
|
|
|
this.setState({ amount, amountError });
|
|
}
|
|
|
|
onSend = () => {
|
|
const { amount, fromAddress, toAddress, amountError, selectedToken, sendBusy } = this.state;
|
|
const hasError = amountError;
|
|
|
|
if (hasError || sendBusy) {
|
|
return;
|
|
}
|
|
|
|
const values = [toAddress, new BigNumber(amount).mul(1000000).toFixed(0)];
|
|
const options = {
|
|
from: fromAddress
|
|
};
|
|
const instance = api.newContract(eip20, selectedToken.address).instance;
|
|
|
|
this.setState({ sendBusy: true, sendState: 'Estimating gas for the transaction' });
|
|
|
|
instance
|
|
.transfer.estimateGas(options, values)
|
|
.then((gas) => {
|
|
this.setState({ sendState: 'Gas estimated, Posting transaction to the network' });
|
|
|
|
const gasPassed = gas.mul(1.2);
|
|
|
|
options.gas = gasPassed.toFixed(0);
|
|
console.log(`gas estimated at ${gas.toFormat(0)}, passing ${gasPassed.toFormat(0)}`);
|
|
|
|
return instance.transfer.postTransaction(options, values);
|
|
})
|
|
.then((signerRequestId) => {
|
|
this.setState({ signerRequestId, sendState: 'Transaction posted, Waiting for transaction authorization' });
|
|
|
|
return api.pollMethod('parity_checkRequest', signerRequestId);
|
|
})
|
|
.then((txHash) => {
|
|
this.setState({ txHash, sendState: 'Transaction authorized, Waiting for network confirmations' });
|
|
|
|
return api.pollMethod('eth_getTransactionReceipt', txHash, (receipt) => {
|
|
if (!receipt || !receipt.blockNumber || receipt.blockNumber.eq(0)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
})
|
|
.then((txReceipt) => {
|
|
this.setState({ txReceipt, sendDone: true, sendState: 'Network confirmed, Received transaction receipt' });
|
|
})
|
|
.catch((error) => {
|
|
console.error('onSend', error);
|
|
this.setState({ sendError: error.message });
|
|
});
|
|
}
|
|
|
|
loadBalances () {
|
|
const { accounts } = this.context;
|
|
const addresses = Object.keys(accounts);
|
|
|
|
loadBalances(addresses)
|
|
.then((_tokens) => {
|
|
const tokens = _tokens.filter((token) => {
|
|
for (let index = 0; index < token.balances.length; index++) {
|
|
if (token.balances[index].balance.gt(0)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
this.setState({ tokens, loading: false });
|
|
|
|
if (tokens.length > 0) {
|
|
this.onSelectToken({ target: { value: tokens[0].address } });
|
|
}
|
|
});
|
|
}
|
|
}
|