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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
import {useCallback} from 'react'
import {View} from 'react-native'
import Animated, {
FadeIn,
FadeOut,
LayoutAnimationConfig,
LinearTransition,
StretchOutY,
} from 'react-native-reanimated'
import {ComAtprotoServerListAppPasswords} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {NativeStackScreenProps} from '@react-navigation/native-stack'
import {CommonNavigatorParams} from '#/lib/routes/types'
import {cleanError} from '#/lib/strings/errors'
import {isWeb} from '#/platform/detection'
import {
useAppPasswordDeleteMutation,
useAppPasswordsQuery,
} from '#/state/queries/app-passwords'
import {EmptyState} from '#/view/com/util/EmptyState'
import {ErrorScreen} from '#/view/com/util/error/ErrorScreen'
import * as Toast from '#/view/com/util/Toast'
import {atoms as a, useTheme} from '#/alf'
import {Admonition, colors} from '#/components/Admonition'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import {useDialogControl} from '#/components/Dialog'
import {PlusLarge_Stroke2_Corner0_Rounded as PlusIcon} from '#/components/icons/Plus'
import {Trash_Stroke2_Corner0_Rounded as TrashIcon} from '#/components/icons/Trash'
import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
import * as Layout from '#/components/Layout'
import {Loader} from '#/components/Loader'
import * as Prompt from '#/components/Prompt'
import {Text} from '#/components/Typography'
import {AddAppPasswordDialog} from './components/AddAppPasswordDialog'
import * as SettingsList from './components/SettingsList'
type Props = NativeStackScreenProps<CommonNavigatorParams, 'AppPasswords'>
export function AppPasswordsScreen({}: Props) {
const {_} = useLingui()
const {data: appPasswords, error} = useAppPasswordsQuery()
const createAppPasswordControl = useDialogControl()
return (
<Layout.Screen testID="AppPasswordsScreen">
<Layout.Header.Outer>
<Layout.Header.BackButton />
<Layout.Header.Content>
<Layout.Header.TitleText>
<Trans>App Passwords</Trans>
</Layout.Header.TitleText>
</Layout.Header.Content>
<Layout.Header.Slot />
</Layout.Header.Outer>
<Layout.Content>
{error ? (
<ErrorScreen
title={_(msg`Oops!`)}
message={_(msg`There was an issue fetching your app passwords`)}
details={cleanError(error)}
/>
) : (
<SettingsList.Container>
<SettingsList.Item>
<Admonition type="tip" style={[a.flex_1]}>
<Trans>
Use app passwords to sign in to other Bluesky clients without
giving full access to your account or password.
</Trans>
</Admonition>
</SettingsList.Item>
<SettingsList.Item>
<Button
label={_(msg`Add App Password`)}
size="large"
color="primary"
variant="solid"
onPress={() => createAppPasswordControl.open()}
style={[a.flex_1]}>
<ButtonIcon icon={PlusIcon} />
<ButtonText>
<Trans>Add App Password</Trans>
</ButtonText>
</Button>
</SettingsList.Item>
<SettingsList.Divider />
<LayoutAnimationConfig skipEntering skipExiting>
{appPasswords ? (
appPasswords.length > 0 ? (
<View style={[a.overflow_hidden]}>
{appPasswords.map(appPassword => (
<Animated.View
key={appPassword.name}
style={a.w_full}
entering={FadeIn}
exiting={isWeb ? FadeOut : StretchOutY}
layout={LinearTransition.delay(150)}>
<SettingsList.Item>
<AppPasswordCard appPassword={appPassword} />
</SettingsList.Item>
</Animated.View>
))}
</View>
) : (
<EmptyState
icon="growth"
message={_(msg`No app passwords yet`)}
/>
)
) : (
<View
style={[
a.flex_1,
a.justify_center,
a.align_center,
a.py_4xl,
]}>
<Loader size="xl" />
</View>
)}
</LayoutAnimationConfig>
</SettingsList.Container>
)}
</Layout.Content>
<AddAppPasswordDialog
control={createAppPasswordControl}
passwords={appPasswords?.map(p => p.name) || []}
/>
</Layout.Screen>
)
}
function AppPasswordCard({
appPassword,
}: {
appPassword: ComAtprotoServerListAppPasswords.AppPassword
}) {
const t = useTheme()
const {i18n, _} = useLingui()
const deleteControl = Prompt.usePromptControl()
const {mutateAsync: deleteMutation} = useAppPasswordDeleteMutation()
const onDelete = useCallback(async () => {
await deleteMutation({name: appPassword.name})
Toast.show(_(msg`App password deleted`))
}, [deleteMutation, appPassword.name, _])
return (
<View
style={[
a.w_full,
a.border,
a.rounded_sm,
a.px_md,
a.py_sm,
t.atoms.bg_contrast_25,
t.atoms.border_contrast_low,
]}>
<View
style={[
a.flex_row,
a.justify_between,
a.align_start,
a.w_full,
a.gap_sm,
]}>
<View style={[a.gap_xs]}>
<Text style={[t.atoms.text, a.text_md, a.font_bold]}>
{appPassword.name}
</Text>
<Text style={[t.atoms.text_contrast_medium]}>
<Trans>
Created{' '}
{i18n.date(appPassword.createdAt, {
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
})}
</Trans>
</Text>
</View>
<Button
label={_(msg`Delete app password`)}
variant="ghost"
color="negative"
size="small"
style={[a.bg_transparent]}
onPress={() => deleteControl.open()}>
<ButtonIcon icon={TrashIcon} />
</Button>
</View>
{appPassword.privileged && (
<View style={[a.flex_row, a.gap_sm, a.align_center, a.mt_md]}>
<WarningIcon style={[{color: colors.warning[t.scheme]}]} />
<Text style={t.atoms.text_contrast_high}>
<Trans>Allows access to direct messages</Trans>
</Text>
</View>
)}
<Prompt.Basic
control={deleteControl}
title={_(msg`Delete app password?`)}
description={_(
msg`Are you sure you want to delete the app password "${appPassword.name}"?`,
)}
onConfirm={onDelete}
confirmButtonCta={_(msg`Delete`)}
confirmButtonColor="negative"
/>
</View>
)
}
|