import React from 'react'; import OnboardingActions from './onboarding-actions'; const Steps = [ { seen: false, id: 'people', title: 'Compose with context', image: 'feature-people@2x.png', description: "N1 shows you everything about your contacts right inside your inbox. See LinkedIn profiles, Twitter bios, and more.", x: 96.6, y: 1.3, xDot: 93.5, yDot: 5.4, }, { seen: false, id: 'activity', title: 'Track activity', image: 'feature-activity@2x.png', description: "With activity tracking, you'll know as soon as someone reads your message. Sending to a group? We'll show which recipients opened your email, so you can follow up with precision.", x: 12.8, y: 1, xDot: 15, yDot: 5.1, }, { seen: false, id: 'snooze', title: 'Time is everything', image: 'feature-snooze@2x.png', description: "Snooze emails to any time that suits you. Schedule emails to be sent at the ideal time. N1 makes it easy to control the fabric of spacetime.", x: 5.5, y: 23.3, xDot: 8, yDot: 25.9, }, { seen: false, id: 'composer', title: 'Composer Power', image: 'feature-composer@2x.png', description: "Use N1's powerful composer to embed calendar invitations, propose times to meet with recipients, insert templates, and more.", x: 76.6, y: 66, xDot: 74.9, yDot: 65.0, }, ]; export default class TutorialPage extends React.Component { static displayName = "TutorialPage"; constructor(props) { super(props); this.state = { appeared: false, seen: [], current: Steps[0], } } componentDidMount() { this._timer = setTimeout(() => { this.setState({appeared: true}) }, 200); } componentWillUnmount() { clearTimeout(this._timer); } _onBack = () => { const nextItem = this.state.seen.pop(); if (!nextItem) { OnboardingActions.moveToPreviousPage(); } else { this.setState({current: nextItem}); } } _onNextUnseen = () => { const nextSeen = [].concat(this.state.seen, [this.state.current]); const nextItem = Steps.find(s => !nextSeen.includes(s)); if (nextItem) { this.setState({current: nextItem, seen: nextSeen}); } else { OnboardingActions.moveToPage('authenticate'); } } _onMouseOverOverlay = (event) => { const item = Steps.find(i => i.id === event.target.id); if (item) { if (!this.state.seen.includes(item)) { this.state.seen.push(item); } this.setState({current: item}); } } render() { const {current, seen, appeared} = this.state; return (
{Steps.map((step) =>
)}

{current.title}

{current.description}

); } }