1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
import {useCallback, useState} from 'react'
import {View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {logger} from '#/logger'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useVerificationCreateMutation} from '#/state/queries/verification/useVerificationCreateMutation'
import * as Toast from '#/view/com/util/Toast'
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 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>
)
}
|