File size: 3,591 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
import { OnboardSelect } from '@automattic/data-stores';
import { BUILD_FLOW } from '@automattic/onboarding';
import { useSelect } from '@wordpress/data';
import { addQueryArgs } from '@wordpress/url';
import { useMemo, useRef } from 'react';
import { useSite } from 'calypso/landing/stepper/hooks/use-site';
import { getStepFromURL } from 'calypso/landing/stepper/utils/get-flow-from-url';
import { skipLaunchpad } from 'calypso/landing/stepper/utils/skip-launchpad';
import { triggerGuidesForStep } from 'calypso/lib/guides/trigger-guides-for-step';
import { shouldShowLaunchpadFirst } from 'calypso/state/selectors/should-show-launchpad-first';
import { STEPPER_TRACKS_EVENT_SIGNUP_STEP_START } from '../../../constants';
import { useExitFlow } from '../../../hooks/use-exit-flow';
import { useSiteIdParam } from '../../../hooks/use-site-id-param';
import { useSiteSlug } from '../../../hooks/use-site-slug';
import { ONBOARD_STORE } from '../../../stores';
import { useLaunchpadDecider } from '../../internals/hooks/use-launchpad-decider';
import { STEPS } from '../../internals/steps';
import { Flow, ProvidedDependencies } from '../../internals/types';
const steps = [ STEPS.LAUNCHPAD, STEPS.PROCESSING ];
const build: Flow = {
name: BUILD_FLOW,
get title() {
return 'WordPress';
},
isSignupFlow: false,
useSteps() {
return steps;
},
useTracksEventProps() {
const goals = useSelect(
( select ) => ( select( ONBOARD_STORE ) as OnboardSelect ).getGoals(),
[]
);
const site = useSite();
const step = getStepFromURL();
// we are only interested in the initial values and not when they values change
const initialGoals = useRef( goals );
const tracksEventProps = useMemo(
() => ( {
eventsProperties: {
[ STEPPER_TRACKS_EVENT_SIGNUP_STEP_START ]: {
...( initialGoals.current.length && {
goals: initialGoals.current.join( ',' ),
} ),
},
},
} ),
[ initialGoals ]
);
if ( site && shouldShowLaunchpadFirst( site ) && step === 'launchpad' ) {
//prevent track events from firing until we're sure we won't redirect away from Launchpad
return {
isLoading: true,
eventsProperties: {},
};
}
return tracksEventProps;
},
useStepNavigation( _currentStep, navigate ) {
const flowName = this.name;
const siteId = useSiteIdParam();
const siteSlug = useSiteSlug();
const { exitFlow } = useExitFlow( { navigate, processing: true } );
triggerGuidesForStep( flowName, _currentStep );
const { postFlowNavigator, initializeLaunchpadState } = useLaunchpadDecider( {
exitFlow,
navigate,
} );
const submit = ( providedDependencies: ProvidedDependencies = {} ) => {
switch ( _currentStep ) {
case 'processing':
if ( providedDependencies?.goToHome && providedDependencies?.siteSlug ) {
return window.location.replace(
addQueryArgs( `/home/${ siteId ?? providedDependencies?.siteSlug }`, {
celebrateLaunch: true,
launchpadComplete: true,
} )
);
}
initializeLaunchpadState( {
siteId,
siteSlug: ( providedDependencies?.siteSlug ?? siteSlug ) as string,
} );
return postFlowNavigator( { siteId, siteSlug } );
case 'launchpad': {
return navigate( 'processing' );
}
}
return providedDependencies;
};
const goNext = async () => {
switch ( _currentStep ) {
case 'launchpad':
skipLaunchpad( {
siteId,
siteSlug,
} );
return;
default:
return navigate( 'launchpad' );
}
};
return { goNext, submit };
},
};
export default build;
|