mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
275 lines
8.0 KiB
JavaScript
275 lines
8.0 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { getAccountLink } from '@metamask/etherscan-link';
|
|
|
|
import Button from '../../../components/ui/button';
|
|
import Checkbox from '../../../components/ui/check-box';
|
|
import Dropdown from '../../../components/ui/dropdown';
|
|
|
|
import { getURLHostName } from '../../../helpers/utils/util';
|
|
|
|
import { HardwareDeviceNames } from '../../../../shared/constants/hardware-wallets';
|
|
import { MetaMetricsEventCategory } from '../../../../shared/constants/metametrics';
|
|
|
|
class AccountList extends Component {
|
|
state = {
|
|
pathValue: null,
|
|
};
|
|
|
|
goToNextPage = () => {
|
|
// If we have < 5 accounts, it's restricted by BIP-44
|
|
if (this.props.accounts.length === 5) {
|
|
this.props.getPage(this.props.device, 1, this.props.selectedPath);
|
|
} else {
|
|
this.props.onAccountRestriction();
|
|
}
|
|
};
|
|
|
|
goToPreviousPage = () => {
|
|
this.props.getPage(this.props.device, -1, this.props.selectedPath);
|
|
};
|
|
|
|
setPath(pathValue) {
|
|
this.setState({ pathValue });
|
|
}
|
|
|
|
isFirstPage() {
|
|
return this.props.accounts[0]?.index === 0;
|
|
}
|
|
|
|
renderHdPathSelector() {
|
|
const { device, selectedPath, hdPaths, onPathChange } = this.props;
|
|
const { pathValue } = this.state;
|
|
|
|
return (
|
|
<div>
|
|
<h3 className="hw-connect__hdPath__title">
|
|
{this.context.t('selectHdPath')}
|
|
</h3>
|
|
<p className="hw-connect__msg">{this.context.t('selectPathHelp')}</p>
|
|
<div className="hw-connect__hdPath">
|
|
<Dropdown
|
|
className="hw-connect__hdPath__select"
|
|
options={hdPaths[device.toLowerCase()]}
|
|
selectedOption={pathValue || selectedPath}
|
|
onChange={(value) => {
|
|
this.setPath(value);
|
|
onPathChange(value);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
capitalizeDevice(device) {
|
|
return device.slice(0, 1).toUpperCase() + device.slice(1);
|
|
}
|
|
|
|
renderHeader() {
|
|
const { device } = this.props;
|
|
const shouldShowHDPaths = [
|
|
HardwareDeviceNames.ledger,
|
|
HardwareDeviceNames.lattice,
|
|
HardwareDeviceNames.trezor,
|
|
].includes(device.toLowerCase());
|
|
return (
|
|
<div className="hw-connect">
|
|
<h3 className="hw-connect__unlock-title">
|
|
{this.context.t('selectAnAccount')}
|
|
</h3>
|
|
{shouldShowHDPaths ? this.renderHdPathSelector() : null}
|
|
<h3 className="hw-connect__hdPath__title">
|
|
{this.context.t('selectAnAccount')}
|
|
</h3>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderAccounts() {
|
|
const { accounts, connectedAccounts, rpcPrefs, chainId } = this.props;
|
|
|
|
return (
|
|
<div className="hw-account-list">
|
|
{accounts.map((account, idx) => {
|
|
const accountAlreadyConnected = connectedAccounts.includes(
|
|
account.address.toLowerCase(),
|
|
);
|
|
const value = account.index;
|
|
const checked =
|
|
this.props.selectedAccounts.includes(account.index) ||
|
|
accountAlreadyConnected;
|
|
|
|
return (
|
|
<div
|
|
className="hw-account-list__item"
|
|
key={account.address}
|
|
data-testid="hw-account-list__item"
|
|
title={
|
|
accountAlreadyConnected
|
|
? this.context.t('selectAnAccountAlreadyConnected')
|
|
: ''
|
|
}
|
|
>
|
|
<div className="hw-account-list__item__checkbox">
|
|
<Checkbox
|
|
id={`address-${idx}`}
|
|
checked={checked}
|
|
disabled={accountAlreadyConnected}
|
|
onClick={() => {
|
|
this.props.onAccountChange(value);
|
|
}}
|
|
/>
|
|
<label
|
|
className="hw-account-list__item__label"
|
|
htmlFor={`address-${idx}`}
|
|
>
|
|
<span className="hw-account-list__item__index">
|
|
{account.index + 1}
|
|
</span>
|
|
{`${account.address.slice(0, 4)}...${account.address.slice(
|
|
-4,
|
|
)}`}
|
|
<span className="hw-account-list__item__balance">{`${account.balance}`}</span>
|
|
</label>
|
|
</div>
|
|
<a
|
|
className="hw-account-list__item__link"
|
|
onClick={() => {
|
|
const accountLink = getAccountLink(
|
|
account.address,
|
|
chainId,
|
|
rpcPrefs,
|
|
);
|
|
this.context.trackEvent({
|
|
category: MetaMetricsEventCategory.Accounts,
|
|
event: 'Clicked Block Explorer Link',
|
|
properties: {
|
|
actions: 'Hardware Connect',
|
|
link_type: 'Account Tracker',
|
|
block_explorer_domain: getURLHostName(accountLink),
|
|
},
|
|
});
|
|
global.platform.openTab({
|
|
url: accountLink,
|
|
});
|
|
}}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
title={this.context.t('etherscanView')}
|
|
>
|
|
<i
|
|
className="fa fa-share-square"
|
|
style={{ color: 'var(--color-icon-default)' }}
|
|
/>
|
|
</a>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderPagination() {
|
|
return (
|
|
<div className="hw-list-pagination">
|
|
<button
|
|
className="hw-list-pagination__button"
|
|
disabled={this.isFirstPage()}
|
|
onClick={this.goToPreviousPage}
|
|
data-testid="hw-list-pagination__prev-button"
|
|
>
|
|
{`< ${this.context.t('prev')}`}
|
|
</button>
|
|
<button
|
|
className="hw-list-pagination__button"
|
|
onClick={this.goToNextPage}
|
|
>
|
|
{`${this.context.t('next')} >`}
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderButtons() {
|
|
const disabled = this.props.selectedAccounts.length === 0;
|
|
const buttonProps = {};
|
|
if (disabled) {
|
|
buttonProps.disabled = true;
|
|
}
|
|
|
|
return (
|
|
<div className="new-external-account-form__buttons">
|
|
<Button
|
|
type="secondary"
|
|
large
|
|
className="new-external-account-form__button"
|
|
onClick={this.props.onCancel.bind(this)}
|
|
>
|
|
{this.context.t('cancel')}
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
large
|
|
className="new-external-account-form__button unlock"
|
|
disabled={disabled}
|
|
onClick={this.props.onUnlockAccounts.bind(
|
|
this,
|
|
this.props.device,
|
|
this.props.selectedPath,
|
|
)}
|
|
>
|
|
{this.context.t('unlock')}
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderForgetDevice() {
|
|
return (
|
|
<div className="hw-forget-device-container">
|
|
<a onClick={this.props.onForgetDevice.bind(this, this.props.device)}>
|
|
{this.context.t('forgetDevice')}
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="new-external-account-form account-list">
|
|
{this.renderHeader()}
|
|
{this.renderAccounts()}
|
|
{this.renderPagination()}
|
|
{this.renderButtons()}
|
|
{this.renderForgetDevice()}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
AccountList.propTypes = {
|
|
onPathChange: PropTypes.func.isRequired,
|
|
selectedPath: PropTypes.string.isRequired,
|
|
device: PropTypes.string.isRequired,
|
|
accounts: PropTypes.array.isRequired,
|
|
connectedAccounts: PropTypes.array.isRequired,
|
|
onAccountChange: PropTypes.func.isRequired,
|
|
onForgetDevice: PropTypes.func.isRequired,
|
|
getPage: PropTypes.func.isRequired,
|
|
chainId: PropTypes.string,
|
|
rpcPrefs: PropTypes.object,
|
|
selectedAccounts: PropTypes.array.isRequired,
|
|
onUnlockAccounts: PropTypes.func,
|
|
onCancel: PropTypes.func,
|
|
onAccountRestriction: PropTypes.func,
|
|
hdPaths: PropTypes.object.isRequired,
|
|
};
|
|
|
|
AccountList.contextTypes = {
|
|
t: PropTypes.func,
|
|
trackEvent: PropTypes.func,
|
|
};
|
|
|
|
export default AccountList;
|