siakad-itm/resources/js/pages/admin/settings/security.tsx
Yoga Pangestu 9626181d46
Some checks failed
tests / ci (pull_request) Has been cancelled
feat: enhance UI components with icons and improve navigation links
2026-08-25 23:42:14 +07:00

137 lines
5.3 KiB
TypeScript

import { Form, Head } from '@inertiajs/react';
import { Save } from 'lucide-react';
import { useRef } from 'react';
import SecurityController from '@/actions/App/Http/Controllers/Admin/Settings/SecurityController';
import Heading from '@/components/heading';
import InputError from '@/components/input-error';
import PasswordInput from '@/components/password-input';
import { Button } from '@/components/ui/button';
import { Label } from '@/components/ui/label';
import { edit } from '@/routes/admin/settings/security';
type Props = {
passwordRules: string;
};
export default function Security({ passwordRules }: Props) {
const passwordInput = useRef<HTMLInputElement>(null);
const currentPasswordInput = useRef<HTMLInputElement>(null);
return (
<>
<Head title="Pengaturan Kata Sandi" />
<h1 className="sr-only">Pengaturan Kata Sandi</h1>
<div className="space-y-6">
<Heading
variant="small"
title="Kata Sandi"
description="Pastikan akun Anda menggunakan kata sandi yang panjang dan acak agar tetap aman"
/>
<Form
{...SecurityController.update.form()}
options={{
preserveScroll: true,
}}
resetOnError={[
'password',
'password_confirmation',
'current_password',
]}
resetOnSuccess
onError={(errors) => {
if (errors.password) {
passwordInput.current?.focus();
}
if (errors.current_password) {
currentPasswordInput.current?.focus();
}
}}
className="space-y-6"
>
{({ errors, processing }) => (
<>
<div className="grid gap-4 md:grid-cols-2">
<div className="grid gap-2 md:col-span-2">
<Label htmlFor="current_password">
Kata Sandi Saat Ini
</Label>
<PasswordInput
id="current_password"
ref={currentPasswordInput}
name="current_password"
autoComplete="current-password"
placeholder="Kata sandi saat ini"
/>
<InputError
message={errors.current_password}
/>
</div>
<div className="grid gap-2">
<Label htmlFor="password">
Kata Sandi Baru
</Label>
<PasswordInput
id="password"
ref={passwordInput}
name="password"
autoComplete="new-password"
placeholder="Kata sandi baru"
passwordrules={passwordRules}
/>
<InputError message={errors.password} />
</div>
<div className="grid gap-2">
<Label htmlFor="password_confirmation">
Konfirmasi Kata Sandi
</Label>
<PasswordInput
id="password_confirmation"
name="password_confirmation"
autoComplete="new-password"
placeholder="Konfirmasi kata sandi"
passwordrules={passwordRules}
/>
<InputError
message={errors.password_confirmation}
/>
</div>
</div>
<div className="flex items-center gap-4">
<Button
disabled={processing}
data-test="update-password-button"
>
<Save className="h-4 w-4" />
Simpan
</Button>
</div>
</>
)}
</Form>
</div>
</>
);
}
Security.layout = {
breadcrumbs: [
{
title: 'Pengaturan Kata Sandi',
href: edit(),
},
],
};