66af8f1fbf
* Migrate logEvent to useAnalytics * Migrate logger.metric to useAnalytics * Migrate tricky spot, fix types * Migrate remaining tricky spot * Missed one * Remove metric() from logger * Migrate useGate to useAnalytics * Remove all other StatSig mentions * Update event payload * Update logger tests * Mock expo method
250 lines
8.0 KiB
TypeScript
250 lines
8.0 KiB
TypeScript
import {useEffect, useState} from 'react'
|
|
import {Pressable, View} from 'react-native'
|
|
import {ImageBackground} from 'expo-image'
|
|
import {msg, Trans} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {FocusGuards, FocusScope} from 'radix-ui/internal'
|
|
|
|
import {useLoggedOutViewControls} from '#/state/shell/logged-out'
|
|
import {Logo} from '#/view/icons/Logo'
|
|
import {atoms as a, flatten, useBreakpoints, web} from '#/alf'
|
|
import {Button, ButtonText} from '#/components/Button'
|
|
import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Times'
|
|
import {Text} from '#/components/Typography'
|
|
import {useAnalytics} from '#/analytics'
|
|
|
|
const welcomeModalBg = require('../../assets/images/welcome-modal-bg.jpg')
|
|
|
|
interface WelcomeModalProps {
|
|
control: {
|
|
isOpen: boolean
|
|
open: () => void
|
|
close: () => void
|
|
}
|
|
}
|
|
|
|
export function WelcomeModal({control}: WelcomeModalProps) {
|
|
const {_} = useLingui()
|
|
const ax = useAnalytics()
|
|
const {requestSwitchToAccount} = useLoggedOutViewControls()
|
|
const {gtMobile} = useBreakpoints()
|
|
const [isExiting, setIsExiting] = useState(false)
|
|
const [signInLinkHovered, setSignInLinkHovered] = useState(false)
|
|
|
|
const fadeOutAndClose = (callback?: () => void) => {
|
|
setIsExiting(true)
|
|
setTimeout(() => {
|
|
control.close()
|
|
if (callback) callback()
|
|
}, 150)
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (control.isOpen) {
|
|
ax.metric('welcomeModal:presented', {})
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [control.isOpen])
|
|
|
|
const onPressCreateAccount = () => {
|
|
ax.metric('welcomeModal:signupClicked', {})
|
|
control.close()
|
|
requestSwitchToAccount({requestedAccount: 'new'})
|
|
}
|
|
|
|
const onPressExplore = () => {
|
|
ax.metric('welcomeModal:exploreClicked', {})
|
|
fadeOutAndClose()
|
|
}
|
|
|
|
const onPressSignIn = () => {
|
|
ax.metric('welcomeModal:signinClicked', {})
|
|
control.close()
|
|
requestSwitchToAccount({requestedAccount: 'existing'})
|
|
}
|
|
|
|
FocusGuards.useFocusGuards()
|
|
|
|
return (
|
|
<View
|
|
role="dialog"
|
|
aria-modal
|
|
style={[
|
|
a.fixed,
|
|
a.inset_0,
|
|
a.justify_center,
|
|
a.align_center,
|
|
{zIndex: 9999, backgroundColor: 'rgba(0,0,0,0.2)'},
|
|
web({backdropFilter: 'blur(15px)'}),
|
|
isExiting ? a.fade_out : a.fade_in,
|
|
]}>
|
|
<FocusScope.FocusScope asChild loop trapped>
|
|
<View
|
|
style={flatten([
|
|
{
|
|
maxWidth: 800,
|
|
maxHeight: 600,
|
|
width: '90%',
|
|
height: '90%',
|
|
backgroundColor: '#C0DCF0',
|
|
},
|
|
a.rounded_lg,
|
|
a.overflow_hidden,
|
|
a.zoom_in,
|
|
])}>
|
|
<ImageBackground
|
|
source={welcomeModalBg}
|
|
style={[a.flex_1, a.justify_center]}
|
|
contentFit="cover">
|
|
<View style={[a.gap_2xl, a.align_center, a.p_4xl]}>
|
|
<View
|
|
style={[
|
|
a.flex_row,
|
|
a.align_center,
|
|
a.justify_center,
|
|
a.w_full,
|
|
a.p_0,
|
|
]}>
|
|
<View style={[a.flex_row, a.align_center, a.gap_xs]}>
|
|
<Logo width={26} />
|
|
<Text
|
|
style={[
|
|
a.text_2xl,
|
|
a.font_semi_bold,
|
|
a.user_select_none,
|
|
{color: '#354358', letterSpacing: -0.5},
|
|
]}>
|
|
Bluesky
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
<View
|
|
style={[
|
|
a.gap_sm,
|
|
a.align_center,
|
|
a.pt_5xl,
|
|
a.pb_3xl,
|
|
a.mt_2xl,
|
|
]}>
|
|
<Text
|
|
style={[
|
|
gtMobile ? a.text_4xl : a.text_3xl,
|
|
a.font_semi_bold,
|
|
a.text_center,
|
|
{color: '#354358'},
|
|
web({
|
|
backgroundImage:
|
|
'linear-gradient(180deg, #313F54 0%, #667B99 83.65%, rgba(102, 123, 153, 0.50) 100%)',
|
|
backgroundClip: 'text',
|
|
WebkitBackgroundClip: 'text',
|
|
WebkitTextFillColor: 'transparent',
|
|
color: 'transparent',
|
|
lineHeight: 1.2,
|
|
letterSpacing: -0.5,
|
|
}),
|
|
]}>
|
|
<Trans>Real people.</Trans>
|
|
{'\n'}
|
|
<Trans>Real conversations.</Trans>
|
|
{'\n'}
|
|
<Trans>Social media you control.</Trans>
|
|
</Text>
|
|
</View>
|
|
<View style={[a.gap_md, a.align_center]}>
|
|
<View>
|
|
<Button
|
|
onPress={onPressCreateAccount}
|
|
label={_(msg`Create account`)}
|
|
size="large"
|
|
color="primary"
|
|
style={{
|
|
width: 200,
|
|
backgroundColor: '#006AFF',
|
|
}}>
|
|
<ButtonText>
|
|
<Trans>Create account</Trans>
|
|
</ButtonText>
|
|
</Button>
|
|
<Button
|
|
onPress={onPressExplore}
|
|
label={_(msg`Explore the app`)}
|
|
size="large"
|
|
color="primary"
|
|
variant="ghost"
|
|
style={[a.bg_transparent, {width: 200}]}
|
|
hoverStyle={[a.bg_transparent]}>
|
|
{({hovered}) => (
|
|
<ButtonText
|
|
style={[hovered && [a.underline], {color: '#006AFF'}]}>
|
|
<Trans>Explore the app</Trans>
|
|
</ButtonText>
|
|
)}
|
|
</Button>
|
|
</View>
|
|
<View style={[a.align_center, {minWidth: 200}]}>
|
|
<Text
|
|
style={[
|
|
a.text_md,
|
|
a.text_center,
|
|
{color: '#405168', lineHeight: 24},
|
|
]}>
|
|
<Trans>Already have an account?</Trans>{' '}
|
|
<Pressable
|
|
onPointerEnter={() => setSignInLinkHovered(true)}
|
|
onPointerLeave={() => setSignInLinkHovered(false)}
|
|
accessibilityRole="button"
|
|
accessibilityLabel={_(msg`Sign in`)}
|
|
accessibilityHint="">
|
|
<Text
|
|
style={[
|
|
a.font_medium,
|
|
{
|
|
color: '#006AFF',
|
|
fontSize: undefined,
|
|
},
|
|
signInLinkHovered && a.underline,
|
|
]}
|
|
onPress={onPressSignIn}>
|
|
<Trans>Sign in</Trans>
|
|
</Text>
|
|
</Pressable>
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
<Button
|
|
label={_(msg`Close welcome modal`)}
|
|
style={[
|
|
a.absolute,
|
|
{
|
|
top: 8,
|
|
right: 8,
|
|
},
|
|
a.bg_transparent,
|
|
]}
|
|
hoverStyle={[a.bg_transparent]}
|
|
onPress={() => {
|
|
ax.metric('welcomeModal:dismissed', {})
|
|
fadeOutAndClose()
|
|
}}
|
|
color="secondary"
|
|
size="small"
|
|
variant="ghost"
|
|
shape="round">
|
|
{({hovered, pressed, focused}) => (
|
|
<XIcon
|
|
size="md"
|
|
style={{
|
|
color: '#354358',
|
|
opacity: hovered || pressed || focused ? 1 : 0.7,
|
|
}}
|
|
/>
|
|
)}
|
|
</Button>
|
|
</ImageBackground>
|
|
</View>
|
|
</FocusScope.FocusScope>
|
|
</View>
|
|
)
|
|
}
|