315 lines
8.2 KiB
JavaScript
315 lines
8.2 KiB
JavaScript
// @flow
|
|
import './DeterministicWalletsModal.scss';
|
|
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import Modal from 'components/ui/Modal';
|
|
import {
|
|
getDeterministicWallets,
|
|
setDesiredToken
|
|
} from 'actions/deterministicWallets';
|
|
import { toUnit } from 'libs/units';
|
|
import { getNetworkConfig } from 'selectors/config';
|
|
import { getTokens } from 'selectors/wallet';
|
|
import { isValidPath } from 'libs/validators';
|
|
|
|
import type {
|
|
DeterministicWalletData,
|
|
GetDeterministicWalletsArgs,
|
|
GetDeterministicWalletsAction,
|
|
SetDesiredTokenAction
|
|
} from 'actions/deterministicWallets';
|
|
import type { NetworkConfig, Token } from 'config/data';
|
|
|
|
const WALLETS_PER_PAGE = 5;
|
|
|
|
type Props = {
|
|
// Redux state
|
|
wallets: DeterministicWalletData[],
|
|
desiredToken: string,
|
|
network: NetworkConfig,
|
|
tokens: Token[],
|
|
|
|
// Redux actions
|
|
getDeterministicWallets: GetDeterministicWalletsArgs => GetDeterministicWalletsAction,
|
|
setDesiredToken: (tkn: ?string) => SetDesiredTokenAction,
|
|
|
|
// Passed props
|
|
isOpen?: boolean,
|
|
walletType: ?string,
|
|
dPath: string,
|
|
dPaths: { label: string, value: string }[],
|
|
publicKey: string,
|
|
chainCode: string,
|
|
onCancel: () => void,
|
|
onConfirmAddress: string => void,
|
|
onPathChange: string => void
|
|
};
|
|
|
|
type State = {
|
|
selectedAddress: string,
|
|
isCustomPath: boolean,
|
|
customPath: string,
|
|
page: number
|
|
};
|
|
|
|
class DeterministicWalletsModal extends React.Component {
|
|
props: Props;
|
|
state: State = {
|
|
selectedAddress: '',
|
|
isCustomPath: false,
|
|
customPath: '',
|
|
page: 0
|
|
};
|
|
|
|
componentDidMount() {
|
|
this._getAddresses();
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
const { publicKey, chainCode } = this.props;
|
|
if (
|
|
nextProps.publicKey !== publicKey ||
|
|
nextProps.chainCode !== chainCode
|
|
) {
|
|
this._getAddresses(nextProps);
|
|
}
|
|
}
|
|
|
|
_getAddresses(props: Props = this.props) {
|
|
const { dPath, publicKey, chainCode } = props;
|
|
|
|
if (dPath && publicKey && chainCode && isValidPath(dPath)) {
|
|
this.props.getDeterministicWallets({
|
|
dPath,
|
|
publicKey,
|
|
chainCode,
|
|
limit: WALLETS_PER_PAGE,
|
|
offset: WALLETS_PER_PAGE * this.state.page
|
|
});
|
|
}
|
|
}
|
|
|
|
_handleChangePath = (ev: SyntheticInputEvent) => {
|
|
const { value } = ev.target;
|
|
|
|
if (value === 'custom') {
|
|
this.setState({ isCustomPath: true });
|
|
} else {
|
|
this.setState({ isCustomPath: false });
|
|
if (this.props.dPath !== value) {
|
|
this.props.onPathChange(value);
|
|
}
|
|
}
|
|
};
|
|
|
|
_handleChangeCustomPath = (ev: SyntheticInputEvent) => {
|
|
this.setState({ customPath: ev.target.value });
|
|
};
|
|
|
|
_handleSubmitCustomPath = (ev: SyntheticInputEvent) => {
|
|
ev.preventDefault();
|
|
if (!isValidPath(this.state.customPath)) return;
|
|
this.props.onPathChange(this.state.customPath);
|
|
};
|
|
|
|
_handleChangeToken = (ev: SyntheticInputEvent) => {
|
|
this.props.setDesiredToken(ev.target.value || null);
|
|
};
|
|
|
|
_handleConfirmAddress = () => {
|
|
if (this.state.selectedAddress) {
|
|
this.props.onConfirmAddress(this.state.selectedAddress);
|
|
}
|
|
};
|
|
|
|
_selectAddress(selectedAddress) {
|
|
this.setState({ selectedAddress });
|
|
}
|
|
|
|
_nextPage = () => {
|
|
this.setState({ page: this.state.page + 1 }, this._getAddresses);
|
|
};
|
|
|
|
_prevPage = () => {
|
|
this.setState(
|
|
{ page: Math.max(this.state.page - 1, 0) },
|
|
this._getAddresses
|
|
);
|
|
};
|
|
|
|
_renderWalletRow(wallet) {
|
|
const { desiredToken, network } = this.props;
|
|
const { selectedAddress } = this.state;
|
|
|
|
// Get renderable values, but keep 'em short
|
|
const value = wallet.value
|
|
? toUnit(wallet.value, 'wei', 'ether').toPrecision(4)
|
|
: '';
|
|
const tokenValue = wallet.tokenValues[desiredToken]
|
|
? wallet.tokenValues[desiredToken].toPrecision(4)
|
|
: '';
|
|
|
|
return (
|
|
<tr
|
|
key={wallet.address}
|
|
onClick={this._selectAddress.bind(this, wallet.address)}
|
|
>
|
|
<td>
|
|
{wallet.index + 1}
|
|
</td>
|
|
<td className="DWModal-addresses-table-address">
|
|
<input
|
|
type="radio"
|
|
name="selectedAddress"
|
|
checked={selectedAddress === wallet.address}
|
|
value={wallet.address}
|
|
/>
|
|
{wallet.address}
|
|
</td>
|
|
<td>
|
|
{value} {network.unit}
|
|
</td>
|
|
<td>
|
|
{tokenValue} {desiredToken}
|
|
</td>
|
|
<td>
|
|
<a
|
|
target="_blank"
|
|
href={`https://ethplorer.io/address/${wallet.address}`}
|
|
>
|
|
<i className="DWModal-addresses-table-more" />
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
wallets,
|
|
desiredToken,
|
|
network,
|
|
tokens,
|
|
dPath,
|
|
dPaths,
|
|
onCancel,
|
|
walletType
|
|
} = this.props;
|
|
const { selectedAddress, isCustomPath, customPath, page } = this.state;
|
|
const validPathClass = isValidPath(customPath) ? 'is-valid' : 'is-invalid';
|
|
|
|
const buttons = [
|
|
{
|
|
text: 'Unlock this Address',
|
|
type: 'primary',
|
|
onClick: this._handleConfirmAddress,
|
|
disabled: !selectedAddress
|
|
},
|
|
{
|
|
text: 'Cancel',
|
|
type: 'default',
|
|
onClick: onCancel
|
|
}
|
|
];
|
|
|
|
return (
|
|
<Modal
|
|
title={`Unlock your ${walletType || ''} Wallet`}
|
|
isOpen={this.props.isOpen}
|
|
buttons={buttons}
|
|
handleClose={onCancel}
|
|
>
|
|
<div className="DWModal">
|
|
<form
|
|
className="DWModal-path form-group-sm"
|
|
onSubmit={this._handleSubmitCustomPath}
|
|
>
|
|
<span className="DWModal-path-label">Addresses for</span>
|
|
<select
|
|
className="form-control"
|
|
onChange={this._handleChangePath}
|
|
value={isCustomPath ? 'custom' : dPath}
|
|
>
|
|
{dPaths.map(dp =>
|
|
<option key={dp.value} value={dp.value}>
|
|
{dp.label}
|
|
</option>
|
|
)}
|
|
<option value="custom">Custom path...</option>
|
|
</select>
|
|
{isCustomPath &&
|
|
<input
|
|
className={`form-control ${validPathClass}`}
|
|
value={customPath}
|
|
placeholder="m/44'/60'/0'/0"
|
|
onChange={this._handleChangeCustomPath}
|
|
/>}
|
|
</form>
|
|
|
|
<div className="DWModal-addresses">
|
|
<table className="DWModal-addresses-table table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<td>#</td>
|
|
<td>Address</td>
|
|
<td>
|
|
{network.unit}
|
|
</td>
|
|
<td>
|
|
<select
|
|
className="DWModal-addresses-table-token"
|
|
value={desiredToken}
|
|
onChange={this._handleChangeToken}
|
|
>
|
|
<option value="">-Token-</option>
|
|
{tokens.map(t =>
|
|
<option key={t.symbol} value={t.symbol}>
|
|
{t.symbol}
|
|
</option>
|
|
)}
|
|
</select>
|
|
</td>
|
|
<td>More</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{wallets.map(wallet => this._renderWalletRow(wallet))}
|
|
</tbody>
|
|
</table>
|
|
|
|
<div className="DWModal-addresses-nav">
|
|
<button
|
|
className="DWModal-addresses-nav-btn btn btn-sm btn-default"
|
|
disabled={page === 0}
|
|
onClick={this._prevPage}
|
|
>
|
|
← Back
|
|
</button>
|
|
<button
|
|
className="DWModal-addresses-nav-btn btn btn-sm btn-default"
|
|
onClick={this._nextPage}
|
|
>
|
|
More →
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
wallets: state.deterministicWallets.wallets,
|
|
desiredToken: state.deterministicWallets.desiredToken,
|
|
network: getNetworkConfig(state),
|
|
tokens: getTokens(state)
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, {
|
|
getDeterministicWallets,
|
|
setDesiredToken
|
|
})(DeterministicWalletsModal);
|