mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 13:32:07 +07:00
115 lines
4.4 KiB
TypeScript
115 lines
4.4 KiB
TypeScript
import InputError from '@/Components/InputError';
|
|
import { Transition } from '@headlessui/react';
|
|
import { Link, useForm, usePage } from '@inertiajs/react';
|
|
import { FormEventHandler } from 'react';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { Input } from '@/Components/ui/input';
|
|
import { Label } from '@/Components/ui/label';
|
|
|
|
export default function UpdateProfileInformation({
|
|
mustVerifyEmail,
|
|
status,
|
|
className = '',
|
|
}: {
|
|
mustVerifyEmail: boolean;
|
|
status?: string;
|
|
className?: string;
|
|
}) {
|
|
const user = usePage().props.auth.user;
|
|
|
|
const { data, setData, patch, errors, processing, recentlySuccessful } =
|
|
useForm({
|
|
name: user.name,
|
|
email: user.email,
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
patch(route('profile.update'));
|
|
};
|
|
|
|
return (
|
|
<section className={className}>
|
|
<header>
|
|
<h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">
|
|
Profile Information
|
|
</h2>
|
|
|
|
<p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
Update your account's profile information and email address.
|
|
</p>
|
|
</header>
|
|
|
|
<form onSubmit={submit} className="mt-6 space-y-6 max-w-xl">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Name</Label>
|
|
<Input
|
|
id="name"
|
|
type="text"
|
|
value={data.name}
|
|
onChange={(e) => setData('name', e.target.value)}
|
|
required
|
|
autoComplete="name"
|
|
className="block w-full"
|
|
/>
|
|
<InputError message={errors.name} />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
value={data.email}
|
|
onChange={(e) => setData('email', e.target.value)}
|
|
required
|
|
autoComplete="username"
|
|
className="block w-full"
|
|
/>
|
|
<InputError message={errors.email} />
|
|
</div>
|
|
|
|
{mustVerifyEmail && user.email_verified_at === null && (
|
|
<div>
|
|
<p className="mt-2 text-sm text-gray-800 dark:text-gray-200">
|
|
Your email address is unverified.
|
|
<Link
|
|
href={route('verification.send')}
|
|
method="post"
|
|
as="button"
|
|
className="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:text-gray-400 dark:hover:text-gray-100 dark:focus:ring-offset-gray-800"
|
|
>
|
|
Click here to re-send the verification email.
|
|
</Link>
|
|
</p>
|
|
|
|
{status === 'verification-link-sent' && (
|
|
<div className="mt-2 text-sm font-medium text-green-600 dark:text-green-400">
|
|
A new verification link has been sent to your
|
|
email address.
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex items-center gap-4">
|
|
<Button disabled={processing} className="bg-nihonbuzz-red hover:bg-nihonbuzz-red/90 text-white font-bold">Save</Button>
|
|
|
|
<Transition
|
|
show={recentlySuccessful}
|
|
enter="transition ease-in-out"
|
|
enterFrom="opacity-0"
|
|
leave="transition ease-in-out"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<p className="text-sm text-gray-600 dark:text-gray-400">
|
|
Saved.
|
|
</p>
|
|
</Transition>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
);
|
|
}
|