2026-03-26 14:38:23 +05:30
|
|
|
import { useState, useEffect, useCallback } from "react";
|
|
|
|
|
import { AxiosError } from "axios";
|
2026-04-14 17:33:21 +05:30
|
|
|
import { BytescaleUploader } from "@/components/BytescaleUploader/BytescaleUploader";
|
2026-03-16 17:55:33 +05:30
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
getDepartmentsApi,
|
|
|
|
|
createDepartmentApi,
|
|
|
|
|
updateDepartmentApi,
|
|
|
|
|
deleteDepartmentApi,
|
|
|
|
|
} from "@/api/department";
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
Table,
|
|
|
|
|
TableBody,
|
|
|
|
|
TableCell,
|
|
|
|
|
TableHead,
|
|
|
|
|
TableHeader,
|
|
|
|
|
TableRow,
|
|
|
|
|
} from "@/components/ui/table";
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
2026-03-16 17:55:33 +05:30
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
DialogFooter,
|
|
|
|
|
} from "@/components/ui/dialog";
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import { Textarea } from "@/components/ui/textarea";
|
2026-03-16 17:55:33 +05:30
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
import {
|
|
|
|
|
Loader2,
|
|
|
|
|
RefreshCw,
|
|
|
|
|
Plus,
|
|
|
|
|
Pencil,
|
|
|
|
|
Trash,
|
|
|
|
|
Eye,
|
|
|
|
|
ChevronLeft,
|
|
|
|
|
ChevronRight,
|
|
|
|
|
} from "lucide-react";
|
2026-03-16 17:55:33 +05:30
|
|
|
|
|
|
|
|
interface Department {
|
|
|
|
|
departmentId: string;
|
|
|
|
|
name: string;
|
2026-04-14 17:33:21 +05:30
|
|
|
image?: string;
|
2026-03-16 17:55:33 +05:30
|
|
|
para1: string;
|
|
|
|
|
para2: string;
|
|
|
|
|
para3: string;
|
|
|
|
|
facilities: string;
|
|
|
|
|
services: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function DepartmentPage() {
|
|
|
|
|
const [departments, setDepartments] = useState<Department[]>([]);
|
|
|
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
|
const [error, setError] = useState("");
|
|
|
|
|
|
|
|
|
|
const [openModal, setOpenModal] = useState(false);
|
|
|
|
|
const [editing, setEditing] = useState<Department | null>(null);
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
const [viewOpen, setViewOpen] = useState(false);
|
|
|
|
|
const [viewData, setViewData] = useState<Department | null>(null);
|
|
|
|
|
|
2026-03-17 17:28:18 +05:30
|
|
|
const [searchText, setSearchText] = useState("");
|
|
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
const [currentPage, setCurrentPage] = useState(1);
|
|
|
|
|
const itemsPerPage = 10;
|
|
|
|
|
|
2026-03-16 17:55:33 +05:30
|
|
|
const [form, setForm] = useState<Department>({
|
|
|
|
|
departmentId: "",
|
|
|
|
|
name: "",
|
2026-04-14 17:33:21 +05:30
|
|
|
image: "",
|
2026-03-16 17:55:33 +05:30
|
|
|
para1: "",
|
|
|
|
|
para2: "",
|
|
|
|
|
para3: "",
|
|
|
|
|
facilities: "",
|
|
|
|
|
services: "",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const fetchDepartments = useCallback(async () => {
|
|
|
|
|
setLoading(true);
|
|
|
|
|
setError("");
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const res = await getDepartmentsApi();
|
|
|
|
|
setDepartments(res?.data || []);
|
|
|
|
|
} catch (err) {
|
|
|
|
|
if (err instanceof AxiosError) {
|
|
|
|
|
setError(err.response?.data?.message || "Failed to load departments");
|
|
|
|
|
} else {
|
|
|
|
|
setError("Something went wrong");
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
setLoading(false);
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
fetchDepartments();
|
|
|
|
|
}, [fetchDepartments]);
|
|
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
const filteredDepartments = departments.filter(
|
|
|
|
|
(dep) =>
|
|
|
|
|
dep.name.toLowerCase().includes(searchText.toLowerCase()) ||
|
|
|
|
|
dep.departmentId.toLowerCase().includes(searchText.toLowerCase()),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
setCurrentPage(1);
|
|
|
|
|
}, [searchText]);
|
|
|
|
|
|
|
|
|
|
const totalPages = Math.ceil(filteredDepartments.length / itemsPerPage);
|
|
|
|
|
const indexOfLastItem = currentPage * itemsPerPage;
|
|
|
|
|
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
|
|
|
|
const currentItems = filteredDepartments.slice(
|
|
|
|
|
indexOfFirstItem,
|
|
|
|
|
indexOfLastItem,
|
2026-03-26 14:38:23 +05:30
|
|
|
);
|
2026-03-17 17:28:18 +05:30
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
function handleChange(e: any) {
|
|
|
|
|
setForm({ ...form, [e.target.name]: e.target.value });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function truncate(text: string, limit = 60) {
|
|
|
|
|
if (!text) return "-";
|
|
|
|
|
return text.length > limit ? text.substring(0, limit) + "..." : text;
|
2026-03-16 17:55:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openAdd() {
|
|
|
|
|
setEditing(null);
|
|
|
|
|
setForm({
|
|
|
|
|
departmentId: "",
|
|
|
|
|
name: "",
|
2026-04-14 17:33:21 +05:30
|
|
|
image: "",
|
2026-03-16 17:55:33 +05:30
|
|
|
para1: "",
|
|
|
|
|
para2: "",
|
|
|
|
|
para3: "",
|
|
|
|
|
facilities: "",
|
|
|
|
|
services: "",
|
|
|
|
|
});
|
|
|
|
|
setOpenModal(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openEdit(dep: Department) {
|
|
|
|
|
setEditing(dep);
|
|
|
|
|
setForm(dep);
|
|
|
|
|
setOpenModal(true);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
function openView(dep: Department) {
|
|
|
|
|
setViewData(dep);
|
|
|
|
|
setViewOpen(true);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-16 17:55:33 +05:30
|
|
|
async function handleSubmit() {
|
|
|
|
|
try {
|
|
|
|
|
if (editing) {
|
2026-03-26 14:38:23 +05:30
|
|
|
const { departmentId, ...updateData } = form;
|
2026-03-17 13:11:00 +05:30
|
|
|
await updateDepartmentApi(editing.departmentId, updateData);
|
2026-03-16 17:55:33 +05:30
|
|
|
} else {
|
|
|
|
|
await createDepartmentApi(form);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setOpenModal(false);
|
|
|
|
|
fetchDepartments();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
async function handleDelete(id: string) {
|
|
|
|
|
if (!confirm("Delete this department?")) return;
|
2026-03-16 17:55:33 +05:30
|
|
|
|
|
|
|
|
try {
|
2026-03-26 14:38:23 +05:30
|
|
|
await deleteDepartmentApi(id);
|
2026-03-16 17:55:33 +05:30
|
|
|
fetchDepartments();
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error(error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="p-6 space-y-6">
|
2026-04-08 16:30:50 +05:30
|
|
|
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
|
|
|
|
<h1 className="text-3xl font-bold">Departments</h1>
|
2026-03-16 17:55:33 +05:30
|
|
|
|
2026-03-17 17:28:18 +05:30
|
|
|
<div className="flex flex-wrap gap-3">
|
|
|
|
|
<Input
|
|
|
|
|
placeholder="Search department..."
|
|
|
|
|
value={searchText}
|
|
|
|
|
onChange={(e) => setSearchText(e.target.value)}
|
2026-04-08 16:30:50 +05:30
|
|
|
className="w-[250px] text-base"
|
2026-03-17 17:28:18 +05:30
|
|
|
/>
|
|
|
|
|
|
2026-03-26 17:58:49 +05:30
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
onClick={fetchDepartments}
|
2026-04-08 16:30:50 +05:30
|
|
|
disabled={loading}
|
|
|
|
|
className="text-base"
|
|
|
|
|
>
|
|
|
|
|
<RefreshCw className="mr-2 h-5 w-5" />
|
2026-03-16 17:55:33 +05:30
|
|
|
Refresh
|
|
|
|
|
</Button>
|
|
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
<Button onClick={openAdd} className="text-base">
|
|
|
|
|
<Plus className="mr-2 h-5 w-5" />
|
2026-03-16 17:55:33 +05:30
|
|
|
Add Department
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{error && (
|
2026-04-08 16:30:50 +05:30
|
|
|
<div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">
|
2026-03-16 17:55:33 +05:30
|
|
|
{error}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
2026-04-08 16:30:50 +05:30
|
|
|
<CardTitle className="text-xl">Department List</CardTitle>
|
2026-03-16 17:55:33 +05:30
|
|
|
</CardHeader>
|
|
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
<CardContent className="p-0 sm:p-6 space-y-4">
|
|
|
|
|
<div className="rounded-md border overflow-x-auto overflow-y-auto max-h-[650px] relative">
|
|
|
|
|
<Table className="w-full min-w-[900px] table-fixed border-separate border-spacing-0">
|
|
|
|
|
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
2026-03-16 17:55:33 +05:30
|
|
|
<TableRow>
|
2026-04-08 16:30:50 +05:30
|
|
|
<TableHead className="w-[100px] bg-background text-sm font-bold">
|
|
|
|
|
ID
|
|
|
|
|
</TableHead>
|
|
|
|
|
<TableHead className="w-[200px] bg-background text-sm font-bold">
|
|
|
|
|
Name
|
|
|
|
|
</TableHead>
|
|
|
|
|
<TableHead className="w-[250px] bg-background text-sm font-bold">
|
|
|
|
|
Para 1
|
|
|
|
|
</TableHead>
|
|
|
|
|
<TableHead className="w-[220px] bg-background text-sm font-bold">
|
|
|
|
|
Facilities
|
|
|
|
|
</TableHead>
|
|
|
|
|
<TableHead className="w-[220px] bg-background text-sm font-bold">
|
|
|
|
|
Services
|
|
|
|
|
</TableHead>
|
|
|
|
|
<TableHead className="w-[140px] bg-background text-right text-sm font-bold">
|
|
|
|
|
Actions
|
|
|
|
|
</TableHead>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableRow>
|
|
|
|
|
</TableHeader>
|
|
|
|
|
|
|
|
|
|
<TableBody>
|
|
|
|
|
{loading ? (
|
|
|
|
|
<TableRow>
|
2026-04-08 16:30:50 +05:30
|
|
|
<TableCell colSpan={6} className="text-center py-10">
|
|
|
|
|
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
</TableRow>
|
2026-04-08 16:30:50 +05:30
|
|
|
) : currentItems.length === 0 ? (
|
2026-03-16 17:55:33 +05:30
|
|
|
<TableRow>
|
2026-04-08 16:30:50 +05:30
|
|
|
<TableCell
|
|
|
|
|
colSpan={6}
|
|
|
|
|
className="text-center text-muted-foreground py-10 text-base"
|
|
|
|
|
>
|
2026-03-16 17:55:33 +05:30
|
|
|
No departments found
|
|
|
|
|
</TableCell>
|
|
|
|
|
</TableRow>
|
|
|
|
|
) : (
|
2026-04-08 16:30:50 +05:30
|
|
|
currentItems.map((dep) => (
|
|
|
|
|
<TableRow
|
|
|
|
|
key={dep.departmentId}
|
|
|
|
|
className="hover:bg-muted/50"
|
|
|
|
|
>
|
|
|
|
|
<TableCell className="font-mono text-xs">
|
|
|
|
|
{dep.departmentId}
|
|
|
|
|
</TableCell>
|
2026-03-16 17:55:33 +05:30
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
<TableCell>
|
2026-04-08 16:30:50 +05:30
|
|
|
<div
|
|
|
|
|
className="font-semibold text-base truncate"
|
|
|
|
|
title={dep.name}
|
|
|
|
|
>
|
|
|
|
|
{dep.name}
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
<TableCell>
|
2026-04-08 16:30:50 +05:30
|
|
|
<div className="text-sm break-words whitespace-normal">
|
2026-03-26 14:38:23 +05:30
|
|
|
{truncate(dep.para1)}
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
<TableCell>
|
2026-04-08 16:30:50 +05:30
|
|
|
<div className="text-sm break-words whitespace-normal">
|
2026-03-26 14:38:23 +05:30
|
|
|
{truncate(dep.facilities)}
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
<TableCell>
|
2026-04-08 16:30:50 +05:30
|
|
|
<div className="text-sm break-words whitespace-normal">
|
2026-03-26 14:38:23 +05:30
|
|
|
{truncate(dep.services)}
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
|
2026-04-08 16:30:50 +05:30
|
|
|
<TableCell className="text-right">
|
|
|
|
|
<div className="flex justify-end gap-2">
|
|
|
|
|
<Button
|
|
|
|
|
size="icon"
|
|
|
|
|
variant="ghost"
|
|
|
|
|
className="h-9 w-9"
|
|
|
|
|
onClick={() => openView(dep)}
|
|
|
|
|
>
|
|
|
|
|
<Eye className="h-4 w-4" />
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
size="icon"
|
|
|
|
|
variant="ghost"
|
|
|
|
|
className="h-9 w-9"
|
|
|
|
|
onClick={() => openEdit(dep)}
|
|
|
|
|
>
|
|
|
|
|
<Pencil className="h-4 w-4" />
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
size="icon"
|
|
|
|
|
variant="ghost"
|
|
|
|
|
className="h-9 w-9 text-destructive hover:text-destructive hover:bg-destructive/10"
|
|
|
|
|
onClick={() => handleDelete(dep.departmentId)}
|
|
|
|
|
>
|
|
|
|
|
<Trash className="h-4 w-4" />
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
</TableCell>
|
|
|
|
|
</TableRow>
|
|
|
|
|
))
|
|
|
|
|
)}
|
|
|
|
|
</TableBody>
|
|
|
|
|
</Table>
|
|
|
|
|
</div>
|
2026-04-08 16:30:50 +05:30
|
|
|
|
|
|
|
|
{!loading && filteredDepartments.length > 0 && (
|
|
|
|
|
<div className="flex items-center justify-between px-2 py-6 border-t">
|
|
|
|
|
<div className="text-base text-muted-foreground">
|
|
|
|
|
Showing{" "}
|
|
|
|
|
<span className="font-semibold">{indexOfFirstItem + 1}</span> to{" "}
|
|
|
|
|
<span className="font-semibold">
|
|
|
|
|
{Math.min(indexOfLastItem, filteredDepartments.length)}
|
|
|
|
|
</span>{" "}
|
|
|
|
|
of{" "}
|
|
|
|
|
<span className="font-semibold">
|
|
|
|
|
{filteredDepartments.length}
|
|
|
|
|
</span>{" "}
|
|
|
|
|
departments
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center gap-6">
|
|
|
|
|
<div className="text-base font-semibold">
|
|
|
|
|
Page {currentPage} of {totalPages}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex gap-2">
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
size="icon"
|
|
|
|
|
className="h-10 w-10"
|
|
|
|
|
onClick={() =>
|
|
|
|
|
setCurrentPage((prev) => Math.max(prev - 1, 1))
|
|
|
|
|
}
|
|
|
|
|
disabled={currentPage === 1}
|
|
|
|
|
>
|
|
|
|
|
<ChevronLeft className="h-5 w-5" />
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
size="icon"
|
|
|
|
|
className="h-10 w-10"
|
|
|
|
|
onClick={() =>
|
|
|
|
|
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
|
|
|
|
|
}
|
|
|
|
|
disabled={currentPage === totalPages || totalPages === 0}
|
|
|
|
|
>
|
|
|
|
|
<ChevronRight className="h-5 w-5" />
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2026-03-16 17:55:33 +05:30
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
|
|
<Dialog open={openModal} onOpenChange={setOpenModal}>
|
2026-03-26 14:38:23 +05:30
|
|
|
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
|
2026-03-16 17:55:33 +05:30
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>
|
|
|
|
|
{editing ? "Edit Department" : "Add Department"}
|
|
|
|
|
</DialogTitle>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
|
2026-03-26 14:38:23 +05:30
|
|
|
<div className="space-y-4">
|
2026-04-14 17:33:21 +05:30
|
|
|
<div className="space-y-2">
|
|
|
|
|
<label className="text-sm font-semibold">Department Image</label>
|
|
|
|
|
<BytescaleUploader
|
|
|
|
|
value={form.image}
|
|
|
|
|
folderPath="/departments"
|
|
|
|
|
onChange={(url) => setForm({ ...form, image: url })}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2026-03-16 17:55:33 +05:30
|
|
|
<Input
|
|
|
|
|
name="departmentId"
|
|
|
|
|
value={form.departmentId}
|
|
|
|
|
onChange={handleChange}
|
2026-03-17 13:11:00 +05:30
|
|
|
disabled={!!editing}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Department ID"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Input
|
|
|
|
|
name="name"
|
|
|
|
|
value={form.name}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Department Name"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Textarea
|
|
|
|
|
name="para1"
|
|
|
|
|
value={form.para1}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Para1"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
<Textarea
|
|
|
|
|
name="para2"
|
|
|
|
|
value={form.para2}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Para2"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
<Textarea
|
|
|
|
|
name="para3"
|
|
|
|
|
value={form.para3}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Para3"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
<Textarea
|
|
|
|
|
name="facilities"
|
|
|
|
|
value={form.facilities}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Facilities"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
<Textarea
|
|
|
|
|
name="services"
|
|
|
|
|
value={form.services}
|
|
|
|
|
onChange={handleChange}
|
2026-03-26 14:38:23 +05:30
|
|
|
placeholder="Services"
|
2026-03-16 17:55:33 +05:30
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => setOpenModal(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={handleSubmit}>
|
|
|
|
|
{editing ? "Update" : "Create"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
2026-03-26 14:38:23 +05:30
|
|
|
|
|
|
|
|
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
|
|
|
|
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Department Details</DialogTitle>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
{viewData && (
|
|
|
|
|
<div className="space-y-4 text-sm">
|
|
|
|
|
<p>
|
|
|
|
|
<b>ID:</b> {viewData.departmentId}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Name:</b> {viewData.name}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Para1:</b>
|
|
|
|
|
<br />
|
|
|
|
|
{viewData.para1}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Para2:</b>
|
|
|
|
|
<br />
|
|
|
|
|
{viewData.para2}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Para3:</b>
|
|
|
|
|
<br />
|
|
|
|
|
{viewData.para3}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Facilities:</b>
|
|
|
|
|
<br />
|
|
|
|
|
{viewData.facilities}
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<b>Services:</b>
|
|
|
|
|
<br />
|
|
|
|
|
{viewData.services}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button onClick={() => setViewOpen(false)}>Close</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
2026-03-16 17:55:33 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|