react-async-hook library provides useAsyncCallback that does the same thing as useMutation

This commit is contained in:
Athou
2022-08-13 18:38:11 +02:00
parent 6c6cc8d85b
commit 906acb217a
15 changed files with 122 additions and 152 deletions

View File

@@ -7,8 +7,8 @@ import { useAppDispatch, useAppSelector } from "app/store"
import { RegistrationRequest } from "app/types"
import { Alert } from "components/Alert"
import { Logo } from "components/Logo"
import { useAsyncCallback } from "react-async-hook"
import { Link } from "react-router-dom"
import useMutation from "use-mutation"
export function RegistrationPage() {
const serverInfos = useAppSelector(state => state.server.serverInfos)
@@ -22,12 +22,11 @@ export function RegistrationPage() {
},
})
const [register, registerResult] = useMutation(client.user.register, {
const register = useAsyncCallback(client.user.register, {
onSuccess: () => {
dispatch(redirectToRootCategory())
},
})
const errors = errorToStrings(registerResult.error)
return (
<Container size="xs">
@@ -48,13 +47,13 @@ export function RegistrationPage() {
)}
{serverInfos?.allowRegistrations && (
<>
{errors.length > 0 && (
{register.error && (
<Box mb="md">
<Alert messages={errors} />
<Alert messages={errorToStrings(register.error)} />
</Box>
)}
<form onSubmit={form.onSubmit(register)}>
<form onSubmit={form.onSubmit(register.execute)}>
<Stack>
<TextInput label="User Name" placeholder="User Name" {...form.getInputProps("name")} size="md" required />
<TextInput
@@ -72,7 +71,7 @@ export function RegistrationPage() {
size="md"
required
/>
<Button type="submit" loading={registerResult.status === "running"}>
<Button type="submit" loading={register.loading}>
<Trans>Sign up</Trans>
</Button>
<Center>