File size: 1,629 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import debugFactory from 'debug';
import { isEmpty, omit } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { contextTypes } from '../context-types';
import { tourBranching } from '../tour-branching';

const debug = debugFactory( 'calypso:guided-tours' );

const makeTour = ( tree ) => {
	return class TourContext extends Component {
		static propTypes = {
			isValid: PropTypes.func.isRequired,
			lastAction: PropTypes.object,
			next: PropTypes.func.isRequired,
			quit: PropTypes.func.isRequired,
			shouldPause: PropTypes.bool.isRequired,
			sectionName: PropTypes.string,
			stepName: PropTypes.string.isRequired,
			dispatch: PropTypes.func.isRequired,
		};

		static childContextTypes = contextTypes;

		static meta = omit( tree.props, 'children' );

		state = {
			tourContext: {},
		};

		getChildContext() {
			return this.state.tourContext;
		}

		static getDerivedStateFromProps( props ) {
			const {
				isValid,
				lastAction,
				next,
				quit,
				start,
				sectionName,
				shouldPause,
				stepName,
				dispatch,
			} = props;
			const step = stepName;
			const branching = tourBranching( tree );

			const tourContext = {
				next,
				quit,
				start,
				isValid,
				lastAction,
				sectionName,
				shouldPause,
				step,
				branching,
				isLastStep: isEmpty( branching[ step ] ),
				tour: tree.props.name,
				tourVersion: tree.props.version,
				dispatch,
			};

			debug( 'makeTour#getDerivedStateFromProps computed new context', props, tourContext );

			return { tourContext };
		}

		render() {
			return tree;
		}
	};
};

export default makeTour;