Ok decent fallback with isExempt

This commit is contained in:
Eric Bailey
2025-06-26 21:37:52 -05:00
parent 1a13016d5e
commit 7d4923fff4
3 changed files with 33 additions and 14 deletions
@@ -18,6 +18,12 @@ export function AgeRestrictedScreen({
return (
fallback || (
<Layout.Screen>
<Layout.Header.Outer>
<Layout.Header.Content>
<Layout.Header.TitleText> </Layout.Header.TitleText>
</Layout.Header.Content>
<Layout.Header.Slot />
</Layout.Header.Outer>
<Layout.Content />
</Layout.Screen>
)
@@ -7,9 +7,15 @@ export function True({
children: React.ReactNode
fallback?: React.ReactNode
}) {
const {isLoaded, isAgeRestricted} = useAgeAssuranceContext()
const {isLoaded, isAgeRestricted, isExempt} = useAgeAssuranceContext()
/**
* For the true case, if the user is exempt, return nothing
*/
if (isExempt) return null
const isDefinitelyAgeRestricted = isLoaded && isAgeRestricted
const notSureYet = isAgeRestricted
return isDefinitelyAgeRestricted
? children
: notSureYet
@@ -24,9 +30,16 @@ export function False({
children: React.ReactNode
fallback?: React.ReactNode
}) {
const {isLoaded, isAgeRestricted} = useAgeAssuranceContext()
const {isLoaded, isAgeRestricted, isExempt} = useAgeAssuranceContext()
/**
* For the false case, if the user is exempt, return children
*/
if (isExempt) return children
const isDefinitelyNotAgeRestricted = isLoaded && !isAgeRestricted
const notSureYet = !isAgeRestricted
return isDefinitelyNotAgeRestricted
? children
: notSureYet
+12 -12
View File
@@ -12,7 +12,9 @@ import {useGeolocation} from '#/state/geolocation'
import {useAgent} from '#/state/session'
const logger = Logger.create(Logger.Context.AgeAssurance)
const ageAssuranceQueryKey = ['ageAssurance'] as const
export const ageAssuranceQueryKeyRoot = 'ageAssurance' as const
export const createAgeAssuranceQueryKey = (did: string) =>
[ageAssuranceQueryKeyRoot, did] as const
const DEFAULT_AGE_ASSURANCE_STATE: TempAgeAssuranceState = {
status: 'unknown',
}
@@ -29,10 +31,7 @@ export type AgeAssuranceContextType = {
* age assurance state retrieved from the server.
*/
isAgeRestricted: boolean
/**
* The current age assurance status retrieved from the server.
*/
status: TempAgeAssuranceState['status']
isExempt: boolean
/**
* The last time the age assurance state was attempted by the user.
*/
@@ -53,7 +52,7 @@ export type AgeAssuranceAPIContextType = {
const AgeAssuranceContext = createContext<AgeAssuranceContextType>({
isLoaded: false,
isAgeRestricted: false,
status: 'unknown',
isExempt: false,
lastInitiatedAt: undefined,
hasInitiated: false,
})
@@ -69,7 +68,8 @@ export function Provider({children}: {children: React.ReactNode}) {
const {geolocation} = useGeolocation()
const {data, refetch} = useQuery({
queryKey: ageAssuranceQueryKey,
enabled: !!agent.session,
queryKey: createAgeAssuranceQueryKey(agent.session?.did ?? 'never'),
async queryFn() {
try {
const {data} = await wait(
@@ -99,15 +99,15 @@ export function Provider({children}: {children: React.ReactNode}) {
})
const ageAssuranceContext = useMemo<AgeAssuranceContextType>(() => {
const isLoaded = Boolean(data)
const isAgeRestrictedGeo = !!geolocation?.isAgeRestrictedGeo
const {status, lastInitiatedAt} = data || DEFAULT_AGE_ASSURANCE_STATE
const ctx: AgeAssuranceContextType = {
isLoaded: !!data,
status,
isLoaded,
lastInitiatedAt,
hasInitiated: !!lastInitiatedAt,
isAgeRestricted: Boolean(
geolocation?.isAgeRestrictedGeo && status !== 'assured',
),
isExempt: !isAgeRestrictedGeo,
isAgeRestricted: Boolean(isAgeRestrictedGeo && status !== 'assured'),
}
logger.debug(`context`, ctx)