2017-02-20 16:40:01 +01:00
|
|
|
// 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 { observer } from 'mobx-react';
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-02-20 16:40:01 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2017-05-12 12:06:16 +02:00
|
|
|
import { Button, Container, Page, SectionList, VaultCard } from '@parity/ui';
|
|
|
|
import { AccountsIcon, AddIcon, EditIcon, LockedIcon, UnlockedIcon } from '@parity/ui/Icons';
|
2017-02-20 16:40:01 +01:00
|
|
|
|
2017-04-28 11:21:05 +02:00
|
|
|
import VaultAccounts from './VaultAccounts';
|
|
|
|
import VaultCreate from './VaultCreate';
|
|
|
|
import VaultLock from './VaultLock';
|
|
|
|
import VaultMeta from './VaultMeta';
|
|
|
|
import VaultUnlock from './VaultUnlock';
|
|
|
|
|
2017-02-20 16:40:01 +01:00
|
|
|
import Store from './store';
|
|
|
|
import styles from './vaults.css';
|
|
|
|
|
|
|
|
@observer
|
|
|
|
class Vaults extends Component {
|
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
accounts: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
static Store = Store;
|
|
|
|
|
|
|
|
vaultStore = Store.get(this.context.api);
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
return this.vaultStore.loadVaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<Page
|
|
|
|
buttons={ [
|
|
|
|
<Button
|
|
|
|
icon={ <AddIcon /> }
|
|
|
|
key='create'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.button.add'
|
|
|
|
defaultMessage='create vault'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ this.onOpenCreate }
|
|
|
|
/>
|
|
|
|
] }
|
|
|
|
title={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.title'
|
|
|
|
defaultMessage='Vault Management'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<VaultAccounts vaultStore={ this.vaultStore } />
|
|
|
|
<VaultCreate vaultStore={ this.vaultStore } />
|
|
|
|
<VaultLock vaultStore={ this.vaultStore } />
|
2017-02-24 18:05:04 +01:00
|
|
|
<VaultMeta vaultStore={ this.vaultStore } />
|
2017-02-20 16:40:01 +01:00
|
|
|
<VaultUnlock vaultStore={ this.vaultStore } />
|
|
|
|
{ this.renderList() }
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderList () {
|
|
|
|
const { vaults } = this.vaultStore;
|
|
|
|
|
|
|
|
if (!vaults || !vaults.length) {
|
|
|
|
return (
|
|
|
|
<Container className={ styles.empty }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.empty'
|
|
|
|
defaultMessage='There are currently no vaults to display.'
|
|
|
|
/>
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SectionList
|
|
|
|
items={ vaults }
|
|
|
|
renderItem={ this.renderVault }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderVault = (vault) => {
|
|
|
|
const { accounts } = this.props;
|
|
|
|
const { isOpen, name } = vault;
|
|
|
|
const vaultAccounts = Object
|
|
|
|
.keys(accounts)
|
|
|
|
.filter((address) => accounts[address].uuid && accounts[address].meta.vault === vault.name);
|
|
|
|
|
|
|
|
const onClickAccounts = () => {
|
|
|
|
this.onOpenAccounts(name);
|
|
|
|
return false;
|
|
|
|
};
|
2017-02-24 18:05:04 +01:00
|
|
|
const onClickEdit = () => {
|
|
|
|
this.onOpenEdit(name);
|
|
|
|
return false;
|
|
|
|
};
|
2017-02-20 16:40:01 +01:00
|
|
|
const onClickOpen = () => {
|
|
|
|
isOpen
|
|
|
|
? this.onOpenLockVault(name)
|
|
|
|
: this.onOpenUnlockVault(name);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<VaultCard
|
|
|
|
accounts={ vaultAccounts }
|
|
|
|
buttons={
|
|
|
|
isOpen
|
|
|
|
? [
|
|
|
|
<Button
|
|
|
|
icon={ <AccountsIcon /> }
|
|
|
|
key='accounts'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.button.accounts'
|
|
|
|
defaultMessage='accounts'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ onClickAccounts }
|
|
|
|
/>,
|
2017-02-24 18:05:04 +01:00
|
|
|
<Button
|
|
|
|
icon={ <EditIcon /> }
|
|
|
|
key='edit'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.button.edit'
|
|
|
|
defaultMessage='edit'
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ onClickEdit }
|
|
|
|
/>,
|
2017-02-20 16:40:01 +01:00
|
|
|
<Button
|
|
|
|
icon={ <LockedIcon /> }
|
|
|
|
key='close'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.button.close'
|
2017-02-24 18:05:04 +01:00
|
|
|
defaultMessage='close'
|
2017-02-20 16:40:01 +01:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ onClickOpen }
|
|
|
|
/>
|
|
|
|
]
|
|
|
|
: [
|
|
|
|
<Button
|
|
|
|
icon={ <UnlockedIcon /> }
|
|
|
|
key='open'
|
|
|
|
label={
|
|
|
|
<FormattedMessage
|
|
|
|
id='vaults.button.open'
|
2017-02-24 18:05:04 +01:00
|
|
|
defaultMessage='open'
|
2017-02-20 16:40:01 +01:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
onClick={ onClickOpen }
|
|
|
|
/>
|
|
|
|
]
|
|
|
|
}
|
|
|
|
vault={ vault }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onOpenAccounts = (name) => {
|
|
|
|
this.vaultStore.openAccountsModal(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
onOpenCreate = () => {
|
|
|
|
this.vaultStore.openCreateModal();
|
|
|
|
}
|
|
|
|
|
2017-02-24 18:05:04 +01:00
|
|
|
onOpenEdit = (name) => {
|
|
|
|
this.vaultStore.openMetaModal(name);
|
|
|
|
}
|
|
|
|
|
2017-02-20 16:40:01 +01:00
|
|
|
onOpenLockVault = (name) => {
|
|
|
|
this.vaultStore.openLockModal(name);
|
|
|
|
}
|
|
|
|
|
2017-02-24 18:05:04 +01:00
|
|
|
onOpenMeta = (name) => {
|
|
|
|
this.vaultStore.openMetaModal(name);
|
|
|
|
}
|
|
|
|
|
2017-02-20 16:40:01 +01:00
|
|
|
onOpenUnlockVault = (name) => {
|
|
|
|
this.vaultStore.openUnlockModal(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
const { accounts } = state.personal;
|
|
|
|
|
|
|
|
return { accounts };
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
null
|
|
|
|
)(Vaults);
|