diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-21 11:25:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-21 11:25:42 -0800 |
commit | ca7116ec3b834644d89983b7f7f9ee63fe8f1aff (patch) | |
tree | 8158cbc4191d37c54835eaa4c579b527355988fd /src/components/forms/DateField | |
parent | 80e59d31d03afd62d41a301a85b66f6acb772c93 (diff) | |
download | voidsky-ca7116ec3b834644d89983b7f7f9ee63fe8f1aff.tar.zst |
connect inputs together in signup (#7809)
Diffstat (limited to 'src/components/forms/DateField')
-rw-r--r-- | src/components/forms/DateField/index.android.tsx | 26 | ||||
-rw-r--r-- | src/components/forms/DateField/index.tsx | 19 | ||||
-rw-r--r-- | src/components/forms/DateField/index.web.tsx | 3 | ||||
-rw-r--r-- | src/components/forms/DateField/types.ts | 5 |
4 files changed, 45 insertions, 8 deletions
diff --git a/src/components/forms/DateField/index.android.tsx b/src/components/forms/DateField/index.android.tsx index a6b6993dc..3be555238 100644 --- a/src/components/forms/DateField/index.android.tsx +++ b/src/components/forms/DateField/index.android.tsx @@ -1,4 +1,5 @@ -import React from 'react' +import {useCallback, useImperativeHandle, useState} from 'react' +import {Keyboard} from 'react-native' import DatePicker from 'react-native-date-picker' import {useTheme} from '#/alf' @@ -12,6 +13,7 @@ export const LabelText = TextField.LabelText export function DateField({ value, + inputRef, onChangeDate, label, isInvalid, @@ -20,9 +22,9 @@ export function DateField({ maximumDate, }: DateFieldProps) { const t = useTheme() - const [open, setOpen] = React.useState(false) + const [open, setOpen] = useState(false) - const onChangeInternal = React.useCallback( + const onChangeInternal = useCallback( (date: Date) => { setOpen(false) @@ -32,11 +34,25 @@ export function DateField({ [onChangeDate, setOpen], ) - const onPress = React.useCallback(() => { + useImperativeHandle( + inputRef, + () => ({ + focus: () => { + Keyboard.dismiss() + setOpen(true) + }, + blur: () => { + setOpen(false) + }, + }), + [], + ) + + const onPress = useCallback(() => { setOpen(true) }, []) - const onCancel = React.useCallback(() => { + const onCancel = useCallback(() => { setOpen(false) }, []) diff --git a/src/components/forms/DateField/index.tsx b/src/components/forms/DateField/index.tsx index eca4d5cbd..b8ecf2e6f 100644 --- a/src/components/forms/DateField/index.tsx +++ b/src/components/forms/DateField/index.tsx @@ -1,4 +1,4 @@ -import React from 'react' +import {useCallback, useImperativeHandle} from 'react' import {Keyboard, View} from 'react-native' import DatePicker from 'react-native-date-picker' import {msg, Trans} from '@lingui/macro' @@ -25,6 +25,7 @@ export const LabelText = TextField.LabelText */ export function DateField({ value, + inputRef, onChangeDate, testID, label, @@ -36,7 +37,7 @@ export function DateField({ const t = useTheme() const control = Dialog.useDialogControl() - const onChangeInternal = React.useCallback( + const onChangeInternal = useCallback( (date: Date | undefined) => { if (date) { const formatted = toSimpleDateString(date) @@ -46,6 +47,20 @@ export function DateField({ [onChangeDate], ) + useImperativeHandle( + inputRef, + () => ({ + focus: () => { + Keyboard.dismiss() + control.open() + }, + blur: () => { + control.close() + }, + }), + [control], + ) + return ( <> <DateFieldButton diff --git a/src/components/forms/DateField/index.web.tsx b/src/components/forms/DateField/index.web.tsx index 057ea1673..00f58202a 100644 --- a/src/components/forms/DateField/index.web.tsx +++ b/src/components/forms/DateField/index.web.tsx @@ -34,6 +34,7 @@ const Input = TextField.createInput(InputBase as unknown as typeof TextInput) export function DateField({ value, + inputRef, onChangeDate, label, isInvalid, @@ -58,9 +59,9 @@ export function DateField({ <TextField.Icon icon={CalendarDays} /> <Input value={toSimpleDateString(value)} + inputRef={inputRef as React.Ref<TextInput>} label={label} onChange={handleOnChange} - onChangeText={() => {}} testID={testID} accessibilityHint={accessibilityHint} // @ts-expect-error not typed as <input type="date"> even though it is one diff --git a/src/components/forms/DateField/types.ts b/src/components/forms/DateField/types.ts index 1784b884f..560d780b4 100644 --- a/src/components/forms/DateField/types.ts +++ b/src/components/forms/DateField/types.ts @@ -1,7 +1,12 @@ +export type DateFieldRef = { + focus: () => void + blur: () => void +} export type DateFieldProps = { value: string | Date onChangeDate: (date: string) => void label: string + inputRef?: React.Ref<DateFieldRef> isInvalid?: boolean testID?: string accessibilityHint?: string |