openethereum/js/packages/dapp-wallet/Confirmations/confirmations.js
Jaco Greeff 49fdd23d58 Ui 2 move to packages/* (#6113)
* 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
2017-07-21 15:46:53 +02:00

365 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 React, { Component } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import ReactTooltip from 'react-tooltip';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { bytesToHex } from '@parity/api/util/format';
import { confirmOperation, revokeOperation } from '@parity/shared/redux/providers/walletActions';
import { Container, Dropdown, InputAddress, IdentityIcon, Progress } from '@parity/ui';
import TxRow from '@parity/ui/TxList/TxRow';
import styles from '../wallet.css';
import txListStyles from '@parity/ui/TxList/txList.css';
class WalletConfirmations extends Component {
static contextTypes = {
api: PropTypes.object.isRequired
};
static propTypes = {
accounts: PropTypes.object.isRequired,
address: PropTypes.string.isRequired,
netVersion: PropTypes.string.isRequired,
owners: PropTypes.array.isRequired,
require: PropTypes.object.isRequired,
confirmOperation: PropTypes.func.isRequired,
revokeOperation: PropTypes.func.isRequired,
confirmations: PropTypes.array
};
static defaultProps = {
confirmations: []
};
render () {
return (
<div>
<Container
title={
<FormattedMessage
id='wallet.confirmations.title'
defaultMessage='Pending Confirmations'
/>
}
>
{ this.renderConfirmations() }
</Container>
</div>
);
}
renderConfirmations () {
const { confirmations, ...others } = this.props;
const realConfirmations = confirmations && confirmations
.filter((conf) => conf.confirmedBy.length > 0);
if (!realConfirmations) {
return null;
}
if (realConfirmations.length === 0) {
return (
<div>
<p>
<FormattedMessage
id='wallet.confirmations.none'
defaultMessage='No transactions needs confirmation right now.'
/>
</p>
</div>
);
}
return realConfirmations.map((confirmation) => (
<WalletConfirmation
key={ confirmation.operation }
confirmation={ confirmation }
{ ...others }
/>
));
}
}
function mapStateToProps (state) {
const { accounts } = state.personal;
return { accounts };
}
function mapDispatchToProps (dispatch) {
return bindActionCreators({
confirmOperation,
revokeOperation
}, dispatch);
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(WalletConfirmations);
class WalletConfirmation extends Component {
static propTypes = {
accounts: PropTypes.object.isRequired,
confirmation: PropTypes.object.isRequired,
address: PropTypes.string.isRequired,
netVersion: PropTypes.string.isRequired,
owners: PropTypes.array.isRequired,
require: PropTypes.object.isRequired,
confirmOperation: PropTypes.func.isRequired,
revokeOperation: PropTypes.func.isRequired
};
render () {
const { confirmation } = this.props;
const { pending } = confirmation;
const confirmationsRows = [];
const className = styles.light;
const txRow = this.renderTransactionRow(confirmation, className);
const detailsRow = this.renderConfirmedBy(confirmation, className);
const progressRow = this.renderProgress(confirmation, className);
const actionsRow = this.renderActions(confirmation, className);
confirmationsRows.push(progressRow);
confirmationsRows.push(detailsRow);
confirmationsRows.push(txRow);
confirmationsRows.push(actionsRow);
return (
<div className={ styles.confirmationContainer }>
<table className={ [ txListStyles.transactions, styles.confirmations ].join(' ') }>
<tbody>
{ confirmationsRows }
</tbody>
</table>
{
pending && (
<div className={ styles.pendingOverlay } />
)
}
</div>
);
}
handleConfirm = (event, owner) => {
const { confirmOperation, confirmation, address } = this.props;
confirmOperation(address, owner, confirmation.operation);
}
handleRevoke = (event, owner) => {
const { revokeOperation, confirmation, address } = this.props;
revokeOperation(address, owner, confirmation.operation);
}
renderActions (confirmation, className) {
const { owners, accounts } = this.props;
const { operation, confirmedBy } = confirmation;
const addresses = Object.keys(accounts);
const possibleConfirm = owners
.filter((owner) => addresses.includes(owner))
.filter((owner) => !confirmedBy.includes(owner));
const possibleRevoke = owners
.filter((owner) => addresses.includes(owner))
.filter((owner) => confirmedBy.includes(owner));
return (
<tr
className={ className }
key={ `actions_${operation}` }
>
<td />
<td colSpan={ 3 }>
<div className={ styles.actions }>
<Dropdown
label={
<FormattedMessage
id='wallet.confirmations.buttons.confirmAs'
defaultMessage='Confirm As...'
/>
}
onChange={ this.handleConfirm }
options={
possibleConfirm.map((address) => this.renderAccountItem(address))
}
/>
<Dropdown
label={
<FormattedMessage
id='wallet.confirmations.buttons.revokeAs'
defaultMessage='Revoke As...'
/>
}
onChange={ this.handleRevoke }
oprions={
possibleRevoke.map((address) => this.renderAccountItem(address))
}
/>
</div>
</td>
<td />
</tr>
);
}
renderAccountItem (address) {
const account = this.props.accounts[address];
const name = account.name.toUpperCase() || account.address;
return {
key: address,
label: (
<div className={ styles.accountItem }>
<IdentityIcon
address={ address }
center
inline
/>
<span>{ name }</span>
</div>
),
value: name
};
}
renderProgress (confirmation) {
const { require } = this.props;
const { operation, confirmedBy, pending } = confirmation;
const style = { borderRadius: 0 };
return (
<tr key={ `prog_${operation}` }>
<td
colSpan={ 5 }
style={ { padding: 0, paddingTop: '1em' } }
>
<div
data-tip
data-for={ `tooltip_${operation}` }
data-effect='solid'
>
{
pending
? (
<Progress style={ style } />
)
: (
<Progress
isDeterminate
max={ require.toNumber() }
value={ confirmedBy.length }
style={ style }
/>
)
}
</div>
<ReactTooltip id={ `tooltip_${operation}` }>
<FormattedMessage
id='wallet.confirmations.tooltip.confirmed'
defaultMessage='Confirmed by {number}/{required} owners'
values={ {
required: require.toNumber(),
number: confirmedBy.length
} }
/>
</ReactTooltip>
</td>
</tr>
);
}
renderTransactionRow (confirmation, className) {
const { address, netVersion } = this.props;
const { operation, transactionHash, blockNumber, value, to, data } = confirmation;
if (value && to && data) {
return (
<TxRow
address={ address }
className={ className }
historic={ false }
netVersion={ netVersion }
key={ operation }
tx={ {
hash: transactionHash,
blockNumber,
from: address,
to,
value,
input: bytesToHex(data)
} }
/>
);
}
return (
<tr
className={ className }
key={ operation }
>
<td colSpan={ 5 }>
<code>{ operation }</code>
</td>
</tr>
);
}
renderConfirmedBy (confirmation, className) {
const { operation, confirmedBy } = confirmation;
return (
<tr key={ `details_${operation}` } className={ className }>
<td colSpan={ 5 } style={ { padding: 0 } }>
<div
data-tip
data-for={ `tooltip_${operation}` }
data-effect='solid'
className={ styles.confirmed }
>
{
confirmedBy.map((owner) => (
<InputAddress
key={ owner }
value={ owner }
allowCopy={ false }
hideUnderline
disabled
small
text
/>
))
}
</div>
</td>
</tr>
);
}
}