// 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 . import { observe } from 'mobx'; import { observer } from 'mobx-react'; import { uniq, isEqual, pickBy } from 'lodash'; import React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { Link } from 'react-router'; import { bindActionCreators } from 'redux'; import HardwareStore from '~/mobx/hardwareStore'; import { CreateAccount, CreateWallet, ExportAccount } from '~/modals'; import { Actionbar, ActionbarSearch, ActionbarSort, Button, Page, Tooltip } from '~/ui'; import { AddIcon, KeyIcon, FileDownloadIcon } from '~/ui/Icons'; import { setVisibleAccounts } from '~/redux/providers/personalActions'; import List from './List'; import styles from './accounts.css'; @observer class Accounts extends Component { static contextTypes = { api: PropTypes.object } static propTypes = { accounts: PropTypes.object.isRequired, accountsInfo: PropTypes.object.isRequired, hasAccounts: PropTypes.bool.isRequired, setVisibleAccounts: PropTypes.func.isRequired } hwstore = HardwareStore.get(this.context.api); state = { _observeCancel: null, addressBook: false, newDialog: false, newWalletDialog: false, newExportDialog: false, sortOrder: '', searchValues: [], searchTokens: [], show: false } componentWillMount () { // FIXME: Messy, figure out what it fixes and do it elegantly window.setTimeout(() => { this.setState({ show: true }); }, 100); this.setVisibleAccounts(); this.setState({ _observeCancel: observe(this.hwstore, 'wallets', this.onHardwareChange, true) }); } componentWillReceiveProps (nextProps) { const prevAddresses = Object.keys(this.props.accounts); const nextAddresses = Object.keys(nextProps.accounts); if (prevAddresses.length !== nextAddresses.length || !isEqual(prevAddresses.sort(), nextAddresses.sort())) { this.setVisibleAccounts(nextProps); } } componentWillUnmount () { this.props.setVisibleAccounts([]); this.state._observeCancel(); } setVisibleAccounts (props = this.props) { const { accounts, setVisibleAccounts } = props; setVisibleAccounts(Object.keys(accounts)); } render () { return (
{ this.renderNewDialog() } { this.renderNewWalletDialog() } { this.renderNewExportDialog() } { this.renderActionbar() } } /> { this.renderExternalAccounts() } { this.renderWallets() } { this.renderAccounts() }
); } renderLoading (object) { const loadings = ((object && Object.keys(object)) || []).map((_, idx) => (
)); return (
{ loadings }
); } renderAccounts () { const { accounts } = this.props; const _accounts = pickBy(accounts, (account) => account.uuid); const _hasAccounts = Object.keys(_accounts).length > 0; if (!this.state.show) { return this.renderLoading(_accounts); } const { searchValues, sortOrder } = this.state; return ( ); } renderWallets () { const { accounts } = this.props; const wallets = pickBy(accounts, (account) => account.wallet); const hasWallets = Object.keys(wallets).length > 0; if (!hasWallets) { return null; } if (!this.state.show) { return this.renderLoading(wallets); } const { searchValues, sortOrder } = this.state; return ( ); } renderExternalAccounts () { const { accounts } = this.props; const { wallets } = this.hwstore; const hardware = pickBy(accounts, (account) => account.hardware); const external = pickBy(accounts, (account) => account.external); const all = Object.assign({}, hardware, external); if (Object.keys(all).length === 0) { return null; } if (!this.state.show) { return this.renderLoading(hardware); } const { searchValues, sortOrder } = this.state; const disabled = Object .keys(hardware) .filter((address) => !wallets[address]) .reduce((result, address) => { result[address] = true; return result; }, {}); return ( ); } renderSearchButton () { const onChange = (searchTokens, searchValues) => { this.setState({ searchTokens, searchValues }); }; return ( ); } renderSortButton () { const onChange = (sortOrder) => { this.setState({ sortOrder }); }; return ( ); } renderActionbar () { const buttons = [