// Copyright 2015, 2016 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 React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { Link } from 'react-router'; import { Toolbar, ToolbarGroup } from 'material-ui/Toolbar'; import { Tab as MUITab } from 'material-ui/Tabs'; import { isEqual } from 'lodash'; import { Badge, Tooltip } from '~/ui'; import imagesEthcoreBlock from '~/../assets/images/parity-logo-white-no-text.svg'; import styles from './tabBar.css'; class Tab extends Component { static propTypes = { children: PropTypes.node, pendings: PropTypes.number, view: PropTypes.object }; render () { const { view, children } = this.props; return ( { children } ); } renderLabel (id, bubble) { return (
{ bubble }
); } renderSignerLabel (id) { const { pendings } = this.props; let bubble; if (pendings) { bubble = ( ); } return this.renderLabel(id, bubble); } } class TabBar extends Component { static contextTypes = { router: PropTypes.object.isRequired }; static propTypes = { isTest: PropTypes.bool, netChain: PropTypes.string, pending: PropTypes.array, views: PropTypes.array.isRequired }; static defaultProps = { pending: [] }; render () { return ( { this.renderLogo() } { this.renderTabs() } { this.renderLast() } ); } renderLogo () { return (
); } renderLast () { return (
); } renderTabs () { const { views, pending } = this.props; const items = views .map((view, index) => { const body = (view.id === 'accounts') ? ( ) : null; return ( { body } ); }); return (
{ items }
); } } function mapStateToProps (initState) { const { views } = initState.settings; let filteredViewIds = Object .keys(views) .filter((id) => views[id].fixed || views[id].active); let filteredViews = filteredViewIds.map((id) => ({ ...views[id], id })); return (state) => { const { views } = state.settings; const viewIds = Object .keys(views) .filter((id) => views[id].fixed || views[id].active); if (isEqual(viewIds, filteredViewIds)) { return { views: filteredViews }; } filteredViewIds = viewIds; filteredViews = viewIds.map((id) => ({ ...views[id], id })); return { views: filteredViews }; }; } export default connect( mapStateToProps )(TabBar);