File size: 4,335 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 124 125 126 127 128 129 130 131 132 133 |
import { Onboard, useLaunchpad } from '@automattic/data-stores';
import { useDispatch } from '@wordpress/data';
import { useEffect } from '@wordpress/element';
import { translate } from 'i18n-calypso';
import { useLaunchpadDecider } from 'calypso/landing/stepper/declarative-flow/internals/hooks/use-launchpad-decider';
import { useSite } from 'calypso/landing/stepper/hooks/use-site';
import { getStepFromURL } from 'calypso/landing/stepper/utils/get-flow-from-url';
import {
setSignupCompleteSlug,
persistSignupDestination,
setSignupCompleteFlowName,
} from 'calypso/signup/storageUtils';
import { shouldShowLaunchpadFirst } from 'calypso/state/selectors/should-show-launchpad-first';
import { useQuery } from '../../../hooks/use-query';
import { useSiteIdParam } from '../../../hooks/use-site-id-param';
import { useSiteSlug } from '../../../hooks/use-site-slug';
import { ONBOARD_STORE } from '../../../stores';
import { useRedirectDesignSetupOldSlug } from '../../helpers/use-redirect-design-setup-old-slug';
import { STEPS } from '../../internals/steps';
import { ProcessingResult } from '../../internals/steps-repository/processing-step/constants';
import { ProvidedDependencies } from '../../internals/types';
import type { Flow } from '../../internals/types';
const updateDesign: Flow = {
name: 'update-design',
get title() {
return translate( 'Choose Design' );
},
isSignupFlow: false,
useSteps() {
return [ STEPS.DESIGN_SETUP, STEPS.PROCESSING, STEPS.ERROR ];
},
useSideEffect() {
const { setIntent } = useDispatch( ONBOARD_STORE );
useEffect( () => {
setIntent( Onboard.SiteIntent.UpdateDesign );
}, [] );
},
useTracksEventProps() {
const site = useSite();
const step = getStepFromURL();
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 {
isLoading: false,
eventsProperties: {},
};
},
useStepNavigation( currentStep, navigate ) {
const siteId = useSiteIdParam();
const siteSlug = useSiteSlug();
const flowToReturnTo = useQuery().get( 'flowToReturnTo' ) || 'free';
const { setPendingAction } = useDispatch( ONBOARD_STORE );
const { data: { launchpad_screen: launchpadScreenOption } = {} } = useLaunchpad( siteSlug );
const exitFlow = ( to: string ) => {
setPendingAction( () => {
return new Promise( () => {
window.location.assign( to );
} );
} );
return navigate( 'processing' );
};
const { getPostFlowUrl, initializeLaunchpadState } = useLaunchpadDecider( {
exitFlow,
navigate,
} );
useRedirectDesignSetupOldSlug( currentStep, navigate );
function submit( providedDependencies: ProvidedDependencies = {} ) {
switch ( currentStep ) {
case 'processing': {
initializeLaunchpadState( {
siteId,
siteSlug: ( providedDependencies?.siteSlug ?? siteSlug ) as string,
} );
const processingResult = providedDependencies.processingResult as ProcessingResult;
if ( processingResult === ProcessingResult.FAILURE ) {
return navigate( 'error' );
}
if ( launchpadScreenOption === 'skipped' ) {
return window.location.assign( `/home/${ siteSlug }` );
}
return window.location.assign(
getPostFlowUrl( {
flow: flowToReturnTo,
siteId,
siteSlug: siteSlug as string,
} )
);
}
case 'design-setup':
if ( providedDependencies?.goToCheckout ) {
const destination = `/setup/${ flowToReturnTo }/launchpad?siteSlug=${ providedDependencies.siteSlug }`;
persistSignupDestination( destination );
setSignupCompleteSlug( providedDependencies?.siteSlug );
setSignupCompleteFlowName( flowToReturnTo );
const returnUrl = encodeURIComponent(
`/setup/${ flowToReturnTo }/launchpad?siteSlug=${ providedDependencies?.siteSlug }`
);
return window.location.assign(
`/checkout/${ encodeURIComponent(
( providedDependencies?.siteSlug as string ) ?? ''
) }?redirect_to=${ returnUrl }&signup=1`
);
}
return navigate( `processing?siteSlug=${ siteSlug }&flowToReturnTo=${ flowToReturnTo }` );
}
}
return { submit };
},
};
export default updateDesign;
|