From 77a512ae32eb1aae6be2b67779ffd9d8a1e28cb6 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 10:24:39 -0700 Subject: Couple of starter packs tweaks (#4604) --- .../StarterPack/Wizard/WizardListCard.tsx | 29 +++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) (limited to 'src/components/StarterPack/Wizard/WizardListCard.tsx') diff --git a/src/components/StarterPack/Wizard/WizardListCard.tsx b/src/components/StarterPack/Wizard/WizardListCard.tsx index f1332011d..aa1b2cf9b 100644 --- a/src/components/StarterPack/Wizard/WizardListCard.tsx +++ b/src/components/StarterPack/Wizard/WizardListCard.tsx @@ -9,7 +9,7 @@ import { ModerationUI, } from '@atproto/api' import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' -import {msg} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {DISCOVER_FEED_URI} from 'lib/constants' @@ -19,12 +19,14 @@ import {useSession} from 'state/session' import {UserAvatar} from 'view/com/util/UserAvatar' import {WizardAction, WizardState} from '#/screens/StarterPack/Wizard/State' import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' import * as Toggle from '#/components/forms/Toggle' import {Checkbox} from '#/components/forms/Toggle' import {Text} from '#/components/Typography' function WizardListCard({ type, + btnType, displayName, subtitle, onPress, @@ -34,6 +36,7 @@ function WizardListCard({ moderationUi, }: { type: 'user' | 'algo' + btnType: 'checkbox' | 'remove' profile?: AppBskyActorDefs.ProfileViewBasic feed?: AppBskyFeedDefs.GeneratorView displayName: string @@ -56,7 +59,7 @@ function WizardListCard({ : _(msg`Add ${displayName} to starter pack`) } value={included} - disabled={disabled} + disabled={btnType === 'remove' || disabled} onChange={onPress} style={[ a.flex_row, @@ -85,17 +88,33 @@ function WizardListCard({ {subtitle} - + {btnType === 'checkbox' ? ( + + ) : !disabled ? ( + + ) : null} ) } export function WizardProfileCard({ + btnType, state, dispatch, profile, moderationOpts, }: { + btnType: 'checkbox' | 'remove' state: WizardState dispatch: (action: WizardAction) => void profile: AppBskyActorDefs.ProfileViewBasic @@ -127,6 +146,7 @@ export function WizardProfileCard({ return ( void @@ -170,6 +192,7 @@ export function WizardFeedCard({ return (