blob: 3cebbdfc7ac72ee8893422f03a4e2b57f6fc165a (
plain) (
blame)
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
|
import {useCallback, useState} from 'react'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {web} from '#/alf'
import * as Dialog from '#/components/Dialog'
import {type StatefulControl} from '#/components/dialogs/Context'
import {useGlobalDialogsControlContext} from '#/components/dialogs/Context'
import {useAccountEmailState} from '#/components/dialogs/EmailDialog/data/useAccountEmailState'
import {Manage2FA} from '#/components/dialogs/EmailDialog/screens/Manage2FA'
import {Update} from '#/components/dialogs/EmailDialog/screens/Update'
import {VerificationReminder} from '#/components/dialogs/EmailDialog/screens/VerificationReminder'
import {Verify} from '#/components/dialogs/EmailDialog/screens/Verify'
import {type Screen, ScreenID} from '#/components/dialogs/EmailDialog/types'
export type {Screen} from '#/components/dialogs/EmailDialog/types'
export {ScreenID as EmailDialogScreenID} from '#/components/dialogs/EmailDialog/types'
export function useEmailDialogControl() {
return useGlobalDialogsControlContext().emailDialogControl
}
export function EmailDialog() {
const {_} = useLingui()
const emailDialogControl = useEmailDialogControl()
const {isEmailVerified} = useAccountEmailState()
const onClose = useCallback(() => {
if (!isEmailVerified) {
if (emailDialogControl.value?.id === ScreenID.Verify) {
emailDialogControl.value.onCloseWithoutVerifying?.()
}
}
emailDialogControl.clear()
}, [isEmailVerified, emailDialogControl])
return (
<Dialog.Outer control={emailDialogControl.control} onClose={onClose}>
<Dialog.Handle />
<Dialog.ScrollableInner
label={_(msg`Make adjustments to email settings for your account`)}
style={web({maxWidth: 400})}>
<Inner control={emailDialogControl} />
<Dialog.Close />
</Dialog.ScrollableInner>
</Dialog.Outer>
)
}
function Inner({control}: {control: StatefulControl<Screen>}) {
const [screen, showScreen] = useState(() => control.value)
if (!screen) return null
switch (screen.id) {
case ScreenID.Update: {
return <Update config={screen} showScreen={showScreen} />
}
case ScreenID.Verify: {
return <Verify config={screen} showScreen={showScreen} />
}
case ScreenID.VerificationReminder: {
return <VerificationReminder config={screen} showScreen={showScreen} />
}
case ScreenID.Manage2FA: {
return <Manage2FA config={screen} showScreen={showScreen} />
}
default: {
return null
}
}
}
|