// 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 { Link } from 'react-router'; import { connect } from 'react-redux'; import ActionFingerprint from 'material-ui/svg-icons/action/fingerprint'; import ContentClear from 'material-ui/svg-icons/content/clear'; import { Badge, Button, ContainerTitle, ParityBackground } from '~/ui'; import { Embedded as Signer } from '../Signer'; import imagesEthcoreBlock from '../../../assets/images/parity-logo-white-no-text.svg'; import styles from './parityBar.css'; class ParityBar extends Component { static propTypes = { pending: PropTypes.array, dapp: PropTypes.bool } state = { opened: false } componentWillReceiveProps (nextProps) { const count = this.props.pending.length; const newCount = nextProps.pending.length; if (count === newCount) { return; } if (count < newCount) { this.setState({ opened: true }); } else if (newCount === 0 && count === 1) { this.setState({ opened: false }); } } render () { const { opened } = this.state; return opened ? this.renderExpanded() : this.renderBar(); } renderBar () { const { dapp } = this.props; if (!dapp) { return null; } const parityIcon = ( ); return (
); } renderExpanded () { return (
); } renderLabel (name, bubble) { return (
{ name }
{ bubble }
); } renderSignerLabel () { const { pending } = this.props; let bubble = null; if (pending && pending.length) { bubble = ( ); } return this.renderLabel('Signer', bubble); } toggleDisplay = () => { const { opened } = this.state; this.setState({ opened: !opened }); } } function mapStateToProps (state) { const { pending } = state.signer; return { pending }; } export default connect( mapStateToProps, null )(ParityBar);