import React from 'react' import {useLingui} from '@lingui/react' import {msg} from '@lingui/macro' import {Portal} from '#/components/Portal' import {Context, initialState, reducer} from '#/screens/Onboarding/state' import {Layout, OnboardingControls} from '#/screens/Onboarding/Layout' import {StepInterests} from '#/screens/Onboarding/StepInterests' import {StepSuggestedAccounts} from '#/screens/Onboarding/StepSuggestedAccounts' import {StepFollowingFeed} from '#/screens/Onboarding/StepFollowingFeed' import {StepAlgoFeeds} from '#/screens/Onboarding/StepAlgoFeeds' import {StepTopicalFeeds} from '#/screens/Onboarding/StepTopicalFeeds' import {StepFinished} from '#/screens/Onboarding/StepFinished' import {StepModeration} from '#/screens/Onboarding/StepModeration' export function Onboarding() { const {_} = useLingui() const [state, dispatch] = React.useReducer(reducer, {...initialState}) const interestsDisplayNames = React.useMemo(() => { return { news: _(msg`News`), journalism: _(msg`Journalism`), nature: _(msg`Nature`), art: _(msg`Art`), comics: _(msg`Comics`), writers: _(msg`Writers`), culture: _(msg`Culture`), sports: _(msg`Sports`), pets: _(msg`Pets`), animals: _(msg`Animals`), books: _(msg`Books`), education: _(msg`Education`), climate: _(msg`Climate`), science: _(msg`Science`), politics: _(msg`Politics`), fitness: _(msg`Fitness`), tech: _(msg`Tech`), dev: _(msg`Software Dev`), comedy: _(msg`Comedy`), gaming: _(msg`Video Games`), food: _(msg`Food`), cooking: _(msg`Cooking`), } }, [_]) return ( ({state, dispatch, interestsDisplayNames}), [state, dispatch, interestsDisplayNames], )}> {state.activeStep === 'interests' && } {state.activeStep === 'suggestedAccounts' && ( )} {state.activeStep === 'followingFeed' && } {state.activeStep === 'algoFeeds' && } {state.activeStep === 'topicalFeeds' && } {state.activeStep === 'moderation' && } {state.activeStep === 'finished' && } ) }