From c3d3f91349de5e3b63e5f05c4fbb2346fadebad7 Mon Sep 17 00:00:00 2001 From: Mary Date: Thu, 1 Feb 2024 06:55:52 +0700 Subject: fix: submit app password on enter --- src/view/com/modals/AddAppPasswords.tsx | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index 5048a0041..040d294bc 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -62,7 +62,8 @@ export function Component({}: {}) { const {_} = useLingui() const {closeModal} = useModalControls() const {data: passwords} = useAppPasswordsQuery() - const createMutation = useAppPasswordCreateMutation() + const {mutateAsync: mutateAppPassword, isPending} = + useAppPasswordCreateMutation() const [name, setName] = useState( shadesOfBlue[Math.floor(Math.random() * shadesOfBlue.length)], ) @@ -107,7 +108,7 @@ export function Component({}: {}) { } try { - const newPassword = await createMutation.mutateAsync({name}) + const newPassword = await mutateAppPassword({name}) if (newPassword) { setAppPassword(newPassword.password) } else { @@ -136,6 +137,17 @@ export function Component({}: {}) { } } + const textInputRef = React.useCallback((node: TextInput | null) => { + if (!node) { + return + } + + // `selectTextOnFocus` isn't working with `autoFocus={true}` or without a timeout going. + setTimeout(() => { + node.focus() + }, 0) + }, []) + return ( @@ -145,6 +157,7 @@ export function Component({}: {}) { Please enter a unique name for this App Password or use our randomly generated one. + asdq42 ) : ( @@ -159,6 +172,7 @@ export function Component({}: {}) { {!appPassword ? ( Date: Tue, 6 Feb 2024 12:07:06 -0800 Subject: Cat on keyboard --- src/view/com/modals/AddAppPasswords.tsx | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index 040d294bc..4508e6857 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -157,7 +157,6 @@ export function Component({}: {}) { Please enter a unique name for this App Password or use our randomly generated one. - asdq42 ) : ( -- cgit 1.4.1 From d38583781200437b1a01f8a016694c4a8d036aad Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 6 Feb 2024 12:13:09 -0800 Subject: Go back to autofocus and small ui tweak --- src/view/com/modals/AddAppPasswords.tsx | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'src') diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index 4508e6857..a8913dd54 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -137,17 +137,6 @@ export function Component({}: {}) { } } - const textInputRef = React.useCallback((node: TextInput | null) => { - if (!node) { - return - } - - // `selectTextOnFocus` isn't working with `autoFocus={true}` or without a timeout going. - setTimeout(() => { - node.focus() - }, 0) - }, []) - return ( @@ -171,7 +160,6 @@ export function Component({}: {}) { {!appPassword ? (