379 lines
12 KiB
TypeScript
379 lines
12 KiB
TypeScript
import React, { useState, useEffect } from "react";
|
|
import { useQuery, useMutation } from "@tanstack/react-query";
|
|
import { TopAppBar } from "@/components/layout/top-app-bar";
|
|
import { Sidebar } from "@/components/layout/sidebar";
|
|
import { StaffTable } from "@/components/staffs/staff-table";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import { apiRequest, queryClient } from "@/lib/queryClient";
|
|
import { StaffForm } from "@/components/staffs/staff-form";
|
|
import { DeleteConfirmationDialog } from "@/components/ui/deleteDialog";
|
|
import { CredentialTable } from "@/components/settings/insuranceCredTable";
|
|
import { useAuth } from "@/hooks/use-auth";
|
|
import { Staff } from "@repo/db/types";
|
|
|
|
|
|
export default function SettingsPage() {
|
|
const { toast } = useToast();
|
|
const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false);
|
|
|
|
// Modal and editing staff state
|
|
const [modalOpen, setModalOpen] = useState(false);
|
|
const [credentialModalOpen, setCredentialModalOpen] = useState(false);
|
|
const [editingStaff, setEditingStaff] = useState<Staff | null>(null);
|
|
|
|
const toggleMobileMenu = () => setIsMobileMenuOpen((prev) => !prev);
|
|
|
|
// Fetch staff data
|
|
const {
|
|
data: staff = [],
|
|
isLoading,
|
|
isError,
|
|
error,
|
|
} = useQuery<Staff[]>({
|
|
queryKey: ["/api/staffs/"],
|
|
queryFn: async () => {
|
|
const res = await apiRequest("GET", "/api/staffs/");
|
|
if (!res.ok) {
|
|
throw new Error("Failed to fetch staff");
|
|
}
|
|
return res.json();
|
|
},
|
|
staleTime: 1000 * 60 * 5, // 5 minutes cache
|
|
});
|
|
|
|
// Add Staff mutation
|
|
const addStaffMutate = useMutation<
|
|
Staff, // Return type
|
|
Error, // Error type
|
|
Omit<Staff, "id" | "createdAt"> // Variables
|
|
>({
|
|
mutationFn: async (newStaff: Omit<Staff, "id" | "createdAt">) => {
|
|
const res = await apiRequest("POST", "/api/staffs/", newStaff);
|
|
if (!res.ok) {
|
|
const errorData = await res.json().catch(() => null);
|
|
throw new Error(errorData?.message || "Failed to add staff");
|
|
}
|
|
return res.json();
|
|
},
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ["/api/staffs/"] });
|
|
toast({
|
|
title: "Staff Added",
|
|
description: "Staff member added successfully.",
|
|
variant: "default",
|
|
});
|
|
},
|
|
onError: (error: any) => {
|
|
toast({
|
|
title: "Error",
|
|
description: error?.message || "Failed to add staff",
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
// Update Staff mutation
|
|
const updateStaffMutate = useMutation<
|
|
Staff,
|
|
Error,
|
|
{ id: number; updatedFields: Partial<Staff> }
|
|
>({
|
|
mutationFn: async ({
|
|
id,
|
|
updatedFields,
|
|
}: {
|
|
id: number;
|
|
updatedFields: Partial<Staff>;
|
|
}) => {
|
|
const res = await apiRequest("PUT", `/api/staffs/${id}`, updatedFields);
|
|
if (!res.ok) {
|
|
const errorData = await res.json().catch(() => null);
|
|
throw new Error(errorData?.message || "Failed to update staff");
|
|
}
|
|
return res.json();
|
|
},
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ["/api/staffs/"] });
|
|
toast({
|
|
title: "Staff Updated",
|
|
description: "Staff member updated successfully.",
|
|
variant: "default",
|
|
});
|
|
},
|
|
onError: (error: any) => {
|
|
toast({
|
|
title: "Error",
|
|
description: error?.message || "Failed to update staff",
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
// Delete Staff mutation
|
|
const deleteStaffMutation = useMutation<number, Error, number>({
|
|
mutationFn: async (id: number) => {
|
|
const res = await apiRequest("DELETE", `/api/staffs/${id}`);
|
|
if (!res.ok) {
|
|
const errorData = await res.json().catch(() => null);
|
|
throw new Error(errorData?.message || "Failed to delete staff");
|
|
}
|
|
return id;
|
|
},
|
|
onSuccess: () => {
|
|
setIsDeleteStaffOpen(false);
|
|
queryClient.invalidateQueries({ queryKey: ["/api/staffs/"] });
|
|
toast({
|
|
title: "Staff Removed",
|
|
description: "Staff member deleted.",
|
|
variant: "default",
|
|
});
|
|
},
|
|
onError: (error: any) => {
|
|
toast({
|
|
title: "Error",
|
|
description: error?.message || "Failed to delete staff",
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
// Extract mutation states for modal control and loading
|
|
|
|
const isAdding = addStaffMutate.status === "pending";
|
|
const isAddSuccess = addStaffMutate.status === "success";
|
|
|
|
const isUpdating = updateStaffMutate.status === "pending";
|
|
const isUpdateSuccess = updateStaffMutate.status === "success";
|
|
|
|
// Open Add modal
|
|
const openAddStaffModal = () => {
|
|
setEditingStaff(null);
|
|
setModalOpen(true);
|
|
};
|
|
|
|
// Open Edit modal
|
|
const openEditStaffModal = (staff: Staff) => {
|
|
setEditingStaff(staff);
|
|
setModalOpen(true);
|
|
};
|
|
|
|
// Handle form submit for Add or Edit
|
|
const handleFormSubmit = (formData: Omit<Staff, "id" | "createdAt">) => {
|
|
if (editingStaff) {
|
|
// Editing existing staff
|
|
if (editingStaff.id === undefined) {
|
|
toast({
|
|
title: "Error",
|
|
description: "Staff ID is missing",
|
|
variant: "destructive",
|
|
});
|
|
return;
|
|
}
|
|
updateStaffMutate.mutate({
|
|
id: editingStaff.id,
|
|
updatedFields: formData,
|
|
});
|
|
} else {
|
|
addStaffMutate.mutate(formData);
|
|
}
|
|
};
|
|
|
|
const handleModalCancel = () => {
|
|
setModalOpen(false);
|
|
};
|
|
|
|
// Close modal on successful add/update
|
|
useEffect(() => {
|
|
if (isAddSuccess || isUpdateSuccess) {
|
|
setModalOpen(false);
|
|
}
|
|
}, [isAddSuccess, isUpdateSuccess]);
|
|
|
|
const [isDeleteStaffOpen, setIsDeleteStaffOpen] = useState(false);
|
|
const [currentStaff, setCurrentStaff] = useState<Staff | undefined>(
|
|
undefined
|
|
);
|
|
|
|
const handleDeleteStaff = (staff: Staff) => {
|
|
setCurrentStaff(staff);
|
|
setIsDeleteStaffOpen(true);
|
|
};
|
|
|
|
const handleConfirmDeleteStaff = async () => {
|
|
if (currentStaff?.id) {
|
|
deleteStaffMutation.mutate(currentStaff.id);
|
|
} else {
|
|
toast({
|
|
title: "Error",
|
|
description: "No Staff selected for deletion.",
|
|
variant: "destructive",
|
|
});
|
|
}
|
|
};
|
|
|
|
const handleViewStaff = (staff: Staff) =>
|
|
alert(
|
|
`Viewing staff member:\n${staff.name} (${staff.email || "No email"})`
|
|
);
|
|
|
|
// MANAGE USER
|
|
const [usernameUser, setUsernameUser] = useState("");
|
|
|
|
//fetch user
|
|
const { user } = useAuth();
|
|
useEffect(() => {
|
|
if (user?.username) {
|
|
setUsernameUser(user.username);
|
|
}
|
|
}, [user]);
|
|
|
|
//update user mutation
|
|
const updateUserMutate = useMutation({
|
|
mutationFn: async (
|
|
updates: Partial<{ username: string; password: string }>
|
|
) => {
|
|
if (!user?.id) throw new Error("User not loaded");
|
|
const res = await apiRequest("PUT", `/api/users/${user.id}`, updates);
|
|
if (!res.ok) {
|
|
const errorData = await res.json().catch(() => null);
|
|
throw new Error(errorData?.error || "Failed to update user");
|
|
}
|
|
return res.json();
|
|
},
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ["/api/users/"] });
|
|
toast({
|
|
title: "Updated",
|
|
description: "Your profile has been updated.",
|
|
variant: "default",
|
|
});
|
|
},
|
|
onError: (err: any) => {
|
|
toast({
|
|
title: "Error",
|
|
description: err?.message || "Failed to update user",
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
return (
|
|
<div className="flex h-screen overflow-hidden bg-gray-100">
|
|
<Sidebar
|
|
isMobileOpen={isMobileMenuOpen}
|
|
setIsMobileOpen={setIsMobileMenuOpen}
|
|
/>
|
|
<div className="flex-1 flex flex-col overflow-hidden">
|
|
<TopAppBar toggleMobileMenu={toggleMobileMenu} />
|
|
<main className="flex-1 overflow-y-auto p-2">
|
|
<Card>
|
|
<CardContent>
|
|
<div className="mt-8">
|
|
<StaffTable
|
|
staff={staff}
|
|
isLoading={isLoading}
|
|
isError={isError}
|
|
onAdd={openAddStaffModal}
|
|
onEdit={openEditStaffModal}
|
|
onDelete={handleDeleteStaff}
|
|
onView={handleViewStaff}
|
|
/>
|
|
{isError && (
|
|
<p className="mt-4 text-red-600">
|
|
{(error as Error)?.message || "Failed to load staff data."}
|
|
</p>
|
|
)}
|
|
|
|
<DeleteConfirmationDialog
|
|
isOpen={isDeleteStaffOpen}
|
|
onConfirm={handleConfirmDeleteStaff}
|
|
onCancel={() => setIsDeleteStaffOpen(false)}
|
|
entityName={currentStaff?.name}
|
|
/>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Modal Overlay */}
|
|
{modalOpen && (
|
|
<div className="fixed inset-0 bg-black bg-opacity-50 flex justify-center items-center z-50">
|
|
<div className="bg-white rounded-lg p-6 w-full max-w-md shadow-lg">
|
|
<h2 className="text-lg font-bold mb-4">
|
|
{editingStaff ? "Edit Staff" : "Add Staff"}
|
|
</h2>
|
|
<StaffForm
|
|
initialData={editingStaff || undefined}
|
|
onSubmit={handleFormSubmit}
|
|
onCancel={handleModalCancel}
|
|
isLoading={isAdding || isUpdating}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* User Setting section */}
|
|
<Card className="mt-6">
|
|
<CardContent className="space-y-4 py-6">
|
|
<h3 className="text-lg font-semibold">User Settings</h3>
|
|
<form
|
|
className="space-y-4"
|
|
onSubmit={(e) => {
|
|
e.preventDefault();
|
|
const formData = new FormData(e.currentTarget);
|
|
const password =
|
|
formData.get("password")?.toString().trim() || undefined;
|
|
|
|
updateUserMutate.mutate({
|
|
username: usernameUser?.trim() || undefined,
|
|
password: password || undefined,
|
|
});
|
|
}}
|
|
>
|
|
<div>
|
|
<label className="block text-sm font-medium">Username</label>
|
|
<input
|
|
type="text"
|
|
name="username"
|
|
value={usernameUser}
|
|
onChange={(e) => setUsernameUser(e.target.value)}
|
|
className="mt-1 p-2 border rounded w-full"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium">
|
|
New Password
|
|
</label>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
className="mt-1 p-2 border rounded w-full"
|
|
placeholder="••••••••"
|
|
/>
|
|
<p className="text-xs text-gray-500 mt-1">
|
|
Leave blank to keep current password.
|
|
</p>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
className="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700"
|
|
disabled={updateUserMutate.isPending}
|
|
>
|
|
{updateUserMutate.isPending ? "Saving..." : "Save Changes"}
|
|
</button>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Credential Section */}
|
|
<div className="mt-6">
|
|
<CredentialTable />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|