diff options
author | Eric Bailey <git@esb.lol> | 2024-01-25 22:22:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 20:22:40 -0800 |
commit | 3371038f7d8b740f2415d3a54dc99b69e0598042 (patch) | |
tree | 9ef008e132f268ce6a8a23765ab34fda71a4bedc /src/screens/Onboarding/StepInterests/index.tsx | |
parent | 5443503593a67cc7ff6e081ef9b1fe66ea0cbe0d (diff) | |
download | voidsky-3371038f7d8b740f2415d3a54dc99b69e0598042.tar.zst |
New Onboarding (#2596)
* Add round and square buttons * Allow some style for buttons, add icons * Change text selection color * Center button text, whoops * Outer layout, some primitive updates * WIP * onboarding feed prefs (#2590) * add `style` to toggle label to modify text style * Revert "add `style` to toggle label to modify text style" This reverts commit 8f4b517b8585ca64a4bf44f6cb40ac070ece8932. * following feed prefs * remove unnecessary memo * reusable divider component * org imports * add finished screen * Theme SelectedAccountCard * Require at least 3 interests * Placeholder save logic * WIP algo feeds * Improve lineHeight handling, add RichText, improve Link by adding InlineLink * Inherit lineHeight in heading comps * Algo feeds mostly good * Topical feeds ish * Layout cleanup * Improve button styles * moderation prefs for onboarding (#2594) * WIP algo feeds * modify controlalbelgroup typing for easy .map() * adjust padding on button * add moderation screen * add moderation screen * add moderation screen --------- Co-authored-by: Eric Bailey <git@esb.lol> * Fix toggle button styles * A11y props on outer portal * Put it all on red * New data shape * Handle mock data * Bulk write (not yet) * Remove interests validation * Clean up interests * i18n layout and first step * Clean up suggested follows screen * Clean up following step * Clean up algo feeds step * Clean up topical feeds * Add skeleton for feed card * WIP moderation step * cleanup moderation styles (#2605) * cleanup moderation styles * fix(?) toggle button group styles * adjust toggle to fit any screen * Some more cleanup * Icons * ToggleButton tweaks * Reset * Hook up data * Better suggestions * Bulk write * Some logging * Use new api * Concat topical feeds * Metrics * Disable links in RichText, feedcards * Tweak primary feed cards * Update metrics * Fix layout shift * Fix ToggleButton again, whoops * Error state * Bump api package, ensure interests are saved * Better fix for autofill * i18n, button positions * Remove unused export * Add default prefs object * Fix overflow in user cards * Add 2 lines of bios to suggested accounts cards * Nits * Don't resolve facets by default * Update storybook * Disable flag for now * Remove age dialog from moderations step * Improvements and tweaks to new onboarding --------- Co-authored-by: Hailey <153161762+haileyok@users.noreply.github.com> Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/screens/Onboarding/StepInterests/index.tsx')
-rw-r--r-- | src/screens/Onboarding/StepInterests/index.tsx | 260 |
1 files changed, 260 insertions, 0 deletions
diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx new file mode 100644 index 000000000..6f60991d5 --- /dev/null +++ b/src/screens/Onboarding/StepInterests/index.tsx @@ -0,0 +1,260 @@ +import React from 'react' +import {View} from 'react-native' +import {useLingui} from '@lingui/react' +import {msg, Trans} from '@lingui/macro' +import {useQuery} from '@tanstack/react-query' + +import {logger} from '#/logger' +import {atoms as a, useBreakpoints, useTheme} from '#/alf' +import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' +import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' +import {EmojiSad_Stroke2_Corner0_Rounded as EmojiSad} from '#/components/icons/Emoji' +import {ArrowRotateCounterClockwise_Stroke2_Corner0_Rounded as ArrowRotateCounterClockwise} from '#/components/icons/ArrowRotateCounterClockwise' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import {Loader} from '#/components/Loader' +import * as Toggle from '#/components/forms/Toggle' +import {getAgent} from '#/state/session' +import {useAnalytics} from '#/lib/analytics/analytics' +import {Text} from '#/components/Typography' +import {useOnboardingDispatch} from '#/state/shell' + +import {Context} from '#/screens/Onboarding/state' +import { + Title, + Description, + OnboardingControls, +} from '#/screens/Onboarding/Layout' +import { + ApiResponseMap, + INTEREST_TO_DISPLAY_NAME, +} from '#/screens/Onboarding/StepInterests/data' +import {InterestButton} from '#/screens/Onboarding/StepInterests/InterestButton' +import {IconCircle} from '#/screens/Onboarding/IconCircle' + +export function StepInterests() { + const {_} = useLingui() + const t = useTheme() + const {track} = useAnalytics() + const {gtMobile} = useBreakpoints() + const {state, dispatch} = React.useContext(Context) + const [saving, setSaving] = React.useState(false) + const [interests, setInterests] = React.useState<string[]>( + state.interestsStepResults.selectedInterests.map(i => i), + ) + const onboardDispatch = useOnboardingDispatch() + const {isLoading, isError, error, data, refetch, isFetching} = useQuery({ + queryKey: ['interests'], + queryFn: async () => { + try { + const {data} = + await getAgent().app.bsky.unspecced.getTaggedSuggestions() + return data.suggestions.reduce( + (agg, s) => { + const {tag, subject, subjectType} = s + const isDefault = tag === 'default' + + if (!agg.interests.includes(tag) && !isDefault) { + agg.interests.push(tag) + } + + if (subjectType === 'user') { + agg.suggestedAccountDids[tag] = + agg.suggestedAccountDids[tag] || [] + agg.suggestedAccountDids[tag].push(subject) + } + + if (subjectType === 'feed') { + // agg all feeds into defaults + if (isDefault) { + agg.suggestedFeedUris[tag] = agg.suggestedFeedUris[tag] || [] + } else { + agg.suggestedFeedUris[tag] = agg.suggestedFeedUris[tag] || [] + agg.suggestedFeedUris[tag].push(subject) + agg.suggestedFeedUris.default.push(subject) + } + } + + return agg + }, + { + interests: [], + suggestedAccountDids: {}, + suggestedFeedUris: {}, + } as ApiResponseMap, + ) + } catch (e: any) { + logger.info( + `onboarding: getTaggedSuggestions fetch or processing failed`, + ) + logger.error(e) + track('OnboardingV2:StepInterests:Error') + + throw new Error(`a network error occurred`) + } + }, + }) + + const saveInterests = React.useCallback(async () => { + setSaving(true) + + try { + setSaving(false) + dispatch({ + type: 'setInterestsStepResults', + apiResponse: data!, + selectedInterests: interests, + }) + dispatch({type: 'next'}) + + track('OnboardingV2:StepInterests:End', { + selectedInterests: interests, + selectedInterestsLength: interests.length, + }) + } catch (e: any) { + logger.info(`onboading: error saving interests`) + logger.error(e) + } + }, [interests, data, setSaving, dispatch, track]) + + const skipOnboarding = React.useCallback(() => { + onboardDispatch({type: 'finish'}) + dispatch({type: 'finish'}) + track('OnboardingV2:Skip') + }, [onboardDispatch, dispatch, track]) + + React.useEffect(() => { + track('OnboardingV2:Begin') + track('OnboardingV2:StepInterests:Start') + }, [track]) + + const title = isError ? ( + <Trans>Oh no! Something went wrong.</Trans> + ) : ( + <Trans>What are your interests?</Trans> + ) + const description = isError ? ( + <Trans> + We weren't able to connect. Please try again to continue setting up your + account. If it continues to fail, you can skip this flow. + </Trans> + ) : ( + <Trans>We'll use this to help customize your experience.</Trans> + ) + + return ( + <View style={[a.align_start]}> + <IconCircle + icon={isError ? EmojiSad : Hashtag} + style={[ + a.mb_2xl, + isError + ? { + backgroundColor: t.palette.negative_50, + } + : {}, + ]} + iconStyle={[ + isError + ? { + color: t.palette.negative_900, + } + : {}, + ]} + /> + + <Title>{title}</Title> + <Description>{description}</Description> + + <View style={[a.w_full, a.pt_2xl]}> + {isLoading ? ( + <Loader size="xl" /> + ) : isError || !data ? ( + <View + style={[ + a.w_full, + a.p_lg, + a.rounded_md, + { + backgroundColor: t.palette.negative_50, + }, + ]}> + <Text style={[a.text_md]}> + <Text + style={[ + a.text_md, + a.font_bold, + { + color: t.palette.negative_900, + }, + ]}> + Error:{' '} + </Text> + {error?.message || 'an unknown error occurred'} + </Text> + </View> + ) : ( + <Toggle.Group + values={interests} + onChange={setInterests} + label={_(msg`Select your interests from the options below`)}> + <View style={[a.flex_row, a.gap_md, a.flex_wrap]}> + {data.interests.map(interest => ( + <Toggle.Item + key={interest} + name={interest} + label={INTEREST_TO_DISPLAY_NAME[interest]}> + <InterestButton interest={interest} /> + </Toggle.Item> + ))} + </View> + </Toggle.Group> + )} + </View> + + <OnboardingControls.Portal> + {isError ? ( + <View style={[a.gap_md, gtMobile ? a.flex_row : a.flex_col]}> + <Button + disabled={isFetching} + variant="solid" + color="secondary" + size="large" + label={_(msg`Retry`)} + onPress={() => refetch()}> + <ButtonText> + <Trans>Retry</Trans> + </ButtonText> + <ButtonIcon icon={ArrowRotateCounterClockwise} position="right" /> + </Button> + <Button + variant="outline" + color="secondary" + size="large" + label={_(msg`Skip this flow`)} + onPress={skipOnboarding}> + <ButtonText> + <Trans>Skip</Trans> + </ButtonText> + </Button> + </View> + ) : ( + <Button + disabled={saving || !data} + variant="gradient" + color="gradient_sky" + size="large" + label={_(msg`Continue to next step`)} + onPress={saveInterests}> + <ButtonText> + <Trans>Continue</Trans> + </ButtonText> + <ButtonIcon + icon={saving ? Loader : ChevronRight} + position="right" + /> + </Button> + )} + </OnboardingControls.Portal> + </View> + ) +} |