// 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 { uniq, isEqual, pickBy, omitBy } 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 List from './List'; import { CreateAccount, CreateWallet } from '~/modals'; import { Actionbar, ActionbarExport, ActionbarSearch, ActionbarSort, Button, Page, Tooltip } from '~/ui'; import { AddIcon, KeyIcon } from '~/ui/Icons'; import { setVisibleAccounts } from '~/redux/providers/personalActions'; import styles from './accounts.css'; class Accounts extends Component { static contextTypes = { api: PropTypes.object } static propTypes = { setVisibleAccounts: PropTypes.func.isRequired, accounts: PropTypes.object.isRequired, hasAccounts: PropTypes.bool.isRequired, balances: PropTypes.object } state = { addressBook: false, newDialog: false, newWalletDialog: 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(); } 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([]); } setVisibleAccounts (props = this.props) { const { accounts, setVisibleAccounts } = props; const addresses = Object.keys(accounts); setVisibleAccounts(addresses); } render () { return (
{ this.renderNewDialog() } { this.renderNewWalletDialog() } { this.renderActionbar() } } /> { this.renderWallets() } { this.renderAccounts() }
); } renderLoading (object) { const loadings = ((object && Object.keys(object)) || []).map((_, idx) => (
)); return (
{ loadings }
); } renderAccounts () { const { accounts, balances } = this.props; const _accounts = omitBy(accounts, (a) => a.wallet); const _hasAccounts = Object.keys(_accounts).length > 0; if (!this.state.show) { return this.renderLoading(_accounts); } const { searchValues, sortOrder } = this.state; return ( ); } renderWallets () { const { accounts, balances } = this.props; const wallets = pickBy(accounts, (a) => a.wallet); const hasWallets = Object.keys(wallets).length > 0; if (!this.state.show) { return this.renderLoading(wallets); } const { searchValues, sortOrder } = this.state; if (!wallets || Object.keys(wallets).length === 0) { return null; } return ( ); } renderSearchButton () { const onChange = (searchTokens, searchValues) => { this.setState({ searchTokens, searchValues }); }; return ( ); } renderSortButton () { const onChange = (sortOrder) => { this.setState({ sortOrder }); }; return ( ); } renderActionbar () { const { accounts } = this.props; const buttons = [