setting-page - staffmembers done- no form-ui , no users setting

This commit is contained in:
2025-05-15 13:11:05 +05:30
parent b03b7efcb4
commit 3799568b2d
5 changed files with 536 additions and 1 deletions

View File

@@ -0,0 +1,99 @@
import React, { useState, useEffect } from "react";
import { StaffUncheckedCreateInputObjectSchema } from "@repo/db/shared/schemas";
import { z } from "zod";
type Staff = z.infer<typeof StaffUncheckedCreateInputObjectSchema>;
interface StaffFormProps {
initialData?: Partial<Staff>;
onSubmit: (data: Omit<Staff, "id" | "createdAt">) => void;
onCancel: () => void;
isLoading?: boolean;
}
export function StaffForm({ initialData, onSubmit, onCancel, isLoading }: StaffFormProps) {
const [name, setName] = useState(initialData?.name || "");
const [email, setEmail] = useState(initialData?.email || "");
const [role, setRole] = useState(initialData?.role || "Staff");
const [phone, setPhone] = useState(initialData?.phone || "");
useEffect(() => {
setName(initialData?.name || "");
setEmail(initialData?.email || "");
setRole(initialData?.role || "Staff");
setPhone(initialData?.phone || "");
}, [initialData]);
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (!name.trim()) {
alert("Name is required");
return;
}
onSubmit({ name, email: email || undefined, role, phone: phone || undefined });
};
return (
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="block text-sm font-medium text-gray-700">Name *</label>
<input
type="text"
className="mt-1 block w-full border rounded p-2"
value={name}
onChange={(e) => setName(e.target.value)}
required
disabled={isLoading}
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700">Email</label>
<input
type="email"
className="mt-1 block w-full border rounded p-2"
value={email}
onChange={(e) => setEmail(e.target.value)}
disabled={isLoading}
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700">Role *</label>
<input
type="text"
className="mt-1 block w-full border rounded p-2"
value={role}
onChange={(e) => setRole(e.target.value)}
required
disabled={isLoading}
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700">Phone</label>
<input
type="tel"
className="mt-1 block w-full border rounded p-2"
value={phone}
onChange={(e) => setPhone(e.target.value)}
disabled={isLoading}
/>
</div>
<div className="flex justify-end space-x-2">
<button
type="button"
onClick={onCancel}
className="px-4 py-2 border rounded"
disabled={isLoading}
>
Cancel
</button>
<button
type="submit"
className="px-4 py-2 bg-blue-600 text-white rounded disabled:opacity-50"
disabled={isLoading}
>
{isLoading ? "Saving..." : "Save"}
</button>
</div>
</form>
);
}