MyCrypto/common/containers/Tabs/SendTransaction/index.jsx

478 lines
13 KiB
React
Raw Normal View History

2017-06-26 15:27:55 -07:00
// @flow
import React from 'react';
import translate from 'translations';
import { UnlockHeader } from 'components/ui';
import {
2017-07-01 22:49:06 -07:00
Donate,
DataField,
CustomMessage,
GasField,
AmountField,
AddressField,
ConfirmationModal
2017-06-26 15:27:55 -07:00
} from './components';
import { BalanceSidebar } from 'components';
2017-06-26 15:27:55 -07:00
import pickBy from 'lodash/pickBy';
2017-06-29 16:03:11 -07:00
import type { State as AppState } from 'reducers';
import { connect } from 'react-redux';
import BaseWallet from 'libs/wallet/base';
2017-06-26 15:27:55 -07:00
// import type { Transaction } from './types';
import customMessages from './messages';
import { donationAddressMap } from 'config/data';
import { isValidETHAddress } from 'libs/validators';
import {
getNodeLib,
getNetworkConfig,
getGasPriceGwei
} from 'selectors/config';
import { getTokens } from 'selectors/wallet';
import type { Token, NetworkConfig } from 'config/data';
import Big from 'bignumber.js';
import { valueToHex } from 'libs/values';
import ERC20 from 'libs/erc20';
2017-07-15 16:05:57 -07:00
import type { TokenBalance } from 'selectors/wallet';
import { getTokenBalances } from 'selectors/wallet';
import type { RPCNode } from 'libs/nodes';
import type {
TransactionWithoutGas,
BroadcastTransaction
} from 'libs/transaction';
import type { UNIT } from 'libs/units';
import { toWei, toTokenUnit } from 'libs/units';
import { formatGasLimit } from 'utils/formatters';
import { showNotification } from 'actions/notifications';
import type { ShowNotificationAction } from 'actions/notifications';
import type { NodeConfig } from 'config/data';
import { getNodeConfig } from 'selectors/config';
import { generateTransaction } from 'libs/transaction';
2017-06-26 15:27:55 -07:00
type State = {
2017-07-01 22:49:06 -07:00
hasQueryString: boolean,
readOnly: boolean,
to: string,
value: string,
// $FlowFixMe - Comes from getParam not validating unit
unit: UNIT,
token: ?Token,
2017-07-01 22:49:06 -07:00
gasLimit: string,
data: string,
gasChanged: boolean,
transaction: ?BroadcastTransaction,
showTxConfirm: boolean
2017-06-26 15:27:55 -07:00
};
function getParam(query: { [string]: string }, key: string) {
2017-07-01 22:49:06 -07:00
const keys = Object.keys(query);
const index = keys.findIndex(k => k.toLowerCase() === key.toLowerCase());
if (index === -1) {
return null;
}
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
return query[keys[index]];
2017-06-26 15:27:55 -07:00
}
// TODO query string
// TODO how to handle DATA?
2017-07-15 16:05:57 -07:00
type Props = {
location: {
query: {
[string]: string
}
},
wallet: BaseWallet,
balance: Big,
node: NodeConfig,
nodeLib: RPCNode,
network: NetworkConfig,
tokens: Token[],
tokenBalances: TokenBalance[],
gasPrice: number,
showNotification: (
level: string,
msg: string,
duration?: number
) => ShowNotificationAction
2017-07-15 16:05:57 -07:00
};
2017-06-26 15:27:55 -07:00
export class SendTransaction extends React.Component {
2017-07-15 16:05:57 -07:00
props: Props;
2017-07-01 22:49:06 -07:00
state: State = {
hasQueryString: false,
readOnly: false,
// FIXME use correct defaults
to: '',
2017-07-15 16:05:57 -07:00
value: '',
2017-07-01 22:49:06 -07:00
unit: 'ether',
token: null,
2017-07-01 22:49:06 -07:00
gasLimit: '21000',
data: '',
gasChanged: false,
showTxConfirm: false,
transaction: null
2017-07-01 22:49:06 -07:00
};
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
componentDidMount() {
const queryPresets = pickBy(this.parseQuery());
if (Object.keys(queryPresets).length) {
this.setState({ ...queryPresets, hasQueryString: true });
2017-06-26 15:27:55 -07:00
}
2017-07-01 22:49:06 -07:00
}
componentDidUpdate(_prevProps: Props, prevState: State) {
// if gas is not changed
// and we have valid tx
// and relevant fields changed
// estimate gas
// TODO we might want to listen to gas price changes here
// TODO debunce the call
if (
!this.state.gasChanged &&
this.isValid() &&
(this.state.to !== prevState.to ||
this.state.value !== prevState.value ||
this.state.unit !== prevState.unit ||
this.state.data !== prevState.data)
) {
this.estimateGas();
}
}
2017-07-01 22:49:06 -07:00
render() {
2017-07-03 20:21:19 -07:00
const unlocked = !!this.props.wallet;
2017-07-01 22:49:06 -07:00
const hasEnoughBalance = false;
const {
to,
value,
unit,
gasLimit,
data,
readOnly,
hasQueryString,
showTxConfirm,
transaction
} = this.state;
2017-07-01 22:49:06 -07:00
const customMessage = customMessages.find(m => m.to === to);
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
return (
<section className="container" style={{ minHeight: '50%' }}>
<div className="tab-content">
<main className="tab-pane active">
2017-07-01 22:49:06 -07:00
{hasQueryString &&
<div className="alert alert-info">
<p>
{translate('WARN_Send_Link')}
</p>
</div>}
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
<UnlockHeader title={'NAV_SendEther'} />
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
{unlocked &&
<article className="row">
{'' /* <!-- Sidebar --> */}
<section className="col-sm-4">
<div style={{ maxWidth: 350 }}>
<BalanceSidebar />
2017-07-01 22:49:06 -07:00
<hr />
<Donate onDonate={this.onNewTx} />
</div>
</section>
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
<section className="col-sm-8">
{readOnly &&
!hasEnoughBalance &&
<div className="row form-group">
<div className="alert alert-danger col-xs-12 clearfix">
<strong>
Warning! You do not have enough funds to complete this
swap.
</strong>
2017-07-01 22:49:06 -07:00
<br />
Please add more funds or access a different wallet.
</div>
</div>}
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
<div className="row form-group">
<h4 className="col-xs-12">
{translate('SEND_trans')}
</h4>
</div>
<AddressField
placeholder={donationAddressMap.ETH}
2017-07-01 22:49:06 -07:00
value={this.state.to}
onChange={readOnly ? null : this.onAddressChange}
/>
<AmountField
value={value}
unit={unit}
2017-07-15 16:05:57 -07:00
tokens={this.props.tokenBalances
.filter(token => !token.balance.eq(0))
.map(token => token.symbol)
.sort()}
2017-07-01 22:49:06 -07:00
onChange={readOnly ? void 0 : this.onAmountChange}
/>
<GasField
value={gasLimit}
onChange={readOnly ? void 0 : this.onGasChange}
/>
2017-07-01 22:49:06 -07:00
{unit === 'ether' &&
<DataField
value={data}
onChange={readOnly ? void 0 : this.onDataChange}
/>}
2017-07-01 22:49:06 -07:00
<CustomMessage message={customMessage} />
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
<div className="row form-group">
<div className="col-xs-12 clearfix">
<a
className="btn btn-info btn-block"
onClick={this.generateTx}
>
2017-07-01 22:49:06 -07:00
{translate('SEND_generate')}
</a>
</div>
</div>
2017-06-26 15:27:55 -07:00
{transaction &&
<div>
<div className="row form-group">
<div className="col-sm-6">
<label>
{translate('SEND_raw')}
</label>
<textarea
className="form-control"
value={transaction.rawTx}
rows="4"
readOnly
/>
</div>
<div className="col-sm-6">
<label>
{translate('SEND_signed')}
</label>
<textarea
className="form-control"
value={transaction.signedTx}
rows="4"
readOnly
/>
</div>
</div>
2017-06-26 15:27:55 -07:00
<div className="form-group">
<a
className="btn btn-primary btn-block col-sm-11"
onClick={this.openTxModal}
>
{translate('SEND_trans')}
</a>
</div>
</div>}
2017-07-01 22:49:06 -07:00
</section>
</article>}
</main>
</div>
{transaction &&
showTxConfirm &&
<ConfirmationModal
wallet={this.props.wallet}
node={this.props.node}
signedTransaction={transaction.signedTx}
onCancel={this.cancelTx}
onConfirm={this.confirmTx}
/>}
2017-07-01 22:49:06 -07:00
</section>
);
}
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
parseQuery() {
const query = this.props.location.query;
const to = getParam(query, 'to');
const data = getParam(query, 'data');
// FIXME validate token against presets
const unit = getParam(query, 'tokenSymbol');
const value = getParam(query, 'value');
let gasLimit = getParam(query, 'gas');
if (gasLimit === null) {
gasLimit = getParam(query, 'limit');
2017-06-26 15:27:55 -07:00
}
2017-07-01 22:49:06 -07:00
const readOnly = getParam(query, 'readOnly') == null ? false : true;
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
return { to, data, value, unit, gasLimit, readOnly };
}
2017-06-26 15:27:55 -07:00
isValid() {
const { to, value } = this.state;
return (
isValidETHAddress(to) &&
value &&
Number(value) > 0 &&
!isNaN(Number(value)) &&
isFinite(Number(value))
);
}
async getTransactionInfoFromState(): Promise<TransactionWithoutGas> {
const { wallet } = this.props;
const { token } = this.state;
if (this.state.unit === 'ether') {
return {
to: this.state.to,
from: await wallet.getAddress(),
value: valueToHex(this.state.value),
data: this.state.data
};
} else {
if (!token) {
throw new Error('No matching token');
}
return {
to: token.address,
from: await wallet.getAddress(),
value: '0x0',
data: ERC20.transfer(
this.state.to,
toTokenUnit(new Big(this.state.value), token)
)
};
}
}
async estimateGas() {
const trans = await this.getTransactionInfoFromState();
if (!trans) {
return;
}
// Grab a reference to state. If it has changed by the time the estimateGas
// call comes back, we don't want to replace the gasLimit in state.
const state = this.state;
this.props.nodeLib.estimateGas(trans).then(gasLimit => {
if (this.state === state) {
this.setState({ gasLimit: formatGasLimit(gasLimit, state.unit) });
}
});
}
2017-07-01 22:49:06 -07:00
// FIXME use mkTx instead or something that could take care of default gas/data and whatnot,
onNewTx = (
address: string,
amount: string,
unit: string,
data: string = '',
gasLimit: string = '21000'
) => {
this.setState({
to: address,
value: amount,
unit,
data,
gasLimit,
gasChanged: false
});
};
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
onAddressChange = (value: string) => {
this.setState({
to: value
});
};
onDataChange = (value: string) => {
if (this.state.unit !== 'ether') {
return;
}
this.setState({
...this.state,
data: value
});
};
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
onGasChange = (value: string) => {
this.setState({ gasLimit: value, gasChanged: true });
};
2017-06-26 15:27:55 -07:00
2017-07-01 22:49:06 -07:00
onAmountChange = (value: string, unit: string) => {
2017-07-15 16:05:57 -07:00
// TODO sub gas for eth
if (value === 'everything') {
2017-07-15 16:05:57 -07:00
if (unit === 'ether') {
value = this.props.balance.toString();
}
const token = this.props.tokenBalances.find(
token => token.symbol === unit
);
2017-07-15 16:05:57 -07:00
if (!token) {
return;
}
value = token.balance.toString();
}
let token = this.props.tokens.find(x => x.symbol === unit);
2017-07-01 22:49:06 -07:00
this.setState({
value,
unit,
token
2017-07-01 22:49:06 -07:00
});
};
generateTx = async () => {
const { nodeLib, wallet } = this.props;
const { token } = this.state;
const stateTxInfo = await this.getTransactionInfoFromState();
try {
const transaction = await generateTransaction(
nodeLib,
{
...stateTxInfo,
gasLimit: this.state.gasLimit,
gasPrice: this.props.gasPrice,
chainId: this.props.network.chainId
},
wallet,
token
);
this.setState({ transaction });
} catch (err) {
this.props.showNotification('danger', err.message, 5000);
}
};
openTxModal = () => {
if (this.state.transaction) {
this.setState({ showTxConfirm: true });
}
};
cancelTx = () => {
this.setState({ showTxConfirm: false });
};
confirmTx = () => {
// TODO: Broadcast transaction
console.log(this.state.transaction);
};
2017-06-26 15:27:55 -07:00
}
2017-06-29 16:03:11 -07:00
function mapStateToProps(state: AppState) {
2017-07-03 20:21:19 -07:00
return {
wallet: state.wallet.inst,
2017-07-15 16:05:57 -07:00
balance: state.wallet.balance,
tokenBalances: getTokenBalances(state),
node: getNodeConfig(state),
nodeLib: getNodeLib(state),
network: getNetworkConfig(state),
tokens: getTokens(state),
gasPrice: toWei(new Big(getGasPriceGwei(state)), 'gwei')
2017-07-03 20:21:19 -07:00
};
2017-06-29 16:03:11 -07:00
}
export default connect(mapStateToProps, { showNotification })(SendTransaction);