Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4ebd19c15 | |||
| 1d55cfc4b8 | |||
| 661bf7a77f | |||
| 7bce00800b | |||
| 427775a038 | |||
| 8004a7a21c | |||
| 57f95661cc | |||
| 9d149e6abe | |||
| 2ed1bee149 | |||
| 24a8bc4113 | |||
| f35eab14e6 |
@@ -0,0 +1,15 @@
|
||||
-- CreateTable
|
||||
CREATE TABLE "NewsMedia" (
|
||||
"id" SERIAL NOT NULL,
|
||||
"headline" TEXT NOT NULL,
|
||||
"content" TEXT,
|
||||
"firstPara" TEXT,
|
||||
"secondPara" TEXT,
|
||||
"author" TEXT,
|
||||
"date" TIMESTAMP(3),
|
||||
"isActive" BOOLEAN NOT NULL DEFAULT true,
|
||||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
"updatedAt" TIMESTAMP(3) NOT NULL,
|
||||
|
||||
CONSTRAINT "NewsMedia_pkey" PRIMARY KEY ("id")
|
||||
);
|
||||
@@ -185,4 +185,20 @@ model EmailConfig {
|
||||
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
|
||||
model NewsMedia {
|
||||
id Int @id @default(autoincrement())
|
||||
|
||||
headline String
|
||||
content String?
|
||||
firstPara String?
|
||||
secondPara String?
|
||||
author String?
|
||||
date DateTime?
|
||||
|
||||
isActive Boolean @default(true)
|
||||
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
@@ -13,6 +13,7 @@ import appointmentRoutes from "./routes/appointment.routes.js";
|
||||
import inquiryRoutes from "./routes/inquiry.routes.js";
|
||||
import academicsResearchRoutes from "./routes/academicsResearch.routes.js";
|
||||
import emailConfigRoutes from "./routes/emailConfig.routes.js";
|
||||
import newsMediaRoutes from "./routes/newsMedia.routes.js";
|
||||
|
||||
dotenv.config();
|
||||
|
||||
@@ -49,6 +50,7 @@ app.use("/api/appointments", appointmentRoutes);
|
||||
app.use("/api/inquiry", inquiryRoutes);
|
||||
app.use("/api/academics", academicsResearchRoutes);
|
||||
app.use("/api/email", emailConfigRoutes);
|
||||
app.use("/api/newsMedia", newsMediaRoutes);
|
||||
|
||||
const PORT = process.env.PORT || 3000;
|
||||
app.listen(PORT, () => {
|
||||
|
||||
@@ -0,0 +1,202 @@
|
||||
import prisma from "../prisma/client.js";
|
||||
|
||||
// GET ALL NEWS
|
||||
|
||||
export const getAllNews = async (req, res) => {
|
||||
try {
|
||||
const page = parseInt(req.query.page);
|
||||
const limit = parseInt(req.query.limit);
|
||||
|
||||
if (!page && !limit) {
|
||||
const news = await prisma.newsMedia.findMany({
|
||||
orderBy: { createdAt: "desc" },
|
||||
});
|
||||
|
||||
const response = news.map((n) => ({
|
||||
Id: n.id.toString(),
|
||||
Headline: n.headline,
|
||||
Content: n.content,
|
||||
FirstPara: n.firstPara,
|
||||
SecondPara: n.secondPara,
|
||||
Date: n.date,
|
||||
Author: n.author,
|
||||
}));
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
data: response,
|
||||
meta: null,
|
||||
});
|
||||
}
|
||||
|
||||
const currentPage = page || 1;
|
||||
const currentLimit = limit || 10;
|
||||
|
||||
const skip = (currentPage - 1) * currentLimit;
|
||||
|
||||
const [news, total] = await Promise.all([
|
||||
prisma.newsMedia.findMany({
|
||||
orderBy: { createdAt: "desc" },
|
||||
skip,
|
||||
take: currentLimit,
|
||||
}),
|
||||
prisma.newsMedia.count(),
|
||||
]);
|
||||
|
||||
const response = news.map((n) => ({
|
||||
Id: n.id.toString(),
|
||||
Headline: n.headline,
|
||||
Content: n.content,
|
||||
FirstPara: n.firstPara,
|
||||
SecondPara: n.secondPara,
|
||||
Date: n.date,
|
||||
Author: n.author,
|
||||
}));
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
data: response,
|
||||
meta: {
|
||||
total,
|
||||
page: currentPage,
|
||||
limit: currentLimit,
|
||||
totalPages: Math.ceil(total / currentLimit),
|
||||
},
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to fetch news",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// GET NEWS BY ID
|
||||
|
||||
export const getNewsById = async (req, res) => {
|
||||
try {
|
||||
const { id } = req.params;
|
||||
|
||||
const n = await prisma.newsMedia.findUnique({
|
||||
where: { id: Number(id) },
|
||||
});
|
||||
|
||||
if (!n) {
|
||||
return res.status(404).json({
|
||||
success: false,
|
||||
message: "News not found",
|
||||
});
|
||||
}
|
||||
|
||||
const response = {
|
||||
Id: n.id.toString(),
|
||||
Headline: n.headline,
|
||||
Content: n.content,
|
||||
FirstPara: n.firstPara,
|
||||
SecondPara: n.secondPara,
|
||||
Date: n.date,
|
||||
Author: n.author,
|
||||
};
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
data: response,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to fetch news",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// CREATE NEWS
|
||||
|
||||
export const createNews = async (req, res) => {
|
||||
try {
|
||||
const { headline, content, firstPara, secondPara, date, author } = req.body;
|
||||
|
||||
if (!headline) {
|
||||
return res.status(400).json({
|
||||
success: false,
|
||||
message: "Headline is required",
|
||||
});
|
||||
}
|
||||
|
||||
const news = await prisma.newsMedia.create({
|
||||
data: {
|
||||
headline,
|
||||
content,
|
||||
firstPara,
|
||||
secondPara,
|
||||
date: date ? new Date(date) : null,
|
||||
author,
|
||||
},
|
||||
});
|
||||
|
||||
return res.status(201).json({
|
||||
success: true,
|
||||
message: "News created successfully",
|
||||
data: news,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to create news",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// UPDATE NEWS
|
||||
|
||||
export const updateNews = async (req, res) => {
|
||||
try {
|
||||
const { id } = req.params;
|
||||
|
||||
const news = await prisma.newsMedia.update({
|
||||
where: { id: Number(id) },
|
||||
data: {
|
||||
...req.body,
|
||||
date: req.body.date ? new Date(req.body.date) : undefined,
|
||||
},
|
||||
});
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
message: "News updated successfully",
|
||||
data: news,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to update news",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// DELETE NEWS
|
||||
|
||||
export const deleteNews = async (req, res) => {
|
||||
try {
|
||||
const { id } = req.params;
|
||||
|
||||
await prisma.newsMedia.delete({
|
||||
where: { id: Number(id) },
|
||||
});
|
||||
|
||||
return res.status(200).json({
|
||||
success: true,
|
||||
message: "News deleted successfully",
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
return res.status(500).json({
|
||||
success: false,
|
||||
message: "Failed to delete news",
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,23 @@
|
||||
import express from "express";
|
||||
import {
|
||||
createNews,
|
||||
getAllNews,
|
||||
getNewsById,
|
||||
updateNews,
|
||||
deleteNews,
|
||||
} from "../controllers/newsMedia.controller.js";
|
||||
|
||||
import jwtAuthMiddleware from "../middleware/auth.js";
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
// PUBLIC ROUTES
|
||||
router.get("/getAll", getAllNews);
|
||||
router.get("/:id", getNewsById);
|
||||
|
||||
// PROTECTED ROUTES
|
||||
router.post("/", jwtAuthMiddleware, createNews);
|
||||
router.patch("/:id", jwtAuthMiddleware, updateNews);
|
||||
router.delete("/:id", jwtAuthMiddleware, deleteNews);
|
||||
|
||||
export default router;
|
||||
@@ -19,6 +19,7 @@ import CareerPage from "./pages/Career";
|
||||
import CandidatePage from "./pages/candidates";
|
||||
import InquiryPage from "./pages/inquiry";
|
||||
import AcademicsPage from "./pages/Academics";
|
||||
import NewsPage from "./pages/newsMedia";
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
@@ -42,6 +43,7 @@ export default function App() {
|
||||
<Route path="/candidate" element={<CandidatePage />} />
|
||||
<Route path="/inquiry" element={<InquiryPage />} />
|
||||
<Route path="/academics" element={<AcademicsPage />} />
|
||||
<Route path="/news" element={<NewsPage />} />
|
||||
</Route>
|
||||
</Route>
|
||||
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
import apiClient from "@/api/client";
|
||||
|
||||
export const getNewsApi = async (page = 1, limit = 10) => {
|
||||
const res = await apiClient.get(
|
||||
`/newsMedia/getAll?page=${page}&limit=${limit}`,
|
||||
);
|
||||
return res.data;
|
||||
};
|
||||
|
||||
export const createNewsApi = async (data: any) => {
|
||||
const res = await apiClient.post("/newsMedia", data);
|
||||
return res.data;
|
||||
};
|
||||
|
||||
export const updateNewsApi = async (id: number, data: any) => {
|
||||
const res = await apiClient.patch(`/newsMedia/${id}`, data);
|
||||
return res.data;
|
||||
};
|
||||
|
||||
export const deleteNewsApi = async (id: number) => {
|
||||
const res = await apiClient.delete(`/newsMedia/${id}`);
|
||||
return res.data;
|
||||
};
|
||||
@@ -35,6 +35,10 @@ export default function Sidebar() {
|
||||
name: "Academics & Research",
|
||||
path: "/academics",
|
||||
},
|
||||
{
|
||||
name: "News & Media",
|
||||
path: "/news",
|
||||
},
|
||||
{
|
||||
name: "Email",
|
||||
path: "/email",
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
import * as React from "react"
|
||||
import { cva, type VariantProps } from "class-variance-authority"
|
||||
import { Slot } from "radix-ui"
|
||||
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const badgeVariants = cva(
|
||||
"group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",
|
||||
{
|
||||
variants: {
|
||||
variant: {
|
||||
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
||||
secondary:
|
||||
"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",
|
||||
destructive:
|
||||
"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",
|
||||
outline:
|
||||
"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",
|
||||
ghost:
|
||||
"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
||||
link: "text-primary underline-offset-4 hover:underline",
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
variant: "default",
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
function Badge({
|
||||
className,
|
||||
variant = "default",
|
||||
asChild = false,
|
||||
...props
|
||||
}: React.ComponentProps<"span"> &
|
||||
VariantProps<typeof badgeVariants> & { asChild?: boolean }) {
|
||||
const Comp = asChild ? Slot.Root : "span"
|
||||
|
||||
return (
|
||||
<Comp
|
||||
data-slot="badge"
|
||||
data-variant={variant}
|
||||
className={cn(badgeVariants({ variant }), className)}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
export { Badge, badgeVariants }
|
||||
@@ -13,11 +13,26 @@ import {
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import { Loader2, Trash, RefreshCw, Download } from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
Download,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
Eye,
|
||||
BookOpen,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function AcademicsPage() {
|
||||
const [records, setRecords] = useState<any[]>([]);
|
||||
@@ -25,6 +40,12 @@ export default function AcademicsPage() {
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
@@ -51,6 +72,20 @@ export default function AcademicsPage() {
|
||||
);
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText]);
|
||||
|
||||
const totalPages = Math.ceil(filteredRecords.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredRecords.slice(indexOfFirstItem, indexOfLastItem);
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleDelete(id: number) {
|
||||
if (!confirm("Delete record?")) return;
|
||||
await deleteAcademicsApi(id);
|
||||
@@ -74,24 +109,29 @@ export default function AcademicsPage() {
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex justify-between items-center gap-3 flex-wrap">
|
||||
<h1 className="text-2xl font-bold">Academics & Research</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Academics & Research</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search name / phone / email / subject..."
|
||||
placeholder="Search name / course / email..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[260px]"
|
||||
className="w-[280px] text-base"
|
||||
/>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button variant="outline" onClick={handleExport}>
|
||||
<Download className="mr-2 h-4 w-4" />
|
||||
<Button onClick={handleExport} className="text-base">
|
||||
<Download className="mr-2 h-5 w-5" />
|
||||
Export
|
||||
</Button>
|
||||
</div>
|
||||
@@ -99,65 +139,108 @@ export default function AcademicsPage() {
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Academics Records</CardTitle>
|
||||
<CardTitle className="text-xl">Academic Records</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[1000px]">
|
||||
<TableHeader>
|
||||
<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-[1100px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Phone</TableHead>
|
||||
<TableHead>Email</TableHead>
|
||||
<TableHead>Course</TableHead>
|
||||
<TableHead>Subject</TableHead>
|
||||
<TableHead>Message</TableHead>
|
||||
<TableHead>Date</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<TableHead className="w-[60px] bg-background font-bold text-sm">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[220px] bg-background font-bold text-sm">
|
||||
Full Name
|
||||
</TableHead>
|
||||
<TableHead className="w-[180px] bg-background font-bold text-sm">
|
||||
Course
|
||||
</TableHead>
|
||||
<TableHead className="w-[180px] bg-background font-bold text-sm">
|
||||
Subject
|
||||
</TableHead>
|
||||
<TableHead className="w-[140px] bg-background font-bold text-sm">
|
||||
Applied Date
|
||||
</TableHead>
|
||||
<TableHead className="w-[220px] bg-background font-bold text-sm">
|
||||
Message
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-right text-sm">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={7} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredRecords.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<TableCell
|
||||
colSpan={7}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No records found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredRecords.map((item) => (
|
||||
<TableRow key={item.id}>
|
||||
<TableCell>{item.id}</TableCell>
|
||||
<TableCell>{item.fullName}</TableCell>
|
||||
<TableCell>{item.number}</TableCell>
|
||||
<TableCell>{item.emailId}</TableCell>
|
||||
|
||||
<TableCell>{item.courseName}</TableCell>
|
||||
<TableCell>{item.subject}</TableCell>
|
||||
|
||||
<TableCell className="max-w-[250px] whitespace-normal">
|
||||
{item.message}
|
||||
currentItems.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<div className="font-semibold text-base truncate">
|
||||
{item.fullName}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground truncate">
|
||||
{item.emailId}
|
||||
</div>
|
||||
<div className="text-[11px] font-medium">
|
||||
{item.number}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm font-medium line-clamp-2">
|
||||
{item.courseName || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm line-clamp-2">
|
||||
{item.subject || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-sm">
|
||||
{new Date(item.createdAt).toLocaleDateString()}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(item.id)}>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<div className="text-sm line-clamp-2 text-muted-foreground italic">
|
||||
{item.message || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openView(item)}
|
||||
>
|
||||
<Eye 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(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -165,8 +248,117 @@ export default function AcademicsPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredRecords.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, filteredRecords.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">{filteredRecords.length}</span>{" "}
|
||||
records
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
||||
<DialogContent className="w-full !max-w-3xl max-h-[85vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl border-b pb-2 flex items-center gap-2">
|
||||
<BookOpen className="h-6 w-6" /> Academic Detail View
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
{viewData && (
|
||||
<div className="space-y-6 py-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Applicant Information
|
||||
</p>
|
||||
<p className="text-lg font-bold text-primary">
|
||||
{viewData.fullName}
|
||||
</p>
|
||||
<p className="text-sm font-medium">{viewData.emailId}</p>
|
||||
<p className="text-sm">{viewData.number}</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Course & Subject
|
||||
</p>
|
||||
<p className="text-base font-semibold">
|
||||
{viewData.courseName || "N/A"}
|
||||
</p>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
{viewData.subject}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Submission Date
|
||||
</p>
|
||||
<p className="text-sm">
|
||||
{new Date(viewData.createdAt).toLocaleString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-4">
|
||||
<div className="p-4 bg-muted/30 rounded-lg border">
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground mb-2">
|
||||
Message / Research Inquiry
|
||||
</p>
|
||||
<p className="text-sm leading-relaxed whitespace-pre-wrap italic">
|
||||
{viewData.message || "No message content provided."}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<DialogFooter>
|
||||
<Button
|
||||
onClick={() => setViewOpen(false)}
|
||||
className="w-full md:w-auto"
|
||||
>
|
||||
Close
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import {useState, useEffect, useCallback} from "react";
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
|
||||
import {getAppointmentsApi, deleteAppointmentApi} from "@/api/appointment";
|
||||
import {exportToExcel} from "@/utils/exportToExcel";
|
||||
import { getAppointmentsApi, deleteAppointmentApi } from "@/api/appointment";
|
||||
import { exportToExcel } from "@/utils/exportToExcel";
|
||||
|
||||
import {
|
||||
Table,
|
||||
@@ -12,12 +12,26 @@ import {
|
||||
TableRow,
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import {Card, CardContent, CardHeader, CardTitle} from "@/components/ui/card";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import {Button} from "@/components/ui/button";
|
||||
import {Input} from "@/components/ui/input";
|
||||
|
||||
import {Loader2, Trash, RefreshCw, Download} from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
Download,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
Eye,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function AppointmentPage() {
|
||||
const [appointments, setAppointments] = useState<any[]>([]);
|
||||
@@ -25,9 +39,14 @@ export default function AppointmentPage() {
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
const [filterDoctor, setFilterDoctor] = useState("");
|
||||
const [filterDepartment, setFilterDepartment] = useState("");
|
||||
const [filterDate, setFilterDate] = useState("");
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
@@ -54,19 +73,30 @@ export default function AppointmentPage() {
|
||||
? item.doctor?.name?.toLowerCase().includes(filterDoctor.toLowerCase())
|
||||
: true;
|
||||
|
||||
const matchesDepartment = filterDepartment
|
||||
? item.department?.name
|
||||
?.toLowerCase()
|
||||
.includes(filterDepartment.toLowerCase())
|
||||
: true;
|
||||
|
||||
const matchesDate = filterDate
|
||||
? new Date(item.date).toISOString().split("T")[0] === filterDate
|
||||
: true;
|
||||
|
||||
return matchesSearch && matchesDoctor && matchesDepartment && matchesDate;
|
||||
return matchesSearch && matchesDoctor && matchesDate;
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText, filterDoctor, filterDate]);
|
||||
|
||||
const totalPages = Math.ceil(filteredAppointments.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredAppointments.slice(
|
||||
indexOfFirstItem,
|
||||
indexOfLastItem,
|
||||
);
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleDelete(id: number) {
|
||||
if (!confirm("Delete appointment?")) return;
|
||||
await deleteAppointmentApi(id);
|
||||
@@ -84,51 +114,41 @@ export default function AppointmentPage() {
|
||||
Date: new Date(item.date).toLocaleDateString(),
|
||||
Message: item.message,
|
||||
}));
|
||||
|
||||
exportToExcel(exportData, "appointments");
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex justify-between items-center gap-3 flex-wrap">
|
||||
<h1 className="text-2xl font-bold">Appointments</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Appointments</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search name / phone / email..."
|
||||
placeholder="Search name / phone..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[220px]"
|
||||
/>
|
||||
|
||||
<Input
|
||||
placeholder="Filter Doctor"
|
||||
value={filterDoctor}
|
||||
onChange={(e) => setFilterDoctor(e.target.value)}
|
||||
className="w-[180px]"
|
||||
/>
|
||||
|
||||
<Input
|
||||
placeholder="Filter Department"
|
||||
value={filterDepartment}
|
||||
onChange={(e) => setFilterDepartment(e.target.value)}
|
||||
className="w-[200px]"
|
||||
className="w-[220px] text-base"
|
||||
/>
|
||||
|
||||
<Input
|
||||
type="date"
|
||||
value={filterDate}
|
||||
onChange={(e) => setFilterDate(e.target.value)}
|
||||
className="w-[180px]"
|
||||
className="w-[160px] text-base"
|
||||
/>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button variant="outline" onClick={handleExport}>
|
||||
<Download className="mr-2 h-4 w-4" />
|
||||
<Button onClick={handleExport} className="text-base">
|
||||
<Download className="mr-2 h-5 w-5" />
|
||||
Export
|
||||
</Button>
|
||||
</div>
|
||||
@@ -136,72 +156,102 @@ export default function AppointmentPage() {
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Appointment List</CardTitle>
|
||||
<CardTitle className="text-xl">Appointment List</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[700px]">
|
||||
<TableHeader>
|
||||
<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-[1000px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Phone</TableHead>
|
||||
<TableHead>Email</TableHead>
|
||||
<TableHead>Doctor</TableHead>
|
||||
<TableHead>Department</TableHead>
|
||||
<TableHead>Appointment Date</TableHead>
|
||||
<TableHead>Message</TableHead>
|
||||
<TableHead>Generated on</TableHead>
|
||||
|
||||
<TableHead>Actions</TableHead>
|
||||
<TableHead className="w-[60px] bg-background font-bold text-sm">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[200px] bg-background font-bold text-sm">
|
||||
Patient
|
||||
</TableHead>
|
||||
<TableHead className="w-[180px] bg-background font-bold text-sm">
|
||||
Doctor
|
||||
</TableHead>
|
||||
<TableHead className="w-[150px] bg-background font-bold text-sm">
|
||||
Date
|
||||
</TableHead>
|
||||
<TableHead className="w-[250px] bg-background font-bold text-sm">
|
||||
Message
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-right text-sm">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={6} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredAppointments.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No appointments found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredAppointments.map((item) => (
|
||||
<TableRow key={item.id}>
|
||||
<TableCell>{item.id}</TableCell>
|
||||
<TableCell>{item.name}</TableCell>
|
||||
<TableCell>{item.mobileNumber}</TableCell>
|
||||
<TableCell>{item.email}</TableCell>
|
||||
<TableCell>{item.doctor?.name}</TableCell>
|
||||
<TableCell>{item.department?.name}</TableCell>
|
||||
|
||||
{/* ✅ DATE ONLY */}
|
||||
<TableCell>
|
||||
{new Date(item.date).toLocaleDateString()}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[250px] whitespace-normal">
|
||||
{item.message}
|
||||
currentItems.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{" "}
|
||||
{new Date(item.createdAt).toLocaleDateString()}
|
||||
<div className="font-semibold text-base truncate">
|
||||
{item.name}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground">
|
||||
{item.mobileNumber}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<div className="text-sm font-medium">
|
||||
{item.doctor?.name || "-"}
|
||||
</div>
|
||||
<div className="text-[10px] text-muted-foreground truncate">
|
||||
{item.department?.name}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm">
|
||||
{new Date(item.date).toLocaleDateString()}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm line-clamp-2 text-muted-foreground italic">
|
||||
{item.message || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openView(item)}
|
||||
>
|
||||
<Eye 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(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -209,8 +259,123 @@ export default function AppointmentPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredAppointments.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, filteredAppointments.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">
|
||||
{filteredAppointments.length}
|
||||
</span>
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
||||
<DialogContent className="w-full !max-w-3xl max-h-[85vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl border-b pb-2">
|
||||
Appointment Details
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
{viewData && (
|
||||
<div className="space-y-6 py-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Patient Information
|
||||
</p>
|
||||
<p className="text-lg font-bold text-primary">
|
||||
{viewData.name}
|
||||
</p>
|
||||
<p className="text-sm">{viewData.mobileNumber}</p>
|
||||
<p className="text-sm">
|
||||
{viewData.email || "No email provided"}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Appointment Date
|
||||
</p>
|
||||
<p className="text-base font-semibold">
|
||||
{new Date(viewData.date).toLocaleDateString()}
|
||||
</p>
|
||||
<p className="text-[10px] text-muted-foreground">
|
||||
Booked on: {new Date(viewData.createdAt).toLocaleString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Doctor / Department
|
||||
</p>
|
||||
<p className="text-base font-bold">
|
||||
{viewData.doctor?.name || "Not Assigned"}
|
||||
</p>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
{viewData.department?.name || "General"}
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 bg-muted/30 rounded-lg">
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground mb-2">
|
||||
Message from Patient
|
||||
</p>
|
||||
<p className="text-sm italic leading-relaxed whitespace-pre-wrap">
|
||||
{viewData.message || "No message provided."}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<DialogFooter>
|
||||
<Button
|
||||
onClick={() => setViewOpen(false)}
|
||||
className="w-full md:w-auto"
|
||||
>
|
||||
Close
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
+238
-110
@@ -1,7 +1,6 @@
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
|
||||
import { getCareersApi, deleteCareerApi } from "@/api/career";
|
||||
|
||||
import apiClient from "@/api/client";
|
||||
|
||||
import {
|
||||
@@ -15,7 +14,6 @@ import {
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
@@ -25,8 +23,17 @@ import {
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
|
||||
import { Loader2, Plus, Pencil, Trash, RefreshCw } from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
Plus,
|
||||
Pencil,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function CareerPage() {
|
||||
const [careers, setCareers] = useState<any[]>([]);
|
||||
@@ -37,6 +44,9 @@ export default function CareerPage() {
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const [form, setForm] = useState({
|
||||
post: "",
|
||||
designation: "",
|
||||
@@ -63,10 +73,21 @@ export default function CareerPage() {
|
||||
fetchAll();
|
||||
}, [fetchAll]);
|
||||
|
||||
const filteredCareers = careers.filter((item) =>
|
||||
item.post?.toLowerCase().includes(searchText.toLowerCase()),
|
||||
const filteredCareers = careers.filter(
|
||||
(item) =>
|
||||
item.post?.toLowerCase().includes(searchText.toLowerCase()) ||
|
||||
item.designation?.toLowerCase().includes(searchText.toLowerCase()),
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText]);
|
||||
|
||||
const totalPages = Math.ceil(filteredCareers.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredCareers.slice(indexOfFirstItem, indexOfLastItem);
|
||||
|
||||
function handleChange(e: any) {
|
||||
setForm({ ...form, [e.target.name]: e.target.value });
|
||||
}
|
||||
@@ -87,7 +108,6 @@ export default function CareerPage() {
|
||||
|
||||
function openEdit(item: any) {
|
||||
setEditing(item);
|
||||
|
||||
setForm({
|
||||
post: item.post || "",
|
||||
designation: item.designation || "",
|
||||
@@ -97,7 +117,6 @@ export default function CareerPage() {
|
||||
number: item.number || "",
|
||||
status: item.status || "new",
|
||||
});
|
||||
|
||||
setOpenModal(true);
|
||||
}
|
||||
|
||||
@@ -108,7 +127,6 @@ export default function CareerPage() {
|
||||
} else {
|
||||
await apiClient.post("/careers", form);
|
||||
}
|
||||
|
||||
setOpenModal(false);
|
||||
fetchAll();
|
||||
} catch (err) {
|
||||
@@ -124,24 +142,29 @@ export default function CareerPage() {
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex justify-between items-center gap-3 flex-wrap">
|
||||
<h1 className="text-2xl font-bold">Careers</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Careers</h1>
|
||||
|
||||
<div className="flex gap-2 flex-wrap">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search career..."
|
||||
placeholder="Search post / designation..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[220px]"
|
||||
className="w-[250px] text-base"
|
||||
/>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button onClick={openAdd}>
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
<Button onClick={openAdd} className="text-base">
|
||||
<Plus className="mr-2 h-5 w-5" />
|
||||
Add Career
|
||||
</Button>
|
||||
</div>
|
||||
@@ -149,67 +172,113 @@ export default function CareerPage() {
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Career List</CardTitle>
|
||||
<CardTitle className="text-xl">Career Opportunities</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[900px]">
|
||||
<TableHeader>
|
||||
<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-[1000px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Post</TableHead>
|
||||
<TableHead>Designation</TableHead>
|
||||
<TableHead>Qualification</TableHead>
|
||||
<TableHead>Experience</TableHead>
|
||||
<TableHead>Email</TableHead>
|
||||
<TableHead>Phone</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<TableHead className="w-[60px] bg-background font-bold text-sm">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[200px] bg-background font-bold text-sm">
|
||||
Post & Designation
|
||||
</TableHead>
|
||||
<TableHead className="w-[200px] bg-background font-bold text-sm">
|
||||
Qualification
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-sm">
|
||||
Experience
|
||||
</TableHead>
|
||||
<TableHead className="w-[200px] bg-background font-bold text-sm">
|
||||
Contact Info
|
||||
</TableHead>
|
||||
<TableHead className="w-[100px] bg-background font-bold text-sm">
|
||||
Status
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-right text-sm">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={7} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredCareers.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} className="text-center">
|
||||
<TableCell
|
||||
colSpan={7}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No careers found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredCareers.map((item) => (
|
||||
<TableRow key={item.id}>
|
||||
<TableCell>{item.id}</TableCell>
|
||||
<TableCell>{item.post}</TableCell>
|
||||
<TableCell>{item.designation}</TableCell>
|
||||
<TableCell>{item.qualification}</TableCell>
|
||||
<TableCell>{item.experienceNeed}</TableCell>
|
||||
<TableCell>{item.email}</TableCell>
|
||||
<TableCell>{item.number}</TableCell>
|
||||
<TableCell>{item.status}</TableCell>
|
||||
|
||||
<TableCell className="flex gap-2">
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() => openEdit(item)}
|
||||
currentItems.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="font-semibold text-base truncate">
|
||||
{item.post}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground truncate">
|
||||
{item.designation}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm line-clamp-2">
|
||||
{item.qualification}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-sm">
|
||||
{item.experienceNeed}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm font-medium">{item.email}</div>
|
||||
<div className="text-xs text-muted-foreground">
|
||||
{item.number}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<Badge
|
||||
variant={
|
||||
item.status === "active" ? "default" : "secondary"
|
||||
}
|
||||
className="capitalize"
|
||||
>
|
||||
<Pencil className="h-4 w-4" />
|
||||
</Button>
|
||||
{item.status}
|
||||
</Badge>
|
||||
</TableCell>
|
||||
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openEdit(item)}
|
||||
>
|
||||
<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(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -217,67 +286,126 @@ export default function CareerPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredCareers.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, filteredCareers.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">{filteredCareers.length}</span>{" "}
|
||||
careers
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* MODAL */}
|
||||
<Dialog open={openModal} onOpenChange={setOpenModal}>
|
||||
<DialogContent>
|
||||
<DialogContent className="w-full max-w-lg">
|
||||
<DialogHeader>
|
||||
<DialogTitle>{editing ? "Edit Career" : "Add Career"}</DialogTitle>
|
||||
<DialogTitle className="text-2xl">
|
||||
{editing ? "Edit Career" : "Add New Career"}
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
|
||||
<div className="space-y-3">
|
||||
<Input
|
||||
name="post"
|
||||
placeholder="Post"
|
||||
value={form.post}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="designation"
|
||||
placeholder="Designation"
|
||||
value={form.designation}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="qualification"
|
||||
placeholder="Qualification"
|
||||
value={form.qualification}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="experienceNeed"
|
||||
placeholder="Experience Needed"
|
||||
value={form.experienceNeed}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="email"
|
||||
placeholder="Email"
|
||||
value={form.email}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="number"
|
||||
placeholder="Phone Number"
|
||||
value={form.number}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="status"
|
||||
placeholder="Status"
|
||||
value={form.status}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<div className="space-y-4 py-4">
|
||||
<div className="grid grid-cols-1 gap-4">
|
||||
<Input
|
||||
name="post"
|
||||
placeholder="Post (e.g. Staff Nurse)"
|
||||
value={form.post}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="designation"
|
||||
placeholder="Designation"
|
||||
value={form.designation}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="qualification"
|
||||
placeholder="Qualification"
|
||||
value={form.qualification}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="experienceNeed"
|
||||
placeholder="Experience Needed"
|
||||
value={form.experienceNeed}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="email"
|
||||
type="email"
|
||||
placeholder="HR Email Address"
|
||||
value={form.email}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="number"
|
||||
placeholder="Contact Number"
|
||||
value={form.number}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
<Input
|
||||
name="status"
|
||||
placeholder="Status (e.g. active / closed)"
|
||||
value={form.status}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<DialogFooter>
|
||||
<Button variant="outline" onClick={() => setOpenModal(false)}>
|
||||
<DialogFooter className="pt-4 border-t">
|
||||
<Button
|
||||
variant="ghost"
|
||||
onClick={() => setOpenModal(false)}
|
||||
className="text-base"
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button onClick={handleSubmit}>
|
||||
{editing ? "Update" : "Create"}
|
||||
<Button onClick={handleSubmit} className="px-8 text-base">
|
||||
{editing ? "Save Changes" : "Create Career"}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
|
||||
+254
-111
@@ -1,5 +1,5 @@
|
||||
import {useState, useEffect, useCallback} from "react";
|
||||
import {AxiosError} from "axios";
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
import { AxiosError } from "axios";
|
||||
|
||||
import {
|
||||
getDepartmentsApi,
|
||||
@@ -17,8 +17,8 @@ import {
|
||||
TableRow,
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import {Card, CardContent, CardHeader, CardTitle} from "@/components/ui/card";
|
||||
import {Button} from "@/components/ui/button";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
import {
|
||||
Dialog,
|
||||
@@ -28,10 +28,19 @@ import {
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import {Input} from "@/components/ui/input";
|
||||
import {Textarea} from "@/components/ui/textarea";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Textarea } from "@/components/ui/textarea";
|
||||
|
||||
import {Loader2, RefreshCw, Plus, Pencil, Trash} from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
RefreshCw,
|
||||
Plus,
|
||||
Pencil,
|
||||
Trash,
|
||||
Eye,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
} from "lucide-react";
|
||||
|
||||
interface Department {
|
||||
departmentId: string;
|
||||
@@ -51,8 +60,14 @@ export default function DepartmentPage() {
|
||||
const [openModal, setOpenModal] = useState(false);
|
||||
const [editing, setEditing] = useState<Department | null>(null);
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<Department | null>(null);
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const [form, setForm] = useState<Department>({
|
||||
departmentId: "",
|
||||
name: "",
|
||||
@@ -85,32 +100,35 @@ export default function DepartmentPage() {
|
||||
fetchDepartments();
|
||||
}, [fetchDepartments]);
|
||||
|
||||
const filteredDepartments = departments.filter((dep) => {
|
||||
const text = searchText.toLowerCase();
|
||||
const filteredDepartments = departments.filter(
|
||||
(dep) =>
|
||||
dep.name.toLowerCase().includes(searchText.toLowerCase()) ||
|
||||
dep.departmentId.toLowerCase().includes(searchText.toLowerCase()),
|
||||
);
|
||||
|
||||
return (
|
||||
dep.name.toLowerCase().includes(text) ||
|
||||
dep.departmentId.toLowerCase().includes(text) ||
|
||||
dep.para1.toLowerCase().includes(text) ||
|
||||
dep.para2.toLowerCase().includes(text) ||
|
||||
dep.para3.toLowerCase().includes(text) ||
|
||||
dep.facilities.toLowerCase().includes(text) ||
|
||||
dep.services.toLowerCase().includes(text)
|
||||
);
|
||||
});
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText]);
|
||||
|
||||
function handleChange(
|
||||
e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>,
|
||||
) {
|
||||
setForm({
|
||||
...form,
|
||||
[e.target.name]: e.target.value,
|
||||
});
|
||||
const totalPages = Math.ceil(filteredDepartments.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredDepartments.slice(
|
||||
indexOfFirstItem,
|
||||
indexOfLastItem,
|
||||
);
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
function openAdd() {
|
||||
setEditing(null);
|
||||
|
||||
setForm({
|
||||
departmentId: "",
|
||||
name: "",
|
||||
@@ -120,7 +138,6 @@ export default function DepartmentPage() {
|
||||
facilities: "",
|
||||
services: "",
|
||||
});
|
||||
|
||||
setOpenModal(true);
|
||||
}
|
||||
|
||||
@@ -130,10 +147,15 @@ export default function DepartmentPage() {
|
||||
setOpenModal(true);
|
||||
}
|
||||
|
||||
function openView(dep: Department) {
|
||||
setViewData(dep);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleSubmit() {
|
||||
try {
|
||||
if (editing) {
|
||||
const {departmentId, ...updateData} = form;
|
||||
const { departmentId, ...updateData } = form;
|
||||
await updateDepartmentApi(editing.departmentId, updateData);
|
||||
} else {
|
||||
await createDepartmentApi(form);
|
||||
@@ -146,12 +168,11 @@ export default function DepartmentPage() {
|
||||
}
|
||||
}
|
||||
|
||||
async function handleDelete(departmentId: string) {
|
||||
const confirmDelete = confirm("Delete this department?");
|
||||
if (!confirmDelete) return;
|
||||
async function handleDelete(id: string) {
|
||||
if (!confirm("Delete this department?")) return;
|
||||
|
||||
try {
|
||||
await deleteDepartmentApi(departmentId);
|
||||
await deleteDepartmentApi(id);
|
||||
fetchDepartments();
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
@@ -160,117 +181,153 @@ export default function DepartmentPage() {
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
{/* HEADER */}
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-3">
|
||||
<h1 className="text-2xl font-bold">Departments</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Departments</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search department..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[220px]"
|
||||
className="w-[250px] text-base"
|
||||
/>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchDepartments}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button onClick={openAdd}>
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
<Button onClick={openAdd} className="text-base">
|
||||
<Plus className="mr-2 h-5 w-5" />
|
||||
Add Department
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
<div className="p-4 text-red-600 bg-red-50 border rounded-md">
|
||||
<div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Department List</CardTitle>
|
||||
<CardTitle className="text-xl">Department List</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="border rounded-md overflow-x-auto max-w-full">
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<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">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Para1</TableHead>
|
||||
<TableHead>Para2</TableHead>
|
||||
<TableHead>Para3</TableHead>
|
||||
<TableHead>Facilities</TableHead>
|
||||
<TableHead>Services</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<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>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={6} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredDepartments.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No departments found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredDepartments.map((dep) => (
|
||||
<TableRow key={dep.departmentId}>
|
||||
<TableCell>{dep.departmentId}</TableCell>
|
||||
|
||||
<TableCell>{dep.name}</TableCell>
|
||||
|
||||
<TableCell className="max-w-[300px] whitespace-normal break-words">
|
||||
{dep.para1}
|
||||
currentItems.map((dep) => (
|
||||
<TableRow
|
||||
key={dep.departmentId}
|
||||
className="hover:bg-muted/50"
|
||||
>
|
||||
<TableCell className="font-mono text-xs">
|
||||
{dep.departmentId}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[300px] whitespace-normal break-words">
|
||||
{dep.para2}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[300px] whitespace-normal break-words">
|
||||
{dep.para3}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[300px] whitespace-normal break-words">
|
||||
{dep.facilities}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[300px] whitespace-normal break-words">
|
||||
{dep.services}
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="flex gap-2">
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() => openEdit(dep)}
|
||||
<TableCell>
|
||||
<div
|
||||
className="font-semibold text-base truncate"
|
||||
title={dep.name}
|
||||
>
|
||||
<Pencil className="h-4 w-4" />
|
||||
</Button>
|
||||
{dep.name}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(dep.departmentId)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<TableCell>
|
||||
<div className="text-sm break-words whitespace-normal">
|
||||
{truncate(dep.para1)}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<div className="text-sm break-words whitespace-normal">
|
||||
{truncate(dep.facilities)}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<div className="text-sm break-words whitespace-normal">
|
||||
{truncate(dep.services)}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<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>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -278,67 +335,108 @@ export default function DepartmentPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* MODAL */}
|
||||
<Dialog open={openModal} onOpenChange={setOpenModal}>
|
||||
<DialogContent className="max-w-4xl">
|
||||
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle>
|
||||
{editing ? "Edit Department" : "Add Department"}
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
|
||||
<div className="space-y-4 max-h-[70vh] overflow-y-auto pr-2">
|
||||
<div className="space-y-4">
|
||||
<Input
|
||||
name="departmentId"
|
||||
placeholder="Department ID"
|
||||
value={form.departmentId}
|
||||
onChange={handleChange}
|
||||
disabled={!!editing}
|
||||
placeholder="Department ID"
|
||||
/>
|
||||
|
||||
<Input
|
||||
name="name"
|
||||
placeholder="Department Name"
|
||||
value={form.name}
|
||||
onChange={handleChange}
|
||||
placeholder="Department Name"
|
||||
/>
|
||||
|
||||
<Textarea
|
||||
name="para1"
|
||||
placeholder="Paragraph 1"
|
||||
value={form.para1}
|
||||
onChange={handleChange}
|
||||
placeholder="Para1"
|
||||
/>
|
||||
|
||||
<Textarea
|
||||
name="para2"
|
||||
placeholder="Paragraph 2"
|
||||
value={form.para2}
|
||||
onChange={handleChange}
|
||||
placeholder="Para2"
|
||||
/>
|
||||
|
||||
<Textarea
|
||||
name="para3"
|
||||
placeholder="Paragraph 3"
|
||||
value={form.para3}
|
||||
onChange={handleChange}
|
||||
placeholder="Para3"
|
||||
/>
|
||||
|
||||
<Textarea
|
||||
name="facilities"
|
||||
placeholder="Facilities"
|
||||
value={form.facilities}
|
||||
onChange={handleChange}
|
||||
placeholder="Facilities"
|
||||
/>
|
||||
|
||||
<Textarea
|
||||
name="services"
|
||||
placeholder="Services"
|
||||
value={form.services}
|
||||
onChange={handleChange}
|
||||
placeholder="Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -346,13 +444,58 @@ export default function DepartmentPage() {
|
||||
<Button variant="outline" onClick={() => setOpenModal(false)}>
|
||||
Cancel
|
||||
</Button>
|
||||
|
||||
<Button onClick={handleSubmit}>
|
||||
{editing ? "Update" : "Create"}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
|
||||
<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>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
+368
-233
@@ -1,4 +1,5 @@
|
||||
import {useState, useEffect, useCallback} from "react";
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
import { AxiosError } from "axios";
|
||||
import {
|
||||
getDoctorsApi,
|
||||
createDoctorApi,
|
||||
@@ -6,8 +7,7 @@ import {
|
||||
deleteDoctorApi,
|
||||
getDoctorTimingApi,
|
||||
} from "@/api/doctor";
|
||||
|
||||
import {getDepartmentsApi} from "@/api/department";
|
||||
import { getDepartmentsApi } from "@/api/department";
|
||||
|
||||
import {
|
||||
Table,
|
||||
@@ -17,10 +17,8 @@ import {
|
||||
TableHeader,
|
||||
TableRow,
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import {Card, CardContent, CardHeader, CardTitle} from "@/components/ui/card";
|
||||
import {Button} from "@/components/ui/button";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
@@ -28,33 +26,49 @@ import {
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import {Popover, PopoverContent, PopoverTrigger} from "@/components/ui/popover";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import {
|
||||
Command,
|
||||
CommandGroup,
|
||||
CommandItem,
|
||||
CommandInput,
|
||||
} from "@/components/ui/command";
|
||||
|
||||
import {Input} from "@/components/ui/input";
|
||||
import {Loader2, Plus, Pencil, Trash, RefreshCw} from "lucide-react";
|
||||
Loader2,
|
||||
RefreshCw,
|
||||
Plus,
|
||||
Pencil,
|
||||
Trash,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
} from "lucide-react";
|
||||
|
||||
interface Department {
|
||||
departmentId: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
const DAYS = [
|
||||
"monday",
|
||||
"tuesday",
|
||||
"wednesday",
|
||||
"thursday",
|
||||
"friday",
|
||||
"saturday",
|
||||
"sunday",
|
||||
"additional",
|
||||
];
|
||||
|
||||
export default function DoctorPage() {
|
||||
const [doctors, setDoctors] = useState<any[]>([]);
|
||||
const [departments, setDepartments] = useState<Department[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState("");
|
||||
|
||||
const [openModal, setOpenModal] = useState(false);
|
||||
const [editing, setEditing] = useState<any>(null);
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
const [filterDepartment, setFilterDepartment] = useState("");
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const [form, setForm] = useState<any>({
|
||||
doctorId: "",
|
||||
name: "",
|
||||
@@ -66,16 +80,20 @@ export default function DoctorPage() {
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
setError("");
|
||||
try {
|
||||
const [docRes, depRes] = await Promise.all([
|
||||
getDoctorsApi(),
|
||||
getDepartmentsApi(),
|
||||
]);
|
||||
|
||||
setDoctors(docRes?.data || []);
|
||||
setDepartments(depRes?.data || []);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
if (err instanceof AxiosError) {
|
||||
setError(err.response?.data?.message || "Failed to load data");
|
||||
} else {
|
||||
setError("Something went wrong");
|
||||
}
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
@@ -97,13 +115,21 @@ export default function DoctorPage() {
|
||||
return matchesSearch && matchesDepartment;
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText, filterDepartment]);
|
||||
|
||||
const totalPages = Math.ceil(filteredDoctors.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredDoctors.slice(indexOfFirstItem, indexOfLastItem);
|
||||
|
||||
function handleChange(e: any) {
|
||||
setForm({...form, [e.target.name]: e.target.value});
|
||||
setForm({ ...form, [e.target.name]: e.target.value });
|
||||
}
|
||||
|
||||
function handleDepartmentChange(depId: string) {
|
||||
function handleDepartmentToggle(depId: string) {
|
||||
const exists = form.departments.find((d: any) => d.departmentId === depId);
|
||||
|
||||
if (exists) {
|
||||
setForm({
|
||||
...form,
|
||||
@@ -114,7 +140,7 @@ export default function DoctorPage() {
|
||||
} else {
|
||||
setForm({
|
||||
...form,
|
||||
departments: [...form.departments, {departmentId: depId, timing: {}}],
|
||||
departments: [...form.departments, { departmentId: depId, timing: {} }],
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -124,10 +150,7 @@ export default function DoctorPage() {
|
||||
...form,
|
||||
departments: form.departments.map((d: any) =>
|
||||
d.departmentId === depId
|
||||
? {
|
||||
...d,
|
||||
timing: {...d.timing, [day]: value},
|
||||
}
|
||||
? { ...d, timing: { ...d.timing, [day]: value } }
|
||||
: d,
|
||||
),
|
||||
});
|
||||
@@ -148,25 +171,20 @@ export default function DoctorPage() {
|
||||
|
||||
async function openEdit(doc: any) {
|
||||
setEditing(doc);
|
||||
|
||||
try {
|
||||
const timingRes = await getDoctorTimingApi(doc.doctorId);
|
||||
const timingData = timingRes?.data?.departments || [];
|
||||
|
||||
const mappedDepartments = timingData.map((d: any) => ({
|
||||
departmentId: d.departmentId,
|
||||
timing: d.timing || {},
|
||||
}));
|
||||
|
||||
setForm({
|
||||
doctorId: doc.doctorId,
|
||||
name: doc.name,
|
||||
designation: doc.designation,
|
||||
workingStatus: doc.workingStatus,
|
||||
qualification: doc.qualification,
|
||||
departments: mappedDepartments,
|
||||
departments: timingData.map((d: any) => ({
|
||||
departmentId: d.departmentId,
|
||||
timing: d.timing || {},
|
||||
})),
|
||||
});
|
||||
|
||||
setOpenModal(true);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
@@ -180,38 +198,40 @@ export default function DoctorPage() {
|
||||
} else {
|
||||
await createDoctorApi(form);
|
||||
}
|
||||
|
||||
setOpenModal(false);
|
||||
fetchAll();
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleDelete(id: string) {
|
||||
if (!confirm("Delete doctor?")) return;
|
||||
await deleteDoctorApi(id);
|
||||
fetchAll();
|
||||
if (!confirm("Delete this doctor?")) return;
|
||||
try {
|
||||
await deleteDoctorApi(id);
|
||||
fetchAll();
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
{/* HEADER */}
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-3">
|
||||
<h1 className="text-2xl font-bold">Doctors</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Doctors</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search doctor..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[200px]"
|
||||
className="w-[250px] text-base"
|
||||
/>
|
||||
|
||||
<select
|
||||
value={filterDepartment}
|
||||
onChange={(e) => setFilterDepartment(e.target.value)}
|
||||
className="border rounded px-2 py-1"
|
||||
className="flex h-10 w-[220px] rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2"
|
||||
>
|
||||
<option value="">All Departments</option>
|
||||
{departments.map((dep) => (
|
||||
@@ -221,93 +241,149 @@ export default function DoctorPage() {
|
||||
))}
|
||||
</select>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button onClick={openAdd}>
|
||||
<Plus className="mr-2 h-4 w-4" />
|
||||
<Button onClick={openAdd} className="text-base">
|
||||
<Plus className="mr-2 h-5 w-5" />
|
||||
Add Doctor
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* TABLE */}
|
||||
{error && (
|
||||
<div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Doctor List</CardTitle>
|
||||
<CardTitle className="text-xl">Doctor List</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[1000px]">
|
||||
<TableHeader>
|
||||
<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">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Designation</TableHead>
|
||||
<TableHead>Status</TableHead>
|
||||
<TableHead>Qualification</TableHead>
|
||||
<TableHead>Departments</TableHead>
|
||||
<TableHead>Timing</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<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-[180px] bg-background text-sm font-bold">
|
||||
Designation
|
||||
</TableHead>
|
||||
<TableHead className="w-[180px] bg-background text-sm font-bold">
|
||||
Qualification
|
||||
</TableHead>
|
||||
<TableHead className="w-[220px] bg-background text-sm font-bold">
|
||||
Departments
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background text-right text-sm font-bold">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={6} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredDoctors.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No doctors found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredDoctors.map((doc) => (
|
||||
<TableRow key={doc.doctorId}>
|
||||
<TableCell>{doc.doctorId}</TableCell>
|
||||
<TableCell>{doc.name}</TableCell>
|
||||
<TableCell>{doc.designation}</TableCell>
|
||||
<TableCell>{doc.workingStatus}</TableCell>
|
||||
<TableCell>{doc.qualification}</TableCell>
|
||||
currentItems.map((doc) => (
|
||||
<TableRow key={doc.doctorId} className="hover:bg-muted/50">
|
||||
<TableCell className="truncate font-mono text-xs">
|
||||
{doc.doctorId}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
{doc.departments
|
||||
?.map((d: any) => d.departmentName)
|
||||
.join(", ")}
|
||||
<div
|
||||
className="font-semibold text-base truncate"
|
||||
title={doc.name}
|
||||
>
|
||||
{doc.name}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground truncate italic">
|
||||
{doc.workingStatus}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="max-w-[250px] whitespace-normal">
|
||||
{doc.departments?.map((d: any) => (
|
||||
<div key={d.departmentId}>
|
||||
<b>{d.departmentName}:</b>{" "}
|
||||
{JSON.stringify(d.timing)}
|
||||
</div>
|
||||
))}
|
||||
<TableCell>
|
||||
<div
|
||||
className="truncate text-sm"
|
||||
title={doc.designation}
|
||||
>
|
||||
{doc.designation || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="flex gap-2">
|
||||
<Button
|
||||
size="sm"
|
||||
variant="outline"
|
||||
onClick={() => openEdit(doc)}
|
||||
<TableCell>
|
||||
<div
|
||||
className="truncate text-sm"
|
||||
title={doc.qualification}
|
||||
>
|
||||
<Pencil className="h-4 w-4" />
|
||||
</Button>
|
||||
{doc.qualification || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(doc.doctorId)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<TableCell>
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{doc.departments?.map((d: any) => (
|
||||
<Badge
|
||||
key={d.departmentId}
|
||||
variant="secondary"
|
||||
className="text-xs px-2 h-5 leading-none"
|
||||
>
|
||||
{d.departmentName}
|
||||
</Badge>
|
||||
))}
|
||||
{doc.departments?.length === 0 && (
|
||||
<span className="text-muted-foreground">-</span>
|
||||
)}
|
||||
</div>
|
||||
</TableCell>
|
||||
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openEdit(doc)}
|
||||
>
|
||||
<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(doc.doctorId)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -315,153 +391,212 @@ export default function DoctorPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredDoctors.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, filteredDoctors.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">{filteredDoctors.length}</span>{" "}
|
||||
doctors
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
{/* MODAL */}
|
||||
{/* MODAL */}
|
||||
<Dialog open={openModal} onOpenChange={setOpenModal}>
|
||||
<DialogContent className="overflow-y-auto max-h-[80vh] ">
|
||||
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle>{editing ? "Edit Doctor" : "Add Doctor"}</DialogTitle>
|
||||
<DialogTitle className="text-2xl">
|
||||
{editing ? "Edit Doctor" : "Add Doctor"}
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
|
||||
<div className="space-y-4">
|
||||
<Input
|
||||
name="doctorId"
|
||||
placeholder="Doctor ID"
|
||||
value={form.doctorId}
|
||||
onChange={handleChange}
|
||||
disabled={!!editing}
|
||||
/>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mt-6">
|
||||
<div className="space-y-6">
|
||||
<h3 className="font-bold text-base border-b pb-2">
|
||||
Basic Information
|
||||
</h3>
|
||||
<div className="space-y-4">
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Doctor ID</label>
|
||||
<Input
|
||||
name="doctorId"
|
||||
placeholder="GG-DOC-001"
|
||||
value={form.doctorId}
|
||||
onChange={handleChange}
|
||||
disabled={!!editing}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Full Name</label>
|
||||
<Input
|
||||
name="name"
|
||||
placeholder="Dr. John Doe"
|
||||
value={form.name}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Designation</label>
|
||||
<Input
|
||||
name="designation"
|
||||
placeholder="Senior Consultant"
|
||||
value={form.designation}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">
|
||||
Working Status
|
||||
</label>
|
||||
<Input
|
||||
name="workingStatus"
|
||||
placeholder="Active / On Call"
|
||||
value={form.workingStatus}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Qualification</label>
|
||||
<Input
|
||||
name="qualification"
|
||||
placeholder="MBBS, MD"
|
||||
value={form.qualification}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Input
|
||||
name="name"
|
||||
placeholder="Name"
|
||||
value={form.name}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="designation"
|
||||
placeholder="Designation"
|
||||
value={form.designation}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="workingStatus"
|
||||
placeholder="Working Status"
|
||||
value={form.workingStatus}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
<Input
|
||||
name="qualification"
|
||||
placeholder="Qualification"
|
||||
value={form.qualification}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
|
||||
{/* Departments */}
|
||||
<div>
|
||||
<p className="font-medium mb-2">Departments</p>
|
||||
|
||||
<Popover>
|
||||
<PopoverTrigger asChild>
|
||||
<Button className="w-full justify-between h-auto min-h-[40px]">
|
||||
{form.departments.length > 0 ? (
|
||||
<div className="flex flex-col items-start gap-1 text-left">
|
||||
{form.departments.map((d: any) => {
|
||||
const name = departments.find(
|
||||
(dep) => dep.departmentId === d.departmentId,
|
||||
)?.name;
|
||||
|
||||
return (
|
||||
<span key={d.departmentId} className="text-sm">
|
||||
{name}
|
||||
</span>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
) : (
|
||||
<span>Select Departments</span>
|
||||
)}
|
||||
</Button>
|
||||
</PopoverTrigger>
|
||||
|
||||
<PopoverContent className="w-[300px] p-0">
|
||||
<Command>
|
||||
<CommandInput placeholder="Search department..." />
|
||||
|
||||
<CommandGroup className="max-h-[250px] overflow-y-auto">
|
||||
{departments.map((dep) => {
|
||||
const selected = form.departments.some(
|
||||
(d: any) => d.departmentId === dep.departmentId,
|
||||
);
|
||||
|
||||
return (
|
||||
<CommandItem
|
||||
key={dep.departmentId}
|
||||
className="flex justify-between"
|
||||
onSelect={() =>
|
||||
handleDepartmentChange(dep.departmentId)
|
||||
}
|
||||
>
|
||||
<span>{dep.name}</span>
|
||||
{selected && <span>✔</span>}
|
||||
</CommandItem>
|
||||
);
|
||||
})}
|
||||
</CommandGroup>
|
||||
</Command>
|
||||
</PopoverContent>
|
||||
</Popover>
|
||||
<div className="p-5 border rounded-md bg-muted/20">
|
||||
<p className="text-base font-bold mb-4">Assign Departments</p>
|
||||
<div className="grid grid-cols-2 gap-3">
|
||||
{departments.map((dep) => {
|
||||
const isSelected = form.departments.some(
|
||||
(d: any) => d.departmentId === dep.departmentId,
|
||||
);
|
||||
return (
|
||||
<Button
|
||||
key={dep.departmentId}
|
||||
type="button"
|
||||
variant={isSelected ? "default" : "outline"}
|
||||
size="sm"
|
||||
className="justify-start text-sm h-9"
|
||||
onClick={() => handleDepartmentToggle(dep.departmentId)}
|
||||
>
|
||||
{dep.name}
|
||||
</Button>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{form.departments.map((dep: any) => {
|
||||
const depName = departments.find(
|
||||
(d) => d.departmentId === dep.departmentId,
|
||||
)?.name;
|
||||
|
||||
return (
|
||||
<div
|
||||
key={dep.departmentId}
|
||||
className="tw-border tw-p-3 tw-rounded"
|
||||
>
|
||||
<p className="tw-font-semibold">{depName}</p>
|
||||
|
||||
{[
|
||||
"monday",
|
||||
"tuesday",
|
||||
"wednesday",
|
||||
"thursday",
|
||||
"friday",
|
||||
"saturday",
|
||||
"sunday",
|
||||
"additional",
|
||||
].map((day) => (
|
||||
<Input
|
||||
key={day}
|
||||
placeholder={day}
|
||||
value={dep.timing?.[day] || ""}
|
||||
onChange={(e) =>
|
||||
handleTimingChange(
|
||||
dep.departmentId,
|
||||
day,
|
||||
e.target.value,
|
||||
)
|
||||
}
|
||||
/>
|
||||
))}
|
||||
<div className="space-y-6">
|
||||
<h3 className="font-bold text-base border-b pb-2">
|
||||
Working Hours / Timing
|
||||
</h3>
|
||||
{form.departments.length === 0 ? (
|
||||
<div className="text-base text-muted-foreground italic py-24 text-center border-2 border-dashed rounded-lg">
|
||||
Select a department to configure timing slots
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
) : (
|
||||
<div className="space-y-8">
|
||||
{form.departments.map((dep: any) => {
|
||||
const depName = departments.find(
|
||||
(d) => d.departmentId === dep.departmentId,
|
||||
)?.name;
|
||||
return (
|
||||
<div
|
||||
key={dep.departmentId}
|
||||
className="space-y-4 p-5 border rounded-lg bg-background shadow-sm"
|
||||
>
|
||||
<div className="flex items-center justify-between">
|
||||
<p className="font-bold text-base text-primary">
|
||||
{depName}
|
||||
</p>
|
||||
<Badge variant="outline" className="text-xs">
|
||||
Timing Slot
|
||||
</Badge>
|
||||
</div>
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-x-6 gap-y-3">
|
||||
{DAYS.map((day) => (
|
||||
<div key={day} className="space-y-1">
|
||||
<label className="text-xs uppercase font-bold text-muted-foreground">
|
||||
{day}
|
||||
</label>
|
||||
<Input
|
||||
className="h-9 text-sm"
|
||||
placeholder="e.g. 09:00 AM - 01:00 PM"
|
||||
value={dep.timing?.[day] || ""}
|
||||
onChange={(e) =>
|
||||
handleTimingChange(
|
||||
dep.departmentId,
|
||||
day,
|
||||
e.target.value,
|
||||
)
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<DialogFooter>
|
||||
<Button variant="outline" onClick={() => setOpenModal(false)}>
|
||||
<DialogFooter className="mt-10 pt-6 border-t">
|
||||
<Button
|
||||
variant="ghost"
|
||||
onClick={() => setOpenModal(false)}
|
||||
className="text-base"
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button onClick={handleSubmit}>
|
||||
{editing ? "Update" : "Create"}
|
||||
<Button onClick={handleSubmit} className="px-10 text-base">
|
||||
{editing ? "Save Changes" : "Create Doctor Profile"}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
|
||||
@@ -13,11 +13,26 @@ import {
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import { Loader2, Trash, RefreshCw, Download } from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
Download,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
Eye,
|
||||
User,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function CandidatePage() {
|
||||
const [candidates, setCandidates] = useState<any[]>([]);
|
||||
@@ -26,6 +41,12 @@ export default function CandidatePage() {
|
||||
const [searchText, setSearchText] = useState("");
|
||||
const [filterCareer, setFilterCareer] = useState("");
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
@@ -55,6 +76,23 @@ export default function CandidatePage() {
|
||||
return matchesSearch && matchesCareer;
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText, filterCareer]);
|
||||
|
||||
const totalPages = Math.ceil(filteredCandidates.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredCandidates.slice(
|
||||
indexOfFirstItem,
|
||||
indexOfLastItem,
|
||||
);
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleDelete(id: number) {
|
||||
if (!confirm("Delete candidate?")) return;
|
||||
await deleteCandidateApi(id);
|
||||
@@ -71,7 +109,7 @@ export default function CandidatePage() {
|
||||
Designation: item.career?.designation,
|
||||
Subject: item.subject,
|
||||
CoverLetter: item.coverLetter,
|
||||
Date: new Date(item.createdAt).toLocaleDateString(),
|
||||
AppliedDate: new Date(item.createdAt).toLocaleDateString(),
|
||||
}));
|
||||
|
||||
exportToExcel(exportData, "candidates");
|
||||
@@ -79,31 +117,36 @@ export default function CandidatePage() {
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex justify-between items-center gap-3 flex-wrap">
|
||||
<h1 className="text-2xl font-bold">Candidates</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Candidates</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search name / phone / email..."
|
||||
placeholder="Search candidate..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[220px]"
|
||||
className="w-[250px] text-base"
|
||||
/>
|
||||
|
||||
<Input
|
||||
placeholder="Filter Career"
|
||||
placeholder="Filter by Career"
|
||||
value={filterCareer}
|
||||
onChange={(e) => setFilterCareer(e.target.value)}
|
||||
className="w-[200px]"
|
||||
className="w-[200px] text-base"
|
||||
/>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button variant="outline" onClick={handleExport}>
|
||||
<Download className="mr-2 h-4 w-4" />
|
||||
<Button onClick={handleExport} className="text-base">
|
||||
<Download className="mr-2 h-5 w-5" />
|
||||
Export
|
||||
</Button>
|
||||
</div>
|
||||
@@ -111,68 +154,104 @@ export default function CandidatePage() {
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Candidate List</CardTitle>
|
||||
<CardTitle className="text-xl">Application List</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[900px]">
|
||||
<TableHeader>
|
||||
<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-[1100px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Phone</TableHead>
|
||||
<TableHead>Email</TableHead>
|
||||
<TableHead>Career</TableHead>
|
||||
<TableHead>Designation</TableHead>
|
||||
<TableHead>Subject</TableHead>
|
||||
<TableHead>Cover Letter</TableHead>
|
||||
<TableHead>Applied On</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<TableHead className="w-[60px] bg-background font-bold text-sm">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[220px] bg-background font-bold text-sm">
|
||||
Full Name
|
||||
</TableHead>
|
||||
<TableHead className="w-[180px] bg-background font-bold text-sm">
|
||||
Career & Post
|
||||
</TableHead>
|
||||
<TableHead className="w-[150px] bg-background font-bold text-sm">
|
||||
Contact
|
||||
</TableHead>
|
||||
<TableHead className="w-[140px] bg-background font-bold text-sm">
|
||||
Applied On
|
||||
</TableHead>
|
||||
<TableHead className="w-[250px] bg-background font-bold text-sm">
|
||||
Cover Letter
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-right text-sm">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={10} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={7} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredCandidates.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={10} className="text-center">
|
||||
<TableCell
|
||||
colSpan={7}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No candidates found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredCandidates.map((item) => (
|
||||
<TableRow key={item.id}>
|
||||
<TableCell>{item.id}</TableCell>
|
||||
<TableCell>{item.fullName}</TableCell>
|
||||
<TableCell>{item.mobile}</TableCell>
|
||||
<TableCell>{item.email}</TableCell>
|
||||
|
||||
<TableCell>{item.career?.post}</TableCell>
|
||||
<TableCell>{item.career?.designation}</TableCell>
|
||||
|
||||
<TableCell>{item.subject}</TableCell>
|
||||
|
||||
<TableCell className="max-w-[250px] whitespace-normal">
|
||||
{item.coverLetter}
|
||||
currentItems.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<div className="font-semibold text-base truncate">
|
||||
{item.fullName}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground truncate">
|
||||
{item.email}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm font-medium">
|
||||
{item.career?.post || "-"}
|
||||
</div>
|
||||
<div className="text-[10px] text-muted-foreground truncate">
|
||||
{item.career?.designation}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-sm">{item.mobile}</TableCell>
|
||||
<TableCell className="text-sm">
|
||||
{new Date(item.createdAt).toLocaleDateString()}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(item.id)}>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<div className="text-sm line-clamp-2 text-muted-foreground italic">
|
||||
{item.coverLetter || "No cover letter provided."}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openView(item)}
|
||||
>
|
||||
<Eye 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(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -180,8 +259,126 @@ export default function CandidatePage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredCandidates.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, filteredCandidates.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">
|
||||
{filteredCandidates.length}
|
||||
</span>
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
||||
<DialogContent className="w-full !max-w-3xl max-h-[85vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl border-b pb-2 flex items-center gap-2">
|
||||
<User className="h-6 w-6" /> Candidate Details
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
{viewData && (
|
||||
<div className="space-y-6 py-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Personal Information
|
||||
</p>
|
||||
<p className="text-lg font-bold text-primary">
|
||||
{viewData.fullName}
|
||||
</p>
|
||||
<p className="text-sm font-medium">{viewData.email}</p>
|
||||
<p className="text-sm">{viewData.mobile}</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Applied For
|
||||
</p>
|
||||
<p className="text-base font-semibold">
|
||||
{viewData.career?.post || "General Application"}
|
||||
</p>
|
||||
<p className="text-sm text-muted-foreground">
|
||||
{viewData.career?.designation}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Application Date
|
||||
</p>
|
||||
<p className="text-sm">
|
||||
{new Date(viewData.createdAt).toLocaleString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Subject
|
||||
</p>
|
||||
<p className="text-sm font-semibold">
|
||||
{viewData.subject || "N/A"}
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 bg-muted/30 rounded-lg">
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground mb-2">
|
||||
Cover Letter / Message
|
||||
</p>
|
||||
<p className="text-sm leading-relaxed whitespace-pre-wrap italic">
|
||||
{viewData.coverLetter || "No cover letter provided."}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<DialogFooter>
|
||||
<Button
|
||||
onClick={() => setViewOpen(false)}
|
||||
className="w-full md:w-auto"
|
||||
>
|
||||
Close
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
+234
-46
@@ -13,11 +13,26 @@ import {
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import { Loader2, Trash, RefreshCw, Download } from "lucide-react";
|
||||
import {
|
||||
Loader2,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
Download,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
Eye,
|
||||
Mail,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function InquiryPage() {
|
||||
const [inquiries, setInquiries] = useState<any[]>([]);
|
||||
@@ -25,6 +40,12 @@ export default function InquiryPage() {
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const itemsPerPage = 10;
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
@@ -50,6 +71,23 @@ export default function InquiryPage() {
|
||||
);
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
setCurrentPage(1);
|
||||
}, [searchText]);
|
||||
|
||||
const totalPages = Math.ceil(filteredInquiries.length / itemsPerPage);
|
||||
const indexOfLastItem = currentPage * itemsPerPage;
|
||||
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
|
||||
const currentItems = filteredInquiries.slice(
|
||||
indexOfFirstItem,
|
||||
indexOfLastItem,
|
||||
);
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleDelete(id: number) {
|
||||
if (!confirm("Delete inquiry?")) return;
|
||||
await deleteInquiryApi(id);
|
||||
@@ -72,24 +110,29 @@ export default function InquiryPage() {
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex justify-between items-center gap-3 flex-wrap">
|
||||
<h1 className="text-2xl font-bold">Inquiries</h1>
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold">Inquiries</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-wrap gap-3">
|
||||
<Input
|
||||
placeholder="Search name / phone / email / subject..."
|
||||
placeholder="Search name / phone / subject..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[260px]"
|
||||
className="w-[280px] text-base"
|
||||
/>
|
||||
|
||||
<Button variant="outline" onClick={fetchAll} disabled={loading}>
|
||||
<RefreshCw className="mr-2 h-4 w-4" />
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button variant="outline" onClick={handleExport}>
|
||||
<Download className="mr-2 h-4 w-4" />
|
||||
<Button onClick={handleExport} className="text-base">
|
||||
<Download className="mr-2 h-5 w-5" />
|
||||
Export
|
||||
</Button>
|
||||
</div>
|
||||
@@ -97,62 +140,100 @@ export default function InquiryPage() {
|
||||
|
||||
<Card>
|
||||
<CardHeader>
|
||||
<CardTitle>Inquiry List</CardTitle>
|
||||
<CardTitle className="text-xl">Customer Inquiries</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<div className="overflow-x-auto">
|
||||
<Table className="min-w-[900px]">
|
||||
<TableHeader>
|
||||
<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-[1000px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead>ID</TableHead>
|
||||
<TableHead>Name</TableHead>
|
||||
<TableHead>Phone</TableHead>
|
||||
<TableHead>Email</TableHead>
|
||||
<TableHead>Subject</TableHead>
|
||||
<TableHead>Message</TableHead>
|
||||
<TableHead>Date</TableHead>
|
||||
<TableHead>Actions</TableHead>
|
||||
<TableHead className="w-[60px] bg-background font-bold text-sm">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[220px] bg-background font-bold text-sm">
|
||||
Customer Details
|
||||
</TableHead>
|
||||
<TableHead className="w-[200px] bg-background font-bold text-sm">
|
||||
Subject
|
||||
</TableHead>
|
||||
<TableHead className="w-[150px] bg-background font-bold text-sm">
|
||||
Date
|
||||
</TableHead>
|
||||
<TableHead className="w-[280px] bg-background font-bold text-sm">
|
||||
Message Snippet
|
||||
</TableHead>
|
||||
<TableHead className="w-[120px] bg-background font-bold text-right text-sm">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<Loader2 className="h-6 w-6 animate-spin mx-auto" />
|
||||
<TableCell colSpan={6} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredInquiries.length === 0 ? (
|
||||
) : currentItems.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center">
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No inquiries found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredInquiries.map((item) => (
|
||||
<TableRow key={item.id}>
|
||||
<TableCell>{item.id}</TableCell>
|
||||
<TableCell>{item.fullName}</TableCell>
|
||||
<TableCell>{item.number}</TableCell>
|
||||
<TableCell>{item.emailId}</TableCell>
|
||||
<TableCell>{item.subject}</TableCell>
|
||||
|
||||
<TableCell className="max-w-[250px] whitespace-normal">
|
||||
{item.message}
|
||||
currentItems.map((item) => (
|
||||
<TableRow key={item.id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.id}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<div className="font-semibold text-base truncate">
|
||||
{item.fullName}
|
||||
</div>
|
||||
<div className="text-xs text-muted-foreground truncate">
|
||||
{item.emailId}
|
||||
</div>
|
||||
<div className="text-[11px] font-medium">
|
||||
{item.number}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm font-medium line-clamp-2">
|
||||
{item.subject || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-sm">
|
||||
{new Date(item.createdAt).toLocaleDateString()}
|
||||
</TableCell>
|
||||
|
||||
<TableCell>
|
||||
<Button
|
||||
size="sm"
|
||||
variant="destructive"
|
||||
onClick={() => handleDelete(item.id)}>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
<div className="text-sm line-clamp-2 text-muted-foreground italic">
|
||||
{item.message || "-"}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openView(item)}
|
||||
>
|
||||
<Eye 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(item.id)}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
@@ -160,8 +241,115 @@ export default function InquiryPage() {
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && filteredInquiries.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, filteredInquiries.length)}
|
||||
</span>{" "}
|
||||
of{" "}
|
||||
<span className="font-semibold">
|
||||
{filteredInquiries.length}
|
||||
</span>
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
||||
<DialogContent className="w-full !max-w-3xl max-h-[85vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl border-b pb-2 flex items-center gap-2">
|
||||
<Mail className="h-6 w-6" /> Inquiry Details
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
{viewData && (
|
||||
<div className="space-y-6 py-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Customer Information
|
||||
</p>
|
||||
<p className="text-lg font-bold text-primary">
|
||||
{viewData.fullName}
|
||||
</p>
|
||||
<p className="text-sm font-medium">{viewData.emailId}</p>
|
||||
<p className="text-sm">{viewData.number}</p>
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Received Date
|
||||
</p>
|
||||
<p className="text-sm">
|
||||
{new Date(viewData.createdAt).toLocaleString()}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground">
|
||||
Subject
|
||||
</p>
|
||||
<p className="text-base font-semibold">
|
||||
{viewData.subject || "No Subject"}
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 bg-muted/30 rounded-lg border">
|
||||
<p className="text-xs uppercase font-bold text-muted-foreground mb-2">
|
||||
Message
|
||||
</p>
|
||||
<p className="text-sm leading-relaxed whitespace-pre-wrap">
|
||||
{viewData.message || "No message content."}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<DialogFooter>
|
||||
<Button
|
||||
onClick={() => setViewOpen(false)}
|
||||
className="w-full md:w-auto"
|
||||
>
|
||||
Close
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,500 @@
|
||||
import { useState, useEffect, useCallback } from "react";
|
||||
|
||||
import {
|
||||
getNewsApi,
|
||||
createNewsApi,
|
||||
updateNewsApi,
|
||||
deleteNewsApi,
|
||||
} from "@/api/newsMedia";
|
||||
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
TableCell,
|
||||
TableHead,
|
||||
TableHeader,
|
||||
TableRow,
|
||||
} from "@/components/ui/table";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Textarea } from "@/components/ui/textarea";
|
||||
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogFooter,
|
||||
} from "@/components/ui/dialog";
|
||||
|
||||
import {
|
||||
Loader2,
|
||||
Plus,
|
||||
Pencil,
|
||||
Trash,
|
||||
RefreshCw,
|
||||
Eye,
|
||||
ChevronLeft,
|
||||
ChevronRight,
|
||||
Newspaper,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function NewsPage() {
|
||||
const [news, setNews] = useState<any[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [totalItems, setTotalItems] = useState(0);
|
||||
|
||||
const [searchText, setSearchText] = useState("");
|
||||
|
||||
const [openModal, setOpenModal] = useState(false);
|
||||
const [editing, setEditing] = useState<any>(null);
|
||||
|
||||
const [viewOpen, setViewOpen] = useState(false);
|
||||
const [viewData, setViewData] = useState<any>(null);
|
||||
|
||||
const [currentPage, setCurrentPage] = useState(1);
|
||||
const [itemsPerPage, setItemsPerPage] = useState(10);
|
||||
|
||||
const [form, setForm] = useState({
|
||||
headline: "",
|
||||
content: "",
|
||||
firstPara: "",
|
||||
secondPara: "",
|
||||
date: "",
|
||||
author: "",
|
||||
});
|
||||
|
||||
const fetchAll = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
const res = await getNewsApi(currentPage, itemsPerPage);
|
||||
|
||||
setNews(res?.data || []);
|
||||
setTotalItems(res?.meta?.total || 0);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [currentPage, itemsPerPage]);
|
||||
|
||||
useEffect(() => {
|
||||
fetchAll();
|
||||
}, [fetchAll]);
|
||||
|
||||
const filteredNews = news.filter(
|
||||
(item) =>
|
||||
item.Headline?.toLowerCase().includes(searchText.toLowerCase()) ||
|
||||
item.Author?.toLowerCase().includes(searchText.toLowerCase()),
|
||||
);
|
||||
|
||||
const totalPages = Math.ceil(totalItems / itemsPerPage);
|
||||
|
||||
function handleChange(e: any) {
|
||||
setForm({ ...form, [e.target.name]: e.target.value });
|
||||
}
|
||||
|
||||
function openAdd() {
|
||||
setEditing(null);
|
||||
setForm({
|
||||
headline: "",
|
||||
content: "",
|
||||
firstPara: "",
|
||||
secondPara: "",
|
||||
date: "",
|
||||
author: "",
|
||||
});
|
||||
setOpenModal(true);
|
||||
}
|
||||
|
||||
function openEdit(item: any) {
|
||||
setEditing(item);
|
||||
setForm({
|
||||
headline: item.Headline || "",
|
||||
content: item.Content || "",
|
||||
firstPara: item.FirstPara || "",
|
||||
secondPara: item.SecondPara || "",
|
||||
date: item.Date ? item.Date.split("T")[0] : "",
|
||||
author: item.Author || "",
|
||||
});
|
||||
setOpenModal(true);
|
||||
}
|
||||
|
||||
function openView(item: any) {
|
||||
setViewData(item);
|
||||
setViewOpen(true);
|
||||
}
|
||||
|
||||
async function handleSubmit() {
|
||||
try {
|
||||
if (editing) {
|
||||
await updateNewsApi(editing.Id, form);
|
||||
} else {
|
||||
await createNewsApi(form);
|
||||
}
|
||||
setOpenModal(false);
|
||||
fetchAll();
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleDelete(id: number) {
|
||||
if (!confirm("Delete news?")) return;
|
||||
await deleteNewsApi(id);
|
||||
fetchAll();
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="p-6 space-y-6">
|
||||
<div className="flex flex-col md:flex-row md:justify-between md:items-center gap-4">
|
||||
<h1 className="text-3xl font-bold font-sans tracking-tight">
|
||||
News Media
|
||||
</h1>
|
||||
|
||||
<div className="flex flex-wrap gap-3 items-center">
|
||||
<Input
|
||||
placeholder="Filter headline..."
|
||||
value={searchText}
|
||||
onChange={(e) => setSearchText(e.target.value)}
|
||||
className="w-[250px] text-base"
|
||||
/>
|
||||
|
||||
<select
|
||||
value={itemsPerPage}
|
||||
onChange={(e) => {
|
||||
setItemsPerPage(Number(e.target.value));
|
||||
setCurrentPage(1);
|
||||
}}
|
||||
className="flex h-10 rounded-md border border-input bg-background px-3 py-2 text-sm focus:ring-2 focus:ring-primary"
|
||||
>
|
||||
<option value={5}>5 / page</option>
|
||||
<option value={10}>10 / page</option>
|
||||
<option value={20}>20 / page</option>
|
||||
</select>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={fetchAll}
|
||||
disabled={loading}
|
||||
className="text-base"
|
||||
>
|
||||
<RefreshCw className="mr-2 h-5 w-5" />
|
||||
Refresh
|
||||
</Button>
|
||||
|
||||
<Button onClick={openAdd} className="text-base">
|
||||
<Plus className="mr-2 h-5 w-5" />
|
||||
Add News
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Card className="shadow-sm">
|
||||
<CardHeader>
|
||||
<CardTitle className="text-xl">News Archives</CardTitle>
|
||||
</CardHeader>
|
||||
|
||||
<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-[1000px] table-fixed border-separate border-spacing-0">
|
||||
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
|
||||
<TableRow>
|
||||
<TableHead className="w-[80px] bg-background font-bold">
|
||||
ID
|
||||
</TableHead>
|
||||
<TableHead className="w-[280px] bg-background font-bold">
|
||||
Headline
|
||||
</TableHead>
|
||||
<TableHead className="w-[150px] bg-background font-bold">
|
||||
Author
|
||||
</TableHead>
|
||||
<TableHead className="w-[140px] bg-background font-bold">
|
||||
Date
|
||||
</TableHead>
|
||||
<TableHead className="w-[250px] bg-background font-bold">
|
||||
Content Preview
|
||||
</TableHead>
|
||||
<TableHead className="w-[150px] bg-background font-bold text-right">
|
||||
Actions
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
|
||||
<TableBody>
|
||||
{loading ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={6} className="text-center py-10">
|
||||
<Loader2 className="h-8 w-8 animate-spin mx-auto text-primary" />
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : filteredNews.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell
|
||||
colSpan={6}
|
||||
className="text-center text-muted-foreground py-10 text-base"
|
||||
>
|
||||
No news articles found
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
filteredNews.map((item) => (
|
||||
<TableRow key={item.Id} className="hover:bg-muted/50">
|
||||
<TableCell className="font-mono text-xs">
|
||||
{item.Id}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div
|
||||
className="font-semibold text-base line-clamp-2"
|
||||
title={item.Headline}
|
||||
>
|
||||
{item.Headline}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-sm font-medium">
|
||||
{item.Author || "-"}
|
||||
</TableCell>
|
||||
<TableCell className="text-sm">
|
||||
{item.Date
|
||||
? new Date(item.Date).toLocaleDateString()
|
||||
: "-"}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="text-sm line-clamp-2 text-muted-foreground">
|
||||
{item.Content}
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell className="text-right">
|
||||
<div className="flex justify-end gap-2">
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openView(item)}
|
||||
>
|
||||
<Eye className="h-4 w-4" />
|
||||
</Button>
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9"
|
||||
onClick={() => openEdit(item)}
|
||||
>
|
||||
<Pencil className="h-4 w-4" />
|
||||
</Button>
|
||||
<Button
|
||||
size="icon"
|
||||
variant="ghost"
|
||||
className="h-9 w-9 text-destructive hover:bg-destructive/10"
|
||||
onClick={() => handleDelete(Number(item.Id))}
|
||||
>
|
||||
<Trash className="h-4 w-4" />
|
||||
</Button>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{!loading && totalItems > 0 && (
|
||||
<div className="flex items-center justify-between px-2 py-4 border-t">
|
||||
<div className="text-sm text-muted-foreground">
|
||||
Total <span className="font-bold">{totalItems}</span> articles
|
||||
(Page <span className="font-bold">{currentPage}</span> of{" "}
|
||||
{totalPages})
|
||||
</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>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Dialog open={openModal} onOpenChange={setOpenModal}>
|
||||
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl font-bold">
|
||||
{editing ? "Edit News Article" : "Add New News Article"}
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mt-6">
|
||||
<div className="space-y-6">
|
||||
<h3 className="font-bold text-base border-b pb-2 text-primary">
|
||||
Article Information
|
||||
</h3>
|
||||
<div className="space-y-4">
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Headline</label>
|
||||
<Input
|
||||
name="headline"
|
||||
value={form.headline}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Author</label>
|
||||
<Input
|
||||
name="author"
|
||||
value={form.author}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Publish Date</label>
|
||||
<Input
|
||||
type="date"
|
||||
name="date"
|
||||
value={form.date}
|
||||
onChange={handleChange}
|
||||
className="text-base"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-1 pt-2">
|
||||
<label className="text-sm font-semibold">Intro Paragraph</label>
|
||||
<Textarea
|
||||
name="firstPara"
|
||||
value={form.firstPara}
|
||||
onChange={handleChange}
|
||||
className="min-h-[140px] text-base"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="space-y-6">
|
||||
<h3 className="font-bold text-base border-b pb-2 text-primary">
|
||||
Story Details
|
||||
</h3>
|
||||
<div className="space-y-4">
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">
|
||||
Second Paragraph
|
||||
</label>
|
||||
<Textarea
|
||||
name="secondPara"
|
||||
value={form.secondPara}
|
||||
onChange={handleChange}
|
||||
className="min-h-[140px] text-base"
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<label className="text-sm font-semibold">Content</label>
|
||||
<Textarea
|
||||
name="content"
|
||||
value={form.content}
|
||||
onChange={handleChange}
|
||||
className="min-h-[200px] text-base"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<DialogFooter className="mt-10 pt-6 border-t">
|
||||
<Button
|
||||
variant="ghost"
|
||||
onClick={() => setOpenModal(false)}
|
||||
className="text-base"
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
<Button
|
||||
onClick={handleSubmit}
|
||||
className="px-10 text-base bg-primary text-white"
|
||||
>
|
||||
{editing ? "Save Changes" : "Publish Now"}
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
|
||||
<Dialog open={viewOpen} onOpenChange={setViewOpen}>
|
||||
<DialogContent className="w-full !max-w-4xl max-h-[85vh] overflow-y-auto p-6">
|
||||
<DialogHeader>
|
||||
<DialogTitle className="text-2xl border-b pb-2 flex items-center gap-2">
|
||||
<Newspaper className="h-6 w-6 text-primary" /> News Preview
|
||||
</DialogTitle>
|
||||
</DialogHeader>
|
||||
|
||||
{viewData && (
|
||||
<div className="space-y-6 py-4">
|
||||
<div className="space-y-2">
|
||||
<h2 className="text-2xl font-bold leading-tight">
|
||||
{viewData.Headline}
|
||||
</h2>
|
||||
<div className="flex gap-4 text-sm text-muted-foreground font-medium italic">
|
||||
<span>By: {viewData.Author || "Anonymous"}</span>
|
||||
<span>•</span>
|
||||
<span>
|
||||
{viewData.Date
|
||||
? new Date(viewData.Date).toLocaleDateString("en-IN", {
|
||||
dateStyle: "long",
|
||||
})
|
||||
: "No Date"}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="space-y-5 leading-relaxed text-base">
|
||||
<div className="bg-muted/30 p-4 rounded-lg border-l-4 border-primary">
|
||||
<p className="whitespace-pre-line">{viewData.FirstPara}</p>
|
||||
</div>
|
||||
<div className="space-y-4 px-1">
|
||||
<p className="whitespace-pre-line">{viewData.SecondPara}</p>
|
||||
<hr />
|
||||
<p className="whitespace-pre-line text-muted-foreground">
|
||||
{viewData.Content}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<DialogFooter>
|
||||
<Button
|
||||
onClick={() => setViewOpen(false)}
|
||||
className="w-full md:w-auto"
|
||||
>
|
||||
Close Preview
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user