// 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 { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { FlatButton } from 'material-ui'; import ActionDoneAll from 'material-ui/svg-icons/action/done-all'; import ContentClear from 'material-ui/svg-icons/content/clear'; import NavigationArrowForward from 'material-ui/svg-icons/navigation/arrow-forward'; import { newTooltip, nextTooltip, closeTooltips } from '../actions'; import styles from '../tooltips.css'; let tooltipId = 0; class Tooltip extends Component { static propTypes = { title: PropTypes.string, text: PropTypes.string, right: PropTypes.bool, currentId: PropTypes.number, maxId: PropTypes.number, className: PropTypes.string, onNewTooltip: PropTypes.func, onNextTooltip: PropTypes.func, onCloseTooltips: PropTypes.func } state = { id: tooltipId } componentWillMount () { const { onNewTooltip } = this.props; onNewTooltip(tooltipId); tooltipId++; } render () { const { id } = this.state; const { className, currentId, maxId, right, onCloseTooltips, onNextTooltip } = this.props; const classes = `${styles.box} ${right ? styles.arrowRight : styles.arrowLeft} ${className}`; if (id !== currentId) { return null; } const buttons = id !== maxId ? [ } label='Skip' onTouchTap={ onCloseTooltips } />, } label='Next' onTouchTap={ onNextTooltip } /> ] : ( } label='Done' onTouchTap={ onCloseTooltips } /> ); return (
{ this.props.title }
{ this.props.text }
{ buttons }
); } } function mapStateToProps (state) { const { currentId, maxId } = state.tooltip; return { currentId, maxId }; } function mapDispatchToProps (dispatch) { return bindActionCreators({ onNewTooltip: newTooltip, onNextTooltip: nextTooltip, onCloseTooltips: closeTooltips }, dispatch); } export default connect( mapStateToProps, mapDispatchToProps )(Tooltip);