|
|
import page from '@automattic/calypso-router'; |
|
|
import { IntentScreen } from '@automattic/onboarding'; |
|
|
import { useTranslate } from 'i18n-calypso'; |
|
|
import { useEffect } from 'react'; |
|
|
import intentImageUrl from 'calypso/assets/images/onboarding/intent.svg'; |
|
|
import { recordTracksEvent } from 'calypso/lib/analytics/tracks'; |
|
|
import { preventWidows } from 'calypso/lib/formatting'; |
|
|
import { addQueryArgs } from 'calypso/lib/route'; |
|
|
import useBranchSteps from 'calypso/signup/hooks/use-branch-steps'; |
|
|
import StepWrapper from 'calypso/signup/step-wrapper'; |
|
|
import { useDispatch, useSelector } from 'calypso/state'; |
|
|
import { canCurrentUser } from 'calypso/state/selectors/can-current-user'; |
|
|
import { saveSignupStep, submitSignupStep } from 'calypso/state/signup/progress/actions'; |
|
|
import { getSiteId } from 'calypso/state/sites/selectors'; |
|
|
import { useIntents, useIntentsAlt } from './intents'; |
|
|
import type { IntentFlag } from './types'; |
|
|
import type { Dependencies } from 'calypso/signup/types'; |
|
|
|
|
|
interface Props { |
|
|
goToNextStep: () => void; |
|
|
signupDependencies: any; |
|
|
stepName: string; |
|
|
queryObject: { |
|
|
siteSlug?: string; |
|
|
siteId?: string; |
|
|
}; |
|
|
} |
|
|
|
|
|
export const EXCLUDED_STEPS: { [ key: string ]: string[] } = { |
|
|
write: [ 'store-options', 'store-features' ], |
|
|
build: [ 'site-options', 'starting-point', 'courses', 'store-options', 'store-features' ], |
|
|
sell: [ 'site-options', 'starting-point', 'courses' ], |
|
|
wpadmin: [ 'store-options', 'store-features', 'site-options', 'starting-point', 'courses' ], |
|
|
}; |
|
|
|
|
|
const EXTERNAL_FLOW: { [ key: string ]: string } = { |
|
|
import: '/setup/site-setup/import', |
|
|
}; |
|
|
|
|
|
const getExcludedSteps = ( providedDependencies?: Dependencies ) => |
|
|
EXCLUDED_STEPS[ providedDependencies?.intent ]; |
|
|
|
|
|
export default function IntentStep( props: Props ) { |
|
|
const dispatch = useDispatch(); |
|
|
const translate = useTranslate(); |
|
|
const { goToNextStep, stepName, queryObject } = props; |
|
|
const headerText = translate( 'Where will you start?' ); |
|
|
const subHeaderText = translate( 'You can change your mind at any time.' ); |
|
|
const branchSteps = useBranchSteps( stepName, getExcludedSteps ); |
|
|
|
|
|
const siteId = |
|
|
useSelector( ( state ) => getSiteId( state, queryObject.siteSlug as string ) ) || |
|
|
queryObject?.siteId; |
|
|
const canImport = useSelector( ( state ) => |
|
|
canCurrentUser( state, siteId as number, 'manage_options' ) |
|
|
); |
|
|
|
|
|
const intents = useIntents(); |
|
|
const intentsAlt = useIntentsAlt( canImport ); |
|
|
|
|
|
const submitIntent = ( intent: IntentFlag ) => { |
|
|
const providedDependencies = { intent }; |
|
|
|
|
|
recordTracksEvent( 'calypso_signup_intent_select', providedDependencies ); |
|
|
|
|
|
if ( EXTERNAL_FLOW[ intent ] ) { |
|
|
dispatch( submitSignupStep( { stepName }, providedDependencies ) ); |
|
|
page( addQueryArgs( queryObject, EXTERNAL_FLOW[ intent ] ) ); |
|
|
} else { |
|
|
branchSteps( providedDependencies ); |
|
|
dispatch( submitSignupStep( { stepName }, providedDependencies ) ); |
|
|
goToNextStep(); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
dispatch( saveSignupStep( { stepName } ) ); |
|
|
}, [] ); |
|
|
|
|
|
return ( |
|
|
<StepWrapper |
|
|
headerText={ headerText } |
|
|
fallbackHeaderText={ headerText } |
|
|
headerImageUrl={ intentImageUrl } |
|
|
subHeaderText={ subHeaderText } |
|
|
fallbackSubHeaderText={ subHeaderText } |
|
|
stepContent={ |
|
|
<IntentScreen |
|
|
intents={ intents } |
|
|
intentsAlt={ intentsAlt } |
|
|
onSelect={ submitIntent } |
|
|
preventWidows={ preventWidows } |
|
|
/> |
|
|
} |
|
|
align="left" |
|
|
hideSkip |
|
|
isHorizontalLayout |
|
|
siteId={ siteId } |
|
|
{ ...props } |
|
|
/> |
|
|
); |
|
|
} |
|
|
|