move files around to make clearer

This commit is contained in:
Samuel Newman
2025-08-06 21:30:44 +03:00
parent 0f11376751
commit f29998eb87
2 changed files with 83 additions and 77 deletions
@@ -0,0 +1,81 @@
import {Easing} from 'react-native'
import Animated, {FadeInDown, FadeOut} from 'react-native-reanimated'
import {type ComAtprotoTempCheckHandleAvailability} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {atoms as a, native, useTheme} from '#/alf'
import {borderRadius} from '#/alf/tokens'
import {Button} from '#/components/Button'
import {Text} from '#/components/Typography'
export function HandleSuggestions({
suggestions,
onSelect,
}: {
suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion[]
onSelect: (
suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion,
) => void
}) {
const t = useTheme()
const {_} = useLingui()
return (
<Animated.View
entering={native(FadeInDown.easing(Easing.out(Easing.exp)))}
exiting={native(FadeOut)}
style={[
a.flex_1,
a.border,
a.rounded_sm,
t.atoms.shadow_sm,
t.atoms.bg,
t.atoms.border_contrast_low,
a.mt_xs,
a.z_50,
a.w_full,
a.zoom_fade_in,
]}>
{suggestions.map((suggestion, index) => (
<Button
label={_(
msg({
message: `Select ${suggestion.handle}`,
comment: `Accessibility label for a username suggestion in the account creation flow`,
}),
)}
key={index}
onPress={() => onSelect(suggestion)}
hoverStyle={[t.atoms.bg_contrast_25]}
style={[
a.w_full,
a.flex_row,
a.align_center,
a.justify_between,
a.p_md,
a.border_b,
t.atoms.border_contrast_low,
index === 0 && {
borderTopStartRadius: borderRadius.sm,
borderTopEndRadius: borderRadius.sm,
},
index === suggestions.length - 1 && [
{
borderBottomStartRadius: borderRadius.sm,
borderBottomEndRadius: borderRadius.sm,
},
a.border_b_0,
],
]}>
<Text style={[a.text_md]}>{suggestion.handle}</Text>
<Text style={[a.text_sm, {color: t.palette.positive_700}]}>
<Trans comment="Shown next to an available username suggestion in the account creation flow">
Available
</Trans>
</Text>
</Button>
))}
</Animated.View>
)
}
@@ -1,14 +1,11 @@
import {useState} from 'react'
import {View} from 'react-native'
import Animated, {
Easing,
FadeIn,
FadeInDown,
FadeOut,
LayoutAnimationConfig,
LinearTransition,
} from 'react-native-reanimated'
import {type ComAtprotoTempCheckHandleAvailability} from '@atproto/api'
import {msg, Plural, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -26,14 +23,13 @@ import {
import {ScreenTransition} from '#/screens/Login/ScreenTransition'
import {useSignupContext} from '#/screens/Signup/state'
import {atoms as a, native, useTheme} from '#/alf'
import {borderRadius} from '#/alf/tokens'
import {Button} from '#/components/Button'
import * as TextField from '#/components/forms/TextField'
import {useThrottledValue} from '#/components/hooks/useThrottledValue'
import {At_Stroke2_Corner0_Rounded as AtIcon} from '#/components/icons/At'
import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check'
import {Text} from '#/components/Typography'
import {BackNextButtons} from './BackNextButtons'
import {BackNextButtons} from '../BackNextButtons'
import {HandleSuggestions} from './HandleSuggestions'
export function StepHandle() {
const {_} = useLingui()
@@ -275,74 +271,3 @@ function RequirementText({children}: {children: React.ReactNode}) {
</Text>
)
}
function HandleSuggestions({
suggestions,
onSelect,
}: {
suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion[]
onSelect: (
suggestions: ComAtprotoTempCheckHandleAvailability.Suggestion,
) => void
}) {
const t = useTheme()
const {_} = useLingui()
return (
<Animated.View
entering={native(FadeInDown.easing(Easing.out(Easing.exp)))}
exiting={native(FadeOut)}
style={[
a.flex_1,
a.border,
a.rounded_sm,
t.atoms.shadow_sm,
t.atoms.bg,
t.atoms.border_contrast_low,
a.mt_xs,
a.z_50,
a.w_full,
a.zoom_fade_in,
]}>
{suggestions.map((suggestion, index) => (
<Button
label={_(
msg({
message: `Select ${suggestion.handle}`,
comment: `Accessibility label for a username suggestion in the account creation flow`,
}),
)}
key={index}
onPress={() => onSelect(suggestion)}
hoverStyle={[t.atoms.bg_contrast_25]}
style={[
a.w_full,
a.flex_row,
a.align_center,
a.justify_between,
a.p_md,
a.border_b,
t.atoms.border_contrast_low,
index === 0 && {
borderTopStartRadius: borderRadius.sm,
borderTopEndRadius: borderRadius.sm,
},
index === suggestions.length - 1 && [
{
borderBottomStartRadius: borderRadius.sm,
borderBottomEndRadius: borderRadius.sm,
},
a.border_b_0,
],
]}>
<Text style={[a.text_md]}>{suggestion.handle}</Text>
<Text style={[a.text_sm, {color: t.palette.positive_700}]}>
<Trans comment="Shown next to an available username suggestion in the account creation flow">
Available
</Trans>
</Text>
</Button>
))}
</Animated.View>
)
}