106 lines
3.3 KiB
TypeScript
106 lines
3.3 KiB
TypeScript
import {useCallback, useState} from 'react'
|
|
import {View} from 'react-native'
|
|
import {msg} from '@lingui/core/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {Trans} from '@lingui/react/macro'
|
|
|
|
import {logger} from '#/logger'
|
|
import {useModerationOpts} from '#/state/preferences/moderation-opts'
|
|
import {useVerificationCreateMutation} from '#/state/queries/verification/useVerificationCreateMutation'
|
|
import {atoms as a, useBreakpoints} from '#/alf'
|
|
import {Admonition} from '#/components/Admonition'
|
|
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
|
|
import {type DialogControlProps} from '#/components/Dialog'
|
|
import * as Dialog from '#/components/Dialog'
|
|
import {VerifiedCheck} from '#/components/icons/VerifiedCheck'
|
|
import {Loader} from '#/components/Loader'
|
|
import * as ProfileCard from '#/components/ProfileCard'
|
|
import * as Prompt from '#/components/Prompt'
|
|
import * as Toast from '#/components/Toast'
|
|
import type * as bsky from '#/types/bsky'
|
|
|
|
export function VerificationCreatePrompt({
|
|
control,
|
|
profile,
|
|
}: {
|
|
control: DialogControlProps
|
|
profile: bsky.profile.AnyProfileView
|
|
}) {
|
|
const {_} = useLingui()
|
|
const {gtMobile} = useBreakpoints()
|
|
const moderationOpts = useModerationOpts()
|
|
const {mutateAsync: create, isPending} = useVerificationCreateMutation()
|
|
const [error, setError] = useState(``)
|
|
const onConfirm = useCallback(async () => {
|
|
try {
|
|
await create({profile})
|
|
Toast.show(_(msg`Successfully verified`))
|
|
control.close()
|
|
} catch (e) {
|
|
setError(_(msg`Verification failed, please try again.`))
|
|
logger.error('Failed to create a verification', {
|
|
safeMessage: e,
|
|
})
|
|
}
|
|
}, [_, profile, create, control])
|
|
|
|
return (
|
|
<Prompt.Outer control={control}>
|
|
<View style={[a.flex_row, a.align_center, a.gap_sm, a.pb_sm]}>
|
|
<VerifiedCheck width={18} />
|
|
<Prompt.TitleText style={[a.pb_0]}>
|
|
{_(msg`Verify this account?`)}
|
|
</Prompt.TitleText>
|
|
</View>
|
|
<Prompt.DescriptionText>
|
|
{_(msg`This action can be undone at any time.`)}
|
|
</Prompt.DescriptionText>
|
|
|
|
{moderationOpts ? (
|
|
<ProfileCard.Header>
|
|
<ProfileCard.Avatar
|
|
profile={profile}
|
|
moderationOpts={moderationOpts}
|
|
/>
|
|
<ProfileCard.NameAndHandle
|
|
profile={profile}
|
|
moderationOpts={moderationOpts}
|
|
/>
|
|
</ProfileCard.Header>
|
|
) : null}
|
|
|
|
{error && (
|
|
<View style={[a.pt_lg]}>
|
|
<Admonition type="error">{error}</Admonition>
|
|
</View>
|
|
)}
|
|
|
|
<View style={[a.pt_xl]}>
|
|
{profile.displayName ? (
|
|
<Prompt.Actions>
|
|
<Button
|
|
variant="solid"
|
|
color="primary"
|
|
size={gtMobile ? 'small' : 'large'}
|
|
label={_(msg`Verify account`)}
|
|
onPress={onConfirm}>
|
|
<ButtonText>{_(msg`Verify account`)}</ButtonText>
|
|
{isPending && <ButtonIcon icon={Loader} />}
|
|
</Button>
|
|
<Prompt.Cancel />
|
|
</Prompt.Actions>
|
|
) : (
|
|
<Admonition type="warning">
|
|
<Trans>
|
|
This user does not have a display name, and therefore cannot be
|
|
verified.
|
|
</Trans>
|
|
</Admonition>
|
|
)}
|
|
</View>
|
|
|
|
<Dialog.Close />
|
|
</Prompt.Outer>
|
|
)
|
|
}
|