Smol tweaks to bday dialog

This commit is contained in:
Eric Bailey
2024-03-18 10:49:41 -05:00
parent 1b10c7bc08
commit 14489e408e
+54 -47
View File
@@ -1,48 +1,64 @@
import React from 'react' import React from 'react'
import {useLingui} from '@lingui/react' import {useLingui} from '@lingui/react'
import {Trans, msg} from '@lingui/macro' import {Trans, msg} from '@lingui/macro'
import {View} from 'react-native'
import * as Dialog from '#/components/Dialog' import * as Dialog from '#/components/Dialog'
import {Text} from '../Typography' import {Text} from '../Typography'
import {DateInput} from '#/view/com/util/forms/DateInput'
import {logger} from '#/logger' import {logger} from '#/logger'
import { import {
usePreferencesQuery,
usePreferencesSetBirthDateMutation, usePreferencesSetBirthDateMutation,
UsePreferencesQueryResponse, UsePreferencesQueryResponse,
} from '#/state/queries/preferences' } from '#/state/queries/preferences'
import {Button, ButtonText} from '../Button' import {Button, ButtonIcon, ButtonText} from '../Button'
import {atoms as a, useTheme} from '#/alf' import {atoms as a, useTheme} from '#/alf'
import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' import {ErrorMessage} from '#/view/com/util/error/ErrorMessage'
import {cleanError} from '#/lib/strings/errors' import {cleanError} from '#/lib/strings/errors'
import {ActivityIndicator, View} from 'react-native'
import {isIOS, isWeb} from '#/platform/detection' import {isIOS, isWeb} from '#/platform/detection'
import {Loader} from '#/components/Loader'
import {DateField, utils} from '#/components/forms/DateField'
export function BirthDateSettingsDialog({ export function BirthDateSettingsDialog({
control, control,
preferences,
}: { }: {
control: Dialog.DialogControlProps control: Dialog.DialogControlProps
preferences: UsePreferencesQueryResponse | undefined
}) { }) {
const t = useTheme()
const {_} = useLingui() const {_} = useLingui()
const {isPending, isError, error, mutateAsync} = const {isLoading, error, data: preferences} = usePreferencesQuery()
usePreferencesSetBirthDateMutation()
return ( return (
<Dialog.Outer control={control}> <Dialog.Outer control={control}>
<Dialog.Handle /> <Dialog.Handle />
<Dialog.ScrollableInner label={_(msg`My Birthday`)}> <Dialog.ScrollableInner label={_(msg`My Birthday`)}>
{preferences && !isPending ? ( <View style={[a.gap_sm, a.pb_lg]}>
<BirthdayInner <Text style={[a.text_2xl, a.font_bold]}>
control={control} <Trans>My Birthday</Trans>
preferences={preferences} </Text>
isError={isError} <Text style={[a.text_md, t.atoms.text_contrast_medium]}>
error={error} <Trans>This information is not shared with other users.</Trans>
setBirthDate={mutateAsync} </Text>
</View>
{isLoading ? (
<Loader size="xl" />
) : error || !preferences ? (
<ErrorMessage
message={
error?.toString() ||
_(
msg`We were unable to load your birth date preferences. Please try again.`,
)
}
style={[a.rounded_sm]}
/> />
) : ( ) : (
<ActivityIndicator size="large" style={a.my_5xl} /> <BirthdayInner control={control} preferences={preferences} />
)} )}
<Dialog.Close />
</Dialog.ScrollableInner> </Dialog.ScrollableInner>
</Dialog.Outer> </Dialog.Outer>
) )
@@ -51,58 +67,48 @@ export function BirthDateSettingsDialog({
function BirthdayInner({ function BirthdayInner({
control, control,
preferences, preferences,
isError,
error,
setBirthDate,
}: { }: {
control: Dialog.DialogControlProps control: Dialog.DialogControlProps
preferences: UsePreferencesQueryResponse preferences: UsePreferencesQueryResponse
isError: boolean
error: unknown
setBirthDate: (args: {birthDate: Date}) => Promise<unknown>
}) { }) {
const {_} = useLingui() const {_} = useLingui()
const [date, setDate] = React.useState(preferences.birthDate || new Date()) const [date, setDate] = React.useState(
const t = useTheme() utils.toSimpleDateString(preferences.birthDate || new Date()),
)
const hasChanged = date !== preferences.birthDate const {
isPending,
isError,
error,
mutateAsync: setBirthDate,
} = usePreferencesSetBirthDateMutation()
const hasChanged = React.useMemo(
() =>
date !== utils.toSimpleDateString(preferences.birthDate || new Date()),
[date, preferences.birthDate],
)
const onSave = React.useCallback(async () => { const onSave = React.useCallback(async () => {
try { try {
// skip if date is the same // skip if date is the same
if (hasChanged) { if (hasChanged) {
await setBirthDate({birthDate: date}) await setBirthDate({birthDate: new Date(date)})
} }
control.close() control.close()
} catch (e) { } catch (e: any) {
logger.error(`setBirthDate failed`, {message: e}) logger.error(`setBirthDate failed`, {message: e.message})
} }
}, [date, setBirthDate, control, hasChanged]) }, [date, setBirthDate, control, hasChanged])
return ( return (
<View style={a.gap_lg} testID="birthDateSettingsDialog"> <View style={a.gap_lg} testID="birthDateSettingsDialog">
<View style={[a.gap_sm]}>
<Text style={[a.text_2xl, a.font_bold]}>
<Trans>My Birthday</Trans>
</Text>
<Text style={t.atoms.text_contrast_medium}>
<Trans>This information is not shared with other users.</Trans>
</Text>
</View>
<View style={isIOS && [a.w_full, a.align_center]}> <View style={isIOS && [a.w_full, a.align_center]}>
<DateInput <DateField
handleAsUTC label={_(msg`Enter your birthday`)}
testID="birthdayInput"
value={date} value={date}
onChange={setDate} onChangeDate={setDate}
buttonType="default-light"
buttonStyle={[a.rounded_sm]}
buttonLabelType="lg"
accessibilityLabel={_(msg`Birthday`)}
accessibilityHint={_(msg`Enter your birth date`)}
accessibilityLabelledBy="birthDate"
/> />
</View> </View>
{isError ? ( {isError ? (
<ErrorMessage message={cleanError(error)} style={[a.rounded_sm]} /> <ErrorMessage message={cleanError(error)} style={[a.rounded_sm]} />
) : undefined} ) : undefined}
@@ -110,13 +116,14 @@ function BirthdayInner({
<View style={isWeb && [a.flex_row, a.justify_end]}> <View style={isWeb && [a.flex_row, a.justify_end]}>
<Button <Button
label={hasChanged ? _(msg`Save birthday`) : _(msg`Done`)} label={hasChanged ? _(msg`Save birthday`) : _(msg`Done`)}
size={isWeb ? 'small' : 'medium'} size="medium"
onPress={onSave} onPress={onSave}
variant="solid" variant="solid"
color="primary"> color="primary">
<ButtonText> <ButtonText>
{hasChanged ? <Trans>Save</Trans> : <Trans>Done</Trans>} {hasChanged ? <Trans>Save</Trans> : <Trans>Done</Trans>}
</ButtonText> </ButtonText>
{isPending && <ButtonIcon icon={Loader} />}
</Button> </Button>
</View> </View>
</View> </View>