Files
zitadel/apps/login/ui/PasswordForm.tsx

105 lines
2.6 KiB
TypeScript
Raw Normal View History

"use client";
import { useState } from "react";
import { Button, ButtonVariants } from "./Button";
import { TextInput } from "./Input";
import { useForm } from "react-hook-form";
import { useRouter } from "next/navigation";
import { Spinner } from "./Spinner";
2023-05-22 16:28:47 +02:00
import Alert from "./Alert";
type Inputs = {
password: string;
};
2023-05-22 16:28:47 +02:00
type Props = {
loginName: string;
};
export default function PasswordForm({ loginName }: Props) {
const { register, handleSubmit, formState } = useForm<Inputs>({
mode: "onBlur",
});
const [error, setError] = useState<string>("");
const [loading, setLoading] = useState<boolean>(false);
const router = useRouter();
async function submitPassword(values: Inputs) {
2023-05-23 11:15:47 +02:00
setError("");
setLoading(true);
const res = await fetch("/session", {
method: "PUT",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
password: values.password,
}),
});
2023-05-22 16:28:47 +02:00
const response = await res.json();
if (!res.ok) {
setLoading(false);
2023-05-22 16:28:47 +02:00
console.log(response);
setError(response.details);
return Promise.reject(response.details);
} else {
setLoading(false);
return response;
}
}
function submitPasswordAndContinue(value: Inputs): Promise<boolean | void> {
return submitPassword(value).then((resp: any) => {
2023-05-17 15:25:25 +02:00
return router.push(`/accounts`);
});
}
const { errors } = formState;
return (
<form className="w-full">
2023-05-23 11:15:47 +02:00
<div className={`${error && "transform-gpu animate-shake"}`}>
<TextInput
type="password"
autoComplete="password"
{...register("password", { required: "This field is required" })}
label="Password"
// error={errors.username?.message as string}
/>
2023-05-22 16:28:47 +02:00
{loginName && (
<input type="hidden" name="loginName" value={loginName} />
)}
</div>
2023-05-22 16:28:47 +02:00
{error && (
<div className="py-4">
<Alert>{error}</Alert>
</div>
)}
<div className="mt-8 flex w-full flex-row items-center">
{/* <Button type="button" variant={ButtonVariants.Secondary}>
back
</Button> */}
<span className="flex-grow"></span>
<Button
type="submit"
className="self-end"
variant={ButtonVariants.Primary}
disabled={loading || !formState.isValid}
onClick={handleSubmit(submitPasswordAndContinue)}
>
{loading && <Spinner className="h-5 w-5 mr-2" />}
continue
</Button>
</div>
</form>
);
}