Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useTranslate } from 'i18n-calypso';
import { useEffect } from 'react';
import startingPointImageUrl from 'calypso/assets/images/onboarding/starting-point.svg';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import useBranchSteps from 'calypso/signup/hooks/use-branch-steps';
import StepWrapper from 'calypso/signup/step-wrapper';
import { useDispatch } from 'calypso/state';
import { saveSignupStep, submitSignupStep } from 'calypso/state/signup/progress/actions';
import StartingPoint from './starting-point';
import type { StartingPointFlag } from './types';
import type { Dependencies } from 'calypso/signup/types';
interface Props {
goToNextStep: () => void;
signupDependencies: any;
stepName: string;
initialContext: any;
}
const EXCLUDED_STEPS: { [ key: string ]: string[] } = {
write: [ 'courses' ],
courses: [],
design: [ 'courses' ],
'skip-to-my-home': [ 'courses' ],
};
const getExcludedSteps = ( providedDependencies?: Dependencies ) =>
EXCLUDED_STEPS[ providedDependencies?.startingPoint ];
export default function StartingPointStep( props: Props ) {
const dispatch = useDispatch();
const translate = useTranslate();
const { goToNextStep, stepName } = props;
const headerText = translate( 'Nice job! Now it’s{{br}}{{/br}} time to get creative.', {
components: { br: <br /> },
} );
const subHeaderText = translate( "Don't worry. You can come back to these steps!" );
const branchSteps = useBranchSteps( stepName, getExcludedSteps );
const submitStartingPoint = ( startingPoint: StartingPointFlag ) => {
const providedDependencies = { startingPoint };
branchSteps( providedDependencies );
recordTracksEvent( 'calypso_signup_starting_point_select', { starting_point: startingPoint } );
dispatch( submitSignupStep( { stepName }, providedDependencies ) );
goToNextStep();
};
// Only do following things when mounted
useEffect( () => {
dispatch( saveSignupStep( { stepName } ) );
}, [] ); // eslint-disable-line react-hooks/exhaustive-deps
return (
<StepWrapper
{ ...props }
headerText={ headerText }
fallbackHeaderText={ headerText }
headerImageUrl={ startingPointImageUrl }
subHeaderText={ subHeaderText }
fallbackSubHeaderText={ subHeaderText }
stepContent={ <StartingPoint onSelect={ submitStartingPoint } /> }
align="left"
skipButtonAlign="top"
skipLabelText={ translate( 'Skip to My Home' ) }
// We need to redirect user to My Home and apply the default theme if the user skips this step
goToNextStep={ () => submitStartingPoint( 'skip-to-my-home' ) }
isHorizontalLayout
/>
);
}