// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import UserStore from '../../stores/user_store.jsx'; import PreferenceStore from '../../stores/preference_store.jsx'; import * as AsyncClient from '../../utils/async_client.jsx'; import Constants from '../../utils/constants.jsx'; import {FormattedMessage} from 'mm-intl'; const Preferences = Constants.Preferences; const Overlay = ReactBootstrap.Overlay; export default class TutorialTip extends React.Component { constructor(props) { super(props); this.handleNext = this.handleNext.bind(this); this.toggle = this.toggle.bind(this); this.state = {currentScreen: 0, show: false}; } toggle() { const show = !this.state.show; this.setState({show}); if (!show && this.state.currentScreen >= this.props.screens.length - 1) { let preference = PreferenceStore.getPreference(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), {value: '0'}); const newValue = (parseInt(preference.value, 10) + 1).toString(); preference = PreferenceStore.setPreference(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), newValue); AsyncClient.savePreferences([preference]); } } handleNext() { if (this.state.currentScreen < this.props.screens.length - 1) { this.setState({currentScreen: this.state.currentScreen + 1}); return; } this.toggle(); } skipTutorial(e) { e.preventDefault(); const preference = PreferenceStore.setPreference(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), '999'); AsyncClient.savePreferences([preference]); } render() { const buttonText = this.state.currentScreen === this.props.screens.length - 1 ? ( ) : ( ); const dots = []; if (this.props.screens.length > 1) { for (let i = 0; i < this.props.screens.length; i++) { let className = 'circle'; if (i === this.state.currentScreen) { className += ' active'; } dots.push( { //eslint-disable-line no-loop-func e.preventDefault(); this.setState({currentScreen: i}); }} /> ); } } var tipColor = ''; if (this.props.overlayClass === 'tip-overlay--header' || this.props.overlayClass === 'tip-overlay--sidebar') { tipColor = 'White'; } return (
this.refs.target} >
{this.props.screens[this.state.currentScreen]}
); } } TutorialTip.defaultProps = { overlayClass: '' }; TutorialTip.propTypes = { screens: React.PropTypes.array.isRequired, placement: React.PropTypes.string.isRequired, overlayClass: React.PropTypes.string };