import React from 'react'; import WelcomeSections from './WelcomeSections'; import ProgressBar from './ProgressBar'; import './welcome.scss'; export default class WelcomeModal extends React.PureComponent { constructor() { super(); this.state = { image: './././icons/undraw_celebration.svg', currentTab: 0, finalTab: 4, buttonText: 'Next' }; this.language = window.language.modals.welcome; this.images = ['./././icons/undraw_celebration.svg', './././icons/undraw_around_the_world_modified.svg', './././icons/undraw_add_files_modified.svg', './././icons/undraw_dark_mode.svg', './././icons/undraw_private_data_modified.svg', './././icons/undraw_upgrade_modified.svg'] } changeTab(minus) { if (minus) { return this.setState({ currentTab: this.state.currentTab - 1, image: this.images[this.state.currentTab - 1], buttonText: this.language.buttons.next }); } if (this.state.buttonText === 'Close') { return this.props.modalClose(); } this.setState({ currentTab: this.state.currentTab + 1, image: this.images[this.state.currentTab + 1], buttonText: (this.state.currentTab !== this.state.finalTab) ? this.language.buttons.next : this.language.buttons.close }); } // specific switchTab(tab) { this.setState({ currentTab: tab, image: this.images[tab], buttonText: (tab !== this.state.finalTab + 1) ? this.language.buttons.next : this.language.buttons.close }); } render() { return (
celebration this.switchTab(tab)}/>
this.switchTab(tab)}/>
{(this.state.currentTab !== 0) ? : null}
); } }