MVP of login screen

This commit is contained in:
Eric Bailey
2026-01-27 16:01:30 -06:00
parent 6f764d32af
commit ce47b23484
+81 -61
View File
@@ -1,18 +1,23 @@
import {View} from 'react-native'
import {useMemo} from 'react'
import {Image as RNImage, View} from 'react-native'
import Animated, {FadeIn, FadeOut} from 'react-native-reanimated'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
import {Image} from 'expo-image'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useHaptics} from '#/lib/haptics'
import {ErrorBoundary} from '#/view/com/util/ErrorBoundary'
import {CenteredView} from '#/view/com/util/Views'
import {Logo} from '#/view/icons/Logo'
import {Logotype} from '#/view/icons/Logotype'
import {atoms as a, useTheme} from '#/alf'
import {AppLanguageDropdown} from '#/components/AppLanguageDropdown'
import {Button, ButtonText} from '#/components/Button'
import {Text} from '#/components/Typography'
// @ts-ignore
import splashImagePointer from '../../../../assets/splash/splash-mobile.png'
// @ts-ignore
import darkSplashImagePointer from '../../../../assets/splash/splash-mobile-dark.png'
const splashImageUri = RNImage.resolveAssetSource(splashImagePointer).uri
const darkSplashImageUri = RNImage.resolveAssetSource(
darkSplashImagePointer,
).uri
export const SplashScreen = ({
onPressSignin,
@@ -23,38 +28,68 @@ export const SplashScreen = ({
}) => {
const t = useTheme()
const {_} = useLingui()
const isDarkMode = t.name !== 'light'
const playHaptic = useHaptics()
const insets = useSafeAreaInsets()
const styles = useMemo(() => {
const logoFill = isDarkMode ? 'white' : t.palette.primary_500
return {
logoFill,
logoShadow: isDarkMode
? [
t.atoms.shadow_md,
{
shadowColor: logoFill,
shadowOpacity: 0.5,
shadowOffset: {
width: 0,
height: 0,
},
},
]
: [],
}
}, [t, isDarkMode])
return (
<CenteredView style={[a.h_full, a.flex_1]}>
<>
<Image
accessibilityIgnoresInvertColors
source={{uri: isDarkMode ? darkSplashImageUri : splashImageUri}}
style={[a.absolute, a.inset_0]}
/>
<Animated.View
entering={FadeIn.duration(90)}
exiting={FadeOut.duration(90)}
style={[a.flex_1]}>
<ErrorBoundary>
<View style={[a.flex_1, a.justify_center, a.align_center]}>
<Logo width={92} fill="sky" />
<View
style={[a.justify_center, a.align_center, {gap: 6, paddingTop: 46}]}>
<Logo width={76} fill={styles.logoFill} style={styles.logoShadow} />
<Logotype
width={91}
fill={styles.logoFill}
style={styles.logoShadow}
/>
</View>
<View style={[a.pb_sm, a.pt_5xl]}>
<Logotype width={161} fill={t.atoms.text.color} />
</View>
<Text
style={[
a.text_md,
a.font_semi_bold,
t.atoms.text_contrast_medium,
a.text_center,
]}>
<Trans>What's up?</Trans>
</Text>
</View>
<View style={[a.flex_1]} />
<View
testID="signinOrCreateAccount"
style={[a.px_xl, a.gap_md, a.pb_sm]}>
<View
testID="signinOrCreateAccount"
style={[a.px_xl, a.gap_md, a.pb_2xl]}>
style={[
t.atoms.shadow_md,
{
shadowOpacity: 0.1,
shadowOffset: {
width: 0,
height: 5,
},
},
]}>
<Button
testID="createAccountButton"
onPress={() => {
@@ -66,45 +101,30 @@ export const SplashScreen = ({
msg`Opens flow to create a new Bluesky account`,
)}
size="large"
variant="solid"
color="primary">
color={isDarkMode ? 'secondary_inverted' : 'secondary'}>
<ButtonText>
<Trans>Create account</Trans>
</ButtonText>
</Button>
<Button
testID="signInButton"
onPress={() => {
onPressSignin()
playHaptic('Light')
}}
label={_(msg`Sign in`)}
accessibilityHint={_(
msg`Opens flow to sign in to your existing Bluesky account`,
)}
size="large"
variant="solid"
color="secondary">
<ButtonText>
<Trans>Sign in</Trans>
</ButtonText>
</Button>
</View>
<View
style={[
a.px_lg,
a.pt_md,
a.pb_2xl,
a.justify_center,
a.align_center,
]}>
<View>
<AppLanguageDropdown />
</View>
</View>
<View style={{height: insets.bottom}} />
</ErrorBoundary>
<Button
testID="signInButton"
onPress={() => {
onPressSignin()
playHaptic('Light')
}}
label={_(msg`Sign in`)}
accessibilityHint={_(
msg`Opens flow to sign in to your existing Bluesky account`,
)}
size="large">
<ButtonText style={{color: 'white'}}>
<Trans>Sign in</Trans>
</ButtonText>
</Button>
</View>
</Animated.View>
</CenteredView>
</>
)
}