2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-06 09:37:59 +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/>.
|
|
|
|
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-01-26 16:11:04 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-12-06 09:37:59 +01:00
|
|
|
|
2017-04-21 11:40:22 +02:00
|
|
|
import { fromWei } from '@parity/api/util/wei';
|
2017-05-12 12:06:16 +02:00
|
|
|
import { CompletedStep, IdentityIcon, CopyToClipboard } from '@parity/ui';
|
2016-12-06 09:37:59 +01:00
|
|
|
|
|
|
|
import styles from '../createWallet.css';
|
|
|
|
|
|
|
|
export default class WalletInfo extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
accounts: PropTypes.object.isRequired,
|
|
|
|
account: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
address: PropTypes.string.isRequired,
|
|
|
|
owners: PropTypes.array.isRequired,
|
|
|
|
required: PropTypes.oneOfType([
|
|
|
|
PropTypes.string,
|
2016-12-10 15:30:39 +01:00
|
|
|
PropTypes.object,
|
2016-12-06 09:37:59 +01:00
|
|
|
PropTypes.number
|
|
|
|
]).isRequired,
|
|
|
|
daylimit: PropTypes.oneOfType([
|
|
|
|
PropTypes.string,
|
2016-12-10 15:30:39 +01:00
|
|
|
PropTypes.object,
|
2016-12-06 09:37:59 +01:00
|
|
|
PropTypes.number
|
2016-12-07 12:47:44 +01:00
|
|
|
]).isRequired,
|
|
|
|
|
|
|
|
deployed: PropTypes.bool
|
2016-12-06 09:37:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2016-12-07 12:47:44 +01:00
|
|
|
const { address, required, daylimit, name, deployed } = this.props;
|
2016-12-06 09:37:59 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<CompletedStep>
|
2016-12-07 12:47:44 +01:00
|
|
|
<div>
|
2017-01-26 16:11:04 +01:00
|
|
|
<span>
|
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.created'
|
|
|
|
defaultMessage='{name} has been {deployedOrAdded} at '
|
|
|
|
values={ {
|
|
|
|
name: <code>{ name }</code>,
|
|
|
|
deployedOrAdded: deployed
|
|
|
|
? (
|
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.deployed'
|
|
|
|
defaultMessage='deployed'
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
: (
|
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.added'
|
|
|
|
defaultMessage='added'
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
</span>
|
2016-12-07 12:47:44 +01:00
|
|
|
</div>
|
2016-12-06 09:37:59 +01:00
|
|
|
<div>
|
2017-01-26 16:11:04 +01:00
|
|
|
<CopyToClipboard
|
|
|
|
data={ address }
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.copyAddress'
|
|
|
|
defaultMessage='copy address to clipboard'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<IdentityIcon
|
|
|
|
address={ address }
|
|
|
|
className={ styles.identityicon }
|
|
|
|
center
|
|
|
|
inline
|
|
|
|
/>
|
2016-12-06 09:37:59 +01:00
|
|
|
<div className={ styles.address }>{ address }</div>
|
|
|
|
</div>
|
2017-01-26 16:11:04 +01:00
|
|
|
<div>
|
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.owners'
|
|
|
|
defaultMessage='The following are wallet owners'
|
|
|
|
/>
|
|
|
|
</div>
|
2016-12-06 09:37:59 +01:00
|
|
|
<div>
|
|
|
|
{ this.renderOwners() }
|
|
|
|
</div>
|
|
|
|
<p>
|
2017-01-26 16:11:04 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.numOwners'
|
|
|
|
defaultMessage='{numOwners} owners are required to confirm a transaction.'
|
|
|
|
values={ {
|
|
|
|
numOwners: <code>{ required }</code>
|
|
|
|
} }
|
|
|
|
/>
|
2016-12-06 09:37:59 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-01-26 16:11:04 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='createWallet.info.dayLimit'
|
|
|
|
defaultMessage='The daily limit is set to {dayLimit} ETH.'
|
|
|
|
values={ {
|
|
|
|
dayLimit: <code>{ fromWei(daylimit).toFormat() }</code>
|
|
|
|
} }
|
|
|
|
/>
|
2016-12-06 09:37:59 +01:00
|
|
|
</p>
|
|
|
|
</CompletedStep>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderOwners () {
|
2016-12-07 12:47:44 +01:00
|
|
|
const { account, owners, deployed } = this.props;
|
2016-12-06 09:37:59 +01:00
|
|
|
|
2017-01-26 16:11:04 +01:00
|
|
|
return []
|
|
|
|
.concat(deployed ? account : null, owners)
|
|
|
|
.filter((account) => account)
|
|
|
|
.map((address, id) => {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={ styles.owner }
|
|
|
|
key={ id }
|
|
|
|
>
|
|
|
|
<IdentityIcon
|
|
|
|
address={ address }
|
|
|
|
className={ styles.identityicon }
|
|
|
|
center
|
|
|
|
inline
|
|
|
|
/>
|
|
|
|
<div className={ styles.address }>
|
|
|
|
{ this.addressToString(address) }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|
2016-12-06 09:37:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
addressToString (address) {
|
|
|
|
const { accounts } = this.props;
|
|
|
|
|
|
|
|
if (accounts[address]) {
|
|
|
|
return accounts[address].name || address;
|
|
|
|
}
|
|
|
|
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
}
|