openethereum/js/packages/dapp-vaults/vaults.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

224 lines
5.6 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 { observer } from 'mobx-react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import { Button, Container, Page, SectionList, VaultCard } from '@parity/ui';
import { AccountsIcon, AddIcon, EditIcon, LockedIcon, UnlockedIcon } from '@parity/ui/Icons';
import VaultAccounts from './VaultAccounts';
import VaultCreate from './VaultCreate';
import VaultLock from './VaultLock';
import VaultMeta from './VaultMeta';
import VaultUnlock from './VaultUnlock';
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 } />
<VaultMeta vaultStore={ this.vaultStore } />
<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;
};
const onClickEdit = () => {
this.onOpenEdit(name);
return false;
};
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 }
/>,
<Button
icon={ <EditIcon /> }
key='edit'
label={
<FormattedMessage
id='vaults.button.edit'
defaultMessage='edit'
/>
}
onClick={ onClickEdit }
/>,
<Button
icon={ <LockedIcon /> }
key='close'
label={
<FormattedMessage
id='vaults.button.close'
defaultMessage='close'
/>
}
onClick={ onClickOpen }
/>
]
: [
<Button
icon={ <UnlockedIcon /> }
key='open'
label={
<FormattedMessage
id='vaults.button.open'
defaultMessage='open'
/>
}
onClick={ onClickOpen }
/>
]
}
vault={ vault }
/>
);
}
onOpenAccounts = (name) => {
this.vaultStore.openAccountsModal(name);
}
onOpenCreate = () => {
this.vaultStore.openCreateModal();
}
onOpenEdit = (name) => {
this.vaultStore.openMetaModal(name);
}
onOpenLockVault = (name) => {
this.vaultStore.openLockModal(name);
}
onOpenMeta = (name) => {
this.vaultStore.openMetaModal(name);
}
onOpenUnlockVault = (name) => {
this.vaultStore.openUnlockModal(name);
}
}
function mapStateToProps (state) {
const { accounts } = state.personal;
return { accounts };
}
export default connect(
mapStateToProps,
null
)(Vaults);