341 lines
12 KiB
TypeScript
341 lines
12 KiB
TypeScript
import {useCallback, useEffect} from 'react'
|
|
import {ScrollView, View} from 'react-native'
|
|
import {useSafeAreaInsets} from 'react-native-safe-area-context'
|
|
import {msg, Trans} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
|
|
import {dateDiff, useGetTimeAgo} from '#/lib/hooks/useTimeAgo'
|
|
import {logger} from '#/logger'
|
|
import {isWeb} from '#/platform/detection'
|
|
import {isNative} from '#/platform/detection'
|
|
import {useIsBirthDateUpdateAllowed} from '#/state/birthDate'
|
|
import {useSessionApi} from '#/state/session'
|
|
import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
|
|
import {Admonition} from '#/components/Admonition'
|
|
import {AgeAssuranceAppealDialog} from '#/components/ageAssurance/AgeAssuranceAppealDialog'
|
|
import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge'
|
|
import {AgeAssuranceInitDialog} from '#/components/ageAssurance/AgeAssuranceInitDialog'
|
|
import {AgeAssuranceRedirectDialog} from '#/components/ageAssurance/AgeAssuranceRedirectDialog'
|
|
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
|
import {useDialogControl} from '#/components/Dialog'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {BirthDateSettingsDialog} from '#/components/dialogs/BirthDateSettings'
|
|
import {DeviceLocationRequestDialog} from '#/components/dialogs/DeviceLocationRequestDialog'
|
|
import {Full as Logo} from '#/components/icons/Logo'
|
|
import {ShieldCheck_Stroke2_Corner0_Rounded as ShieldIcon} from '#/components/icons/Shield'
|
|
import {createStaticClick, SimpleInlineLinkText} from '#/components/Link'
|
|
import {Outlet as PortalOutlet} from '#/components/Portal'
|
|
import * as Toast from '#/components/Toast'
|
|
import {Text} from '#/components/Typography'
|
|
import {BottomSheetOutlet} from '#/../modules/bottom-sheet'
|
|
import {useAgeAssurance} from '#/ageAssurance'
|
|
import {useAgeAssuranceDataContext} from '#/ageAssurance/data'
|
|
import {useComputeAgeAssuranceRegionAccess} from '#/ageAssurance/useComputeAgeAssuranceRegionAccess'
|
|
import {
|
|
isLegacyBirthdateBug,
|
|
useAgeAssuranceRegionConfig,
|
|
} from '#/ageAssurance/util'
|
|
import {useDeviceGeolocationApi} from '#/geolocation'
|
|
|
|
export function NoAccessScreen() {
|
|
const t = useTheme()
|
|
const {_} = useLingui()
|
|
const {gtPhone} = useBreakpoints()
|
|
const insets = useSafeAreaInsets()
|
|
const birthdayControl = useDialogControl()
|
|
const {data} = useAgeAssuranceDataContext()
|
|
const region = useAgeAssuranceRegionConfig()
|
|
const isBirthdateUpdateAllowed = useIsBirthDateUpdateAllowed()
|
|
const {logoutCurrentAccount} = useSessionApi()
|
|
|
|
const isAARegion = !!region
|
|
const hasDeclaredAge = data?.declaredAge !== undefined
|
|
const canUpdateBirthday =
|
|
isBirthdateUpdateAllowed || isLegacyBirthdateBug(data?.birthdate || '')
|
|
|
|
useEffect(() => {
|
|
// just counting overall hits here
|
|
logger.metric(`blockedGeoOverlay:shown`, {})
|
|
}, [])
|
|
|
|
const textStyles = [a.text_md, a.leading_normal]
|
|
|
|
const blocks = [
|
|
_(
|
|
msg`You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app.`,
|
|
),
|
|
]
|
|
|
|
const onPressLogout = useCallback(() => {
|
|
if (isWeb) {
|
|
// We're switching accounts, which remounts the entire app.
|
|
// On mobile, this gets us Home, but on the web we also need reset the URL.
|
|
// We can't change the URL via a navigate() call because the navigator
|
|
// itself is about to unmount, and it calls pushState() too late.
|
|
// So we change the URL ourselves. The navigator will pick it up on remount.
|
|
history.pushState(null, '', '/')
|
|
}
|
|
logoutCurrentAccount('AgeAssuranceNoAccessScreen')
|
|
}, [logoutCurrentAccount])
|
|
|
|
const birthdayUpdateText = canUpdateBirthday ? (
|
|
<Text style={[textStyles]}>
|
|
<Trans>
|
|
If your birth date is not accurate, you can update it by{' '}
|
|
<SimpleInlineLinkText
|
|
label={_(msg`Click here to update your birthday`)}
|
|
style={[textStyles]}
|
|
{...createStaticClick(() => {
|
|
birthdayControl.open()
|
|
})}>
|
|
clicking here
|
|
</SimpleInlineLinkText>
|
|
.
|
|
</Trans>
|
|
</Text>
|
|
) : null
|
|
|
|
return (
|
|
<>
|
|
<ScrollView
|
|
contentContainerStyle={[
|
|
a.px_2xl,
|
|
{
|
|
paddingTop: isWeb ? a.p_5xl.padding : insets.top + a.p_2xl.padding,
|
|
paddingBottom: 100,
|
|
},
|
|
]}>
|
|
<View
|
|
style={[
|
|
a.mx_auto,
|
|
a.w_full,
|
|
web({
|
|
maxWidth: 380,
|
|
paddingTop: gtPhone ? '8vh' : undefined,
|
|
}),
|
|
{
|
|
gap: 32,
|
|
},
|
|
]}>
|
|
<View style={[a.align_start]}>
|
|
<AgeAssuranceBadge />
|
|
</View>
|
|
|
|
{hasDeclaredAge ? (
|
|
<>
|
|
{isAARegion ? (
|
|
<>
|
|
<View style={[a.gap_lg]}>
|
|
{blocks.map((block, index) => (
|
|
<Text key={index} style={[textStyles]}>
|
|
{block}
|
|
</Text>
|
|
))}
|
|
|
|
{birthdayUpdateText}
|
|
</View>
|
|
|
|
<AccessSection />
|
|
</>
|
|
) : (
|
|
<View style={[a.gap_lg]}>
|
|
<Text style={[textStyles]}>
|
|
<Trans>
|
|
Unfortunately, the birth date you have saved to your
|
|
profile makes you too young to access Bluesky.
|
|
</Trans>
|
|
</Text>
|
|
|
|
{birthdayUpdateText}
|
|
</View>
|
|
)}
|
|
</>
|
|
) : (
|
|
<View style={[a.gap_lg]}>
|
|
<Text style={[textStyles]}>
|
|
<Trans>
|
|
Looks like you haven't added your birth date. You must provide
|
|
an accurate date of birth to use Bluesky.
|
|
</Trans>
|
|
</Text>
|
|
<Button
|
|
color="primary"
|
|
size="large"
|
|
label={_(msg`Click here to update your birthday`)}
|
|
onPress={() => birthdayControl.open()}>
|
|
<ButtonText>
|
|
<Trans>Add your birth date</Trans>
|
|
</ButtonText>
|
|
</Button>
|
|
</View>
|
|
)}
|
|
|
|
<View style={[a.pt_lg, a.gap_xl]}>
|
|
<Logo width={120} textFill={t.atoms.text.color} />
|
|
<Text style={[a.text_sm, a.italic, t.atoms.text_contrast_medium]}>
|
|
To log out,{' '}
|
|
<SimpleInlineLinkText
|
|
label={_(msg`Click here to log out`)}
|
|
{...createStaticClick(() => {
|
|
onPressLogout()
|
|
})}>
|
|
click here
|
|
</SimpleInlineLinkText>
|
|
.
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</ScrollView>
|
|
|
|
<BirthDateSettingsDialog control={birthdayControl} />
|
|
<AgeAssuranceRedirectDialog />
|
|
|
|
{/*
|
|
* While this blocking overlay is up, other dialogs in the shell
|
|
* are not mounted, so it _should_ be safe to use these here
|
|
* without fear of other modals showing up.
|
|
*/}
|
|
<BottomSheetOutlet />
|
|
<PortalOutlet />
|
|
</>
|
|
)
|
|
}
|
|
|
|
function AccessSection() {
|
|
const t = useTheme()
|
|
const {_, i18n} = useLingui()
|
|
const control = useDialogControl()
|
|
const appealControl = Dialog.useDialogControl()
|
|
const locationControl = Dialog.useDialogControl()
|
|
const getTimeAgo = useGetTimeAgo()
|
|
const {setDeviceGeolocation} = useDeviceGeolocationApi()
|
|
const computeAgeAssuranceRegionAccess = useComputeAgeAssuranceRegionAccess()
|
|
|
|
const aa = useAgeAssurance()
|
|
const {status, lastInitiatedAt} = aa.state
|
|
const isBlocked = status === aa.Status.Blocked
|
|
const hasInitiated = !!lastInitiatedAt
|
|
const timeAgo = lastInitiatedAt
|
|
? getTimeAgo(lastInitiatedAt, new Date())
|
|
: null
|
|
const diff = lastInitiatedAt
|
|
? dateDiff(lastInitiatedAt, new Date(), 'down')
|
|
: null
|
|
|
|
return (
|
|
<>
|
|
<AgeAssuranceInitDialog control={control} />
|
|
<AgeAssuranceAppealDialog control={appealControl} />
|
|
|
|
<View style={[a.gap_xl]}>
|
|
{isBlocked ? (
|
|
<Admonition type="warning">
|
|
<Trans>
|
|
You are currently unable to access Bluesky's Age Assurance flow.
|
|
Please{' '}
|
|
<SimpleInlineLinkText
|
|
label={_(msg`Contact our moderation team`)}
|
|
{...createStaticClick(() => {
|
|
appealControl.open()
|
|
logger.metric('ageAssurance:appealDialogOpen', {})
|
|
})}>
|
|
contact our moderation team
|
|
</SimpleInlineLinkText>{' '}
|
|
if you believe this is an error.
|
|
</Trans>
|
|
</Admonition>
|
|
) : (
|
|
<>
|
|
<View style={[a.gap_md]}>
|
|
<Button
|
|
label={_(msg`Verify now`)}
|
|
size="large"
|
|
color={hasInitiated ? 'secondary' : 'primary'}
|
|
onPress={() => {
|
|
control.open()
|
|
logger.metric('ageAssurance:initDialogOpen', {
|
|
hasInitiatedPreviously: hasInitiated,
|
|
})
|
|
}}>
|
|
<ButtonIcon icon={ShieldIcon} />
|
|
<ButtonText>
|
|
{hasInitiated ? (
|
|
<Trans>Verify again</Trans>
|
|
) : (
|
|
<Trans>Verify now</Trans>
|
|
)}
|
|
</ButtonText>
|
|
</Button>
|
|
|
|
{lastInitiatedAt && timeAgo && diff ? (
|
|
<Text
|
|
style={[a.text_sm, a.italic, t.atoms.text_contrast_medium]}
|
|
title={i18n.date(lastInitiatedAt, {
|
|
dateStyle: 'medium',
|
|
timeStyle: 'medium',
|
|
})}>
|
|
{diff.value === 0 ? (
|
|
<Trans>Last initiated just now</Trans>
|
|
) : (
|
|
<Trans>Last initiated {timeAgo} ago</Trans>
|
|
)}
|
|
</Text>
|
|
) : (
|
|
<Text
|
|
style={[a.text_sm, a.italic, t.atoms.text_contrast_medium]}>
|
|
<Trans>Age assurance only takes a few minutes</Trans>
|
|
</Text>
|
|
)}
|
|
</View>
|
|
</>
|
|
)}
|
|
|
|
<View style={[a.gap_xs]}>
|
|
{isNative && (
|
|
<>
|
|
<Admonition>
|
|
<Trans>
|
|
Is your location not accurate?{' '}
|
|
<SimpleInlineLinkText
|
|
label={_(msg`Confirm your location`)}
|
|
{...createStaticClick(() => {
|
|
locationControl.open()
|
|
})}>
|
|
Tap here to confirm your location.
|
|
</SimpleInlineLinkText>{' '}
|
|
</Trans>
|
|
</Admonition>
|
|
|
|
<DeviceLocationRequestDialog
|
|
control={locationControl}
|
|
onLocationAcquired={props => {
|
|
// TODO test this
|
|
const access = computeAgeAssuranceRegionAccess(
|
|
props.geolocation,
|
|
)
|
|
if (access !== aa.Access.Full) {
|
|
props.disableDialogAction()
|
|
props.setDialogError(
|
|
_(
|
|
msg`We're sorry, but based on your device's location, you are currently located in a region that requires age assurance.`,
|
|
),
|
|
)
|
|
} else {
|
|
props.closeDialog(() => {
|
|
// set this after close!
|
|
setDeviceGeolocation(props.geolocation)
|
|
Toast.show(_(msg`Thanks! You're all set.`), {
|
|
type: 'success',
|
|
})
|
|
})
|
|
}
|
|
}}
|
|
/>
|
|
</>
|
|
)}
|
|
</View>
|
|
</View>
|
|
</>
|
|
)
|
|
}
|