2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-08 15:53:29 +01:00
|
|
|
// 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, PropTypes } from 'react';
|
2017-02-10 18:27:18 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-12-08 15:53:29 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { observer } from 'mobx-react';
|
|
|
|
import { pick } from 'lodash';
|
|
|
|
|
|
|
|
import ActionDone from 'material-ui/svg-icons/action/done';
|
|
|
|
import ContentClear from 'material-ui/svg-icons/content/clear';
|
|
|
|
import NavigationArrowForward from 'material-ui/svg-icons/navigation/arrow-forward';
|
|
|
|
|
2017-02-10 18:27:18 +01:00
|
|
|
import { Button, Modal, TxHash, BusyStep, Form, TypedInput, Input, InputAddress, AddressSelect } from '~/ui';
|
2016-12-08 15:53:29 +01:00
|
|
|
import { fromWei } from '~/api/util/wei';
|
|
|
|
|
|
|
|
import WalletSettingsStore from './walletSettingsStore.js';
|
|
|
|
import styles from './walletSettings.css';
|
|
|
|
|
|
|
|
@observer
|
|
|
|
class WalletSettings extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2016-12-30 12:28:12 +01:00
|
|
|
accountsInfo: PropTypes.object.isRequired,
|
2016-12-08 15:53:29 +01:00
|
|
|
wallet: PropTypes.object.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
senders: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
store = new WalletSettingsStore(this.context.api, this.props.wallet);
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { stage, steps, waiting, rejected } = this.store;
|
|
|
|
|
|
|
|
if (rejected) {
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
visible
|
2017-02-10 18:27:18 +01:00
|
|
|
title={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.rejected.title'
|
|
|
|
defaultMessage='rejected'
|
|
|
|
/>
|
|
|
|
}
|
2016-12-08 15:53:29 +01:00
|
|
|
actions={ this.renderDialogActions() }
|
|
|
|
>
|
|
|
|
<BusyStep
|
2017-02-10 18:27:18 +01:00
|
|
|
title={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.rejected.busyStep.title'
|
|
|
|
defaultMessage='The modifications have been rejected'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
state={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.rejected.busyStep.state'
|
|
|
|
defaultMessage='The wallet settings will not be modified. You can safely close this window.'
|
|
|
|
/>
|
|
|
|
}
|
2016-12-08 15:53:29 +01:00
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
visible
|
|
|
|
actions={ this.renderDialogActions() }
|
|
|
|
current={ stage }
|
|
|
|
steps={ steps.map((s) => s.title) }
|
|
|
|
waiting={ waiting }
|
|
|
|
>
|
|
|
|
{ this.renderPage() }
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderPage () {
|
|
|
|
const { step } = this.store;
|
|
|
|
|
|
|
|
switch (step) {
|
|
|
|
case 'SENDING':
|
|
|
|
return (
|
|
|
|
<BusyStep
|
|
|
|
title='The modifications are currently being sent'
|
|
|
|
state={ this.store.deployState }
|
|
|
|
>
|
|
|
|
{
|
|
|
|
this.store.requests.map((req) => {
|
|
|
|
const key = req.id;
|
|
|
|
|
|
|
|
if (req.txhash) {
|
|
|
|
return (<TxHash key={ key } hash={ req.txhash } />);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.rejected) {
|
|
|
|
return (<p key={ key }>The transaction #{parseInt(key, 16)} has been rejected</p>);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</BusyStep>
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'CONFIRMATION':
|
|
|
|
const { changes } = this.store;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2016-12-19 13:16:59 +01:00
|
|
|
{ this.renderChanges(changes) }
|
2016-12-08 15:53:29 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
default:
|
|
|
|
case 'EDIT':
|
2017-02-10 18:27:18 +01:00
|
|
|
const { errors, fromString, wallet } = this.store;
|
2016-12-30 12:28:12 +01:00
|
|
|
const { accountsInfo, senders } = this.props;
|
2016-12-08 15:53:29 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Form>
|
|
|
|
<p>
|
2017-02-10 18:27:18 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.edit.message'
|
|
|
|
defaultMessage={
|
|
|
|
`In order to edit this contract's settings, at
|
|
|
|
least { owners, number } { owners, plural,
|
|
|
|
one { owner }
|
|
|
|
other { owners }
|
|
|
|
} have to
|
|
|
|
send the very same modifications. You can paste a stringified version
|
|
|
|
of the modifications here.`
|
|
|
|
}
|
|
|
|
values={ {
|
|
|
|
owners: this.store.initialWallet.require.toNumber()
|
|
|
|
} }
|
|
|
|
/>
|
2016-12-08 15:53:29 +01:00
|
|
|
</p>
|
|
|
|
|
2017-02-10 18:27:18 +01:00
|
|
|
<Input
|
|
|
|
hint='[ ... ]'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.fromString.label'
|
|
|
|
defaultMessage='modifications'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onChange={ this.store.onModificationsStringChange }
|
|
|
|
/>
|
|
|
|
|
2016-12-08 15:53:29 +01:00
|
|
|
<AddressSelect
|
2017-02-10 18:27:18 +01:00
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.sender.label'
|
|
|
|
defaultMessage='from account (wallet owner)'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
hint={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.sender.hint'
|
|
|
|
defaultMessage='send modifications as this owner'
|
|
|
|
/>
|
|
|
|
}
|
2016-12-08 15:53:29 +01:00
|
|
|
value={ wallet.sender }
|
|
|
|
error={ errors.sender }
|
|
|
|
onChange={ this.store.onSenderChange }
|
|
|
|
accounts={ senders }
|
|
|
|
/>
|
|
|
|
|
2017-02-10 18:27:18 +01:00
|
|
|
<br />
|
2016-12-08 15:53:29 +01:00
|
|
|
|
2017-02-10 18:27:18 +01:00
|
|
|
{
|
|
|
|
fromString
|
|
|
|
? null
|
|
|
|
: (
|
|
|
|
<div>
|
|
|
|
<TypedInput
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.owners.label'
|
|
|
|
defaultMessage='other wallet owners'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
value={ wallet.owners.slice() }
|
|
|
|
onChange={ this.store.onOwnersChange }
|
|
|
|
accounts={ accountsInfo }
|
|
|
|
param='address[]'
|
|
|
|
/>
|
2016-12-08 15:53:29 +01:00
|
|
|
|
2017-02-10 18:27:18 +01:00
|
|
|
<div className={ styles.splitInput }>
|
|
|
|
<TypedInput
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.required.label'
|
|
|
|
defaultMessage='required owners'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
hint={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.required.hint'
|
|
|
|
defaultMessage='number of required owners to accept a transaction'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
error={ errors.require }
|
|
|
|
min={ 1 }
|
|
|
|
onChange={ this.store.onRequireChange }
|
|
|
|
max={ wallet.owners.length }
|
|
|
|
param='uint'
|
|
|
|
value={ wallet.require }
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TypedInput
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.daylimit.label'
|
|
|
|
defaultMessage='wallet day limit'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
hint={
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.modifications.daylimit.hint'
|
|
|
|
defaultMessage='amount of ETH spendable without confirmations'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
value={ wallet.dailylimit }
|
|
|
|
error={ errors.dailylimit }
|
|
|
|
onChange={ this.store.onDailylimitChange }
|
|
|
|
param='uint'
|
|
|
|
isEth
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2016-12-08 15:53:29 +01:00
|
|
|
</Form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderChanges (changes) {
|
2016-12-19 13:16:59 +01:00
|
|
|
if (changes.length === 0) {
|
|
|
|
return (
|
2017-02-10 18:27:18 +01:00
|
|
|
<p>
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.changes.none'
|
|
|
|
defaultMessage='No modifications have been made to the Wallet settings.'
|
|
|
|
/>
|
|
|
|
</p>
|
2016-12-19 13:16:59 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const modifications = changes.map((change, index) => (
|
2016-12-08 15:53:29 +01:00
|
|
|
<div key={ `${change.type}_${index}` }>
|
|
|
|
{ this.renderChange(change) }
|
|
|
|
</div>
|
|
|
|
));
|
2016-12-19 13:16:59 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2017-02-10 18:27:18 +01:00
|
|
|
<p className={ styles.modifications }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.changes.modificationString'
|
|
|
|
defaultMessage={
|
|
|
|
`For your modifications to be taken into account,
|
|
|
|
other owners have to send the same modifications. They can paste
|
|
|
|
this string to make it easier:`
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</p>
|
|
|
|
<Input
|
|
|
|
allowCopy
|
|
|
|
label='modifications'
|
|
|
|
readOnly
|
|
|
|
value={ this.store.changesToString() }
|
|
|
|
/>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<FormattedMessage
|
|
|
|
id='walletSettings.changes.overview'
|
|
|
|
defaultMessage={
|
|
|
|
`You are about to make the following modifications`
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</p>
|
2016-12-19 13:16:59 +01:00
|
|
|
{ modifications }
|
|
|
|
</div>
|
|
|
|
);
|
2016-12-08 15:53:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
renderChange (change) {
|
2016-12-30 12:28:12 +01:00
|
|
|
const { accountsInfo } = this.props;
|
2016-12-08 15:53:29 +01:00
|
|
|
|
|
|
|
switch (change.type) {
|
|
|
|
case 'dailylimit':
|
|
|
|
return (
|
|
|
|
<div className={ styles.change }>
|
|
|
|
<div className={ styles.label }>Change Daily Limit</div>
|
|
|
|
<div>
|
|
|
|
<span> from </span>
|
|
|
|
<code> { fromWei(change.initial).toFormat() }</code>
|
|
|
|
<span className={ styles.eth } />
|
|
|
|
<span> to </span>
|
|
|
|
<code> { fromWei(change.value).toFormat() }</code>
|
|
|
|
<span className={ styles.eth } />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'require':
|
|
|
|
return (
|
|
|
|
<div className={ styles.change }>
|
|
|
|
<div className={ styles.label }>Change Required Owners</div>
|
|
|
|
<div>
|
|
|
|
<span> from </span>
|
|
|
|
<code> { change.initial.toNumber() }</code>
|
|
|
|
<span> to </span>
|
|
|
|
<code> { change.value.toNumber() }</code>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'add_owner':
|
|
|
|
return (
|
|
|
|
<div className={ [ styles.change, styles.add ].join(' ') }>
|
|
|
|
<div className={ styles.label }>Add Owner</div>
|
|
|
|
<div>
|
|
|
|
<InputAddress
|
|
|
|
disabled
|
|
|
|
value={ change.value }
|
2016-12-30 12:28:12 +01:00
|
|
|
accounts={ accountsInfo }
|
2016-12-08 15:53:29 +01:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
case 'remove_owner':
|
|
|
|
return (
|
|
|
|
<div className={ [ styles.change, styles.remove ].join(' ') }>
|
|
|
|
<div className={ styles.label }>Remove Owner</div>
|
|
|
|
<div>
|
|
|
|
<InputAddress
|
|
|
|
disabled
|
|
|
|
value={ change.value }
|
2016-12-30 12:28:12 +01:00
|
|
|
accounts={ accountsInfo }
|
2016-12-08 15:53:29 +01:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderDialogActions () {
|
|
|
|
const { onClose } = this.props;
|
|
|
|
const { step, hasErrors, rejected, onNext, send, done } = this.store;
|
|
|
|
|
|
|
|
const cancelBtn = (
|
|
|
|
<Button
|
|
|
|
icon={ <ContentClear /> }
|
|
|
|
label='Cancel'
|
|
|
|
onClick={ onClose }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const closeBtn = (
|
|
|
|
<Button
|
|
|
|
icon={ <ContentClear /> }
|
|
|
|
label='Close'
|
|
|
|
onClick={ onClose }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const sendingBtn = (
|
|
|
|
<Button
|
|
|
|
icon={ <ActionDone /> }
|
|
|
|
label='Sending...'
|
|
|
|
disabled
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const nextBtn = (
|
|
|
|
<Button
|
|
|
|
icon={ <NavigationArrowForward /> }
|
|
|
|
label='Next'
|
|
|
|
onClick={ onNext }
|
|
|
|
disabled={ hasErrors }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
const sendBtn = (
|
|
|
|
<Button
|
|
|
|
icon={ <NavigationArrowForward /> }
|
|
|
|
label='Send'
|
|
|
|
onClick={ send }
|
|
|
|
disabled={ hasErrors }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
if (rejected) {
|
|
|
|
return [ closeBtn ];
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (step) {
|
|
|
|
case 'SENDING':
|
|
|
|
return done ? [ closeBtn ] : [ closeBtn, sendingBtn ];
|
|
|
|
|
|
|
|
case 'CONFIRMATION':
|
2016-12-19 13:16:59 +01:00
|
|
|
const { changes } = this.store;
|
|
|
|
|
|
|
|
if (changes.length === 0) {
|
|
|
|
return [ closeBtn ];
|
|
|
|
}
|
|
|
|
|
2016-12-08 15:53:29 +01:00
|
|
|
return [ cancelBtn, sendBtn ];
|
|
|
|
|
|
|
|
default:
|
|
|
|
case 'TYPE':
|
|
|
|
return [ cancelBtn, nextBtn ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapStateToProps (initState, initProps) {
|
|
|
|
const { accountsInfo, accounts } = initState.personal;
|
|
|
|
const { owners } = initProps.wallet;
|
|
|
|
|
|
|
|
const senders = pick(accounts, owners);
|
|
|
|
|
|
|
|
return () => {
|
2016-12-30 12:28:12 +01:00
|
|
|
return { accountsInfo, senders };
|
2016-12-08 15:53:29 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-01-18 13:05:01 +01:00
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
null
|
|
|
|
)(WalletSettings);
|