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/>.
|
|
|
|
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
|
2016-12-07 12:47:44 +01:00
|
|
|
import { Container, InputAddress } from '~/ui';
|
2016-12-06 09:37:59 +01:00
|
|
|
|
|
|
|
import styles from '../wallet.css';
|
|
|
|
|
|
|
|
export default class WalletDetails extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
owners: PropTypes.array,
|
|
|
|
require: PropTypes.object,
|
2016-12-07 12:47:44 +01:00
|
|
|
className: PropTypes.string
|
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
className: ''
|
2016-12-06 09:37:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2016-12-07 12:47:44 +01:00
|
|
|
const { className } = this.props;
|
2016-12-06 09:37:59 +01:00
|
|
|
|
2016-12-07 12:47:44 +01:00
|
|
|
return (
|
|
|
|
<div className={ [ styles.details, className ].join(' ') }>
|
2016-12-06 09:37:59 +01:00
|
|
|
<Container title='Details'>
|
|
|
|
{ this.renderDetails() }
|
2016-12-07 12:47:44 +01:00
|
|
|
{ this.renderOwners() }
|
2016-12-06 09:37:59 +01:00
|
|
|
</Container>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderOwners () {
|
|
|
|
const { owners } = this.props;
|
|
|
|
|
|
|
|
if (!owners) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-12-30 12:28:12 +01:00
|
|
|
const ownersList = owners.map((owner, idx) => {
|
|
|
|
const address = typeof owner === 'object'
|
|
|
|
? owner.address
|
|
|
|
: owner;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<InputAddress
|
|
|
|
key={ `${idx}_${address}` }
|
|
|
|
value={ address }
|
|
|
|
disabled
|
|
|
|
text
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
});
|
2016-12-06 09:37:59 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{ ownersList }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderDetails () {
|
2016-12-07 12:47:44 +01:00
|
|
|
const { require } = this.props;
|
2016-12-06 09:37:59 +01:00
|
|
|
|
2016-12-07 12:47:44 +01:00
|
|
|
if (!require) {
|
2016-12-06 09:37:59 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
<span>This wallet requires at least</span>
|
|
|
|
<span className={ styles.detail }>{ require.toFormat() } owners</span>
|
|
|
|
<span>to validate any action (transactions, modifications).</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|