chore: file formatting

This commit is contained in:
Kailasdevdas
2026-05-26 15:48:01 +05:30
parent 8a21e0bf38
commit 78e2618a29
117 changed files with 12775 additions and 14638 deletions
+21 -21
View File
@@ -1,29 +1,29 @@
import {BrowserRouter, Routes, Route, Navigate} from "react-router-dom";
import {Toaster} from "react-hot-toast";
import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom';
import { Toaster } from 'react-hot-toast';
import Login from "@/pages/Login";
import Login from '@/pages/Login';
import DashboardLayout from "./layouts/DashboardLayout";
import DashboardLayout from './layouts/DashboardLayout';
// import ProtectedRoute from "./components/ProtectedRoutes/ProtectedRoutes";
import ProtectedRoute from "./auth/ProtectedRoute";
import PublicRoute from "./auth/PublicRoute";
import {AuthProvider} from "./context/AuthContext";
import Department from "./pages/Department";
import Doctor from "./pages/Doctor";
import Blog from "./pages/Blog";
import BlogEditorPage from "./pages/BlogEditor";
import Appointment from "./pages/Appointment";
import EmailPage from "./pages/email";
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";
import BlogDetail from "./pages/BlogDetails";
import ImportData from "./pages/ImportData";
import HealthPackagePage from "./pages/HealthPackagePage";
import ProtectedRoute from './auth/ProtectedRoute';
import PublicRoute from './auth/PublicRoute';
import { AuthProvider } from './context/AuthContext';
import Department from './pages/Department';
import Doctor from './pages/Doctor';
import Blog from './pages/Blog';
import BlogEditorPage from './pages/BlogEditor';
import Appointment from './pages/Appointment';
import EmailPage from './pages/email';
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';
import BlogDetail from './pages/BlogDetails';
import ImportData from './pages/ImportData';
import HealthPackagePage from './pages/HealthPackagePage';
export default function App() {
return (
+2 -2
View File
@@ -1,7 +1,7 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export const getAcademicsApi = async () => {
const res = await apiClient.get("/academics/getAll");
const res = await apiClient.get('/academics/getAll');
return res.data;
};
+5 -5
View File
@@ -1,12 +1,12 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export const getAppointmentsApi = async (
page = 1,
limit = 10,
date = "",
startDate = "",
endDate = "",
search = "",
date = '',
startDate = '',
endDate = '',
search = ''
) => {
const params = new URLSearchParams({
page: String(page),
+3 -6
View File
@@ -1,10 +1,7 @@
import apiClient from "./client";
import apiClient from './client';
export const loginApi = async (
username: string,
password: string,
): Promise<any> => {
const response = await apiClient.post("/auth/login/", {
export const loginApi = async (username: string, password: string): Promise<any> => {
const response = await apiClient.post('/auth/login/', {
username,
password,
});
+6 -6
View File
@@ -1,4 +1,4 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export interface Blog {
id?: number;
@@ -9,7 +9,7 @@ export interface Blog {
}
export const getAllBlogsApi = async () => {
const res = await apiClient.get("/blogs");
const res = await apiClient.get('/blogs');
return res.data;
};
@@ -19,7 +19,7 @@ export const getBlogByIdApi = async (id: number) => {
};
export const createBlogApi = async (data: Blog) => {
const res = await apiClient.post("/blogs", data);
const res = await apiClient.post('/blogs', data);
return res.data;
};
@@ -36,11 +36,11 @@ export const deleteBlogApi = async (id: number) => {
/* IMAGE UPLOAD */
export const uploadImageApi = async (file: File) => {
const formData = new FormData();
formData.append("image", file);
formData.append('image', file);
const res = await apiClient.post("/upload/image", formData, {
const res = await apiClient.post('/upload/image', formData, {
headers: {
"Content-Type": "multipart/form-data",
'Content-Type': 'multipart/form-data',
},
});
+2 -2
View File
@@ -1,7 +1,7 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export const getCandidatesApi = async () => {
const res = await apiClient.get("/candidates/getAll");
const res = await apiClient.get('/candidates/getAll');
return res.data;
};
+10 -10
View File
@@ -1,20 +1,20 @@
import apiClient from "@/api/client";
import toast from "react-hot-toast";
import apiClient from '@/api/client';
import toast from 'react-hot-toast';
export const getCareersApi = async () => {
const res = await apiClient.get("/careers/getAll?admin=true");
const res = await apiClient.get('/careers/getAll?admin=true');
return res.data;
};
export const createCareerApi = async (data: any) => {
try {
const res = await apiClient.post("/careers", data);
const res = await apiClient.post('/careers', data);
toast.success("Career created successfully");
toast.success('Career created successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to create career");
toast.error(error?.response?.data?.message || 'Failed to create career');
throw error;
}
@@ -24,11 +24,11 @@ export const updateCareerApi = async (id: number, data: any) => {
try {
const res = await apiClient.patch(`/careers/${id}`, data);
toast.success("Career updated successfully");
toast.success('Career updated successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to update career");
toast.error(error?.response?.data?.message || 'Failed to update career');
throw error;
}
@@ -38,11 +38,11 @@ export const deleteCareerApi = async (id: number) => {
try {
const res = await apiClient.delete(`/careers/${id}`);
toast.success("Career deleted successfully");
toast.success('Career deleted successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to delete career");
toast.error(error?.response?.data?.message || 'Failed to delete career');
throw error;
}
+12 -12
View File
@@ -1,48 +1,48 @@
import axios from "axios";
import type {InternalAxiosRequestConfig} from "axios";
import axios from 'axios';
import type { InternalAxiosRequestConfig } from 'axios';
const baseURL: string = import.meta.env.VITE_API_URL;
const apiClient = axios.create({
baseURL: baseURL,
headers: {
"Content-Type": "application/json",
'Content-Type': 'application/json',
},
});
export const setAxiosAuthToken = (token: string | null): void => {
if (token) {
apiClient.defaults.headers.common["Authorization"] = `Bearer ${token}`;
apiClient.defaults.headers.common['Authorization'] = `Bearer ${token}`;
} else {
delete apiClient.defaults.headers.common["Authorization"];
delete apiClient.defaults.headers.common['Authorization'];
}
};
apiClient.interceptors.request.use(
(config: InternalAxiosRequestConfig) => {
const token = localStorage.getItem("token");
const token = localStorage.getItem('token');
if (token && config.headers) {
config.headers["Authorization"] = `Bearer ${token}`;
config.headers['Authorization'] = `Bearer ${token}`;
}
return config;
},
(error: any) => Promise.reject(error),
(error: any) => Promise.reject(error)
);
apiClient.interceptors.response.use(
(response) => response,
async (error) => {
if (error.response?.status === 401) {
console.error("Unauthorized - token missing or invalid");
console.error('Unauthorized - token missing or invalid');
localStorage.removeItem("token");
window.location.href = "/login";
localStorage.removeItem('token');
window.location.href = '/login';
}
return Promise.reject(error);
},
}
);
export default apiClient;
+11 -17
View File
@@ -1,5 +1,5 @@
import apiClient from "@/api/client";
import toast from "react-hot-toast";
import apiClient from '@/api/client';
import toast from 'react-hot-toast';
export interface Department {
departmentId: string;
@@ -15,7 +15,7 @@ export interface Department {
}
export const getDepartmentsApi = async () => {
const res = await apiClient.get("/departments/getAll?admin=true");
const res = await apiClient.get('/departments/getAll?admin=true');
return res.data;
};
@@ -29,15 +29,13 @@ export const createDepartmentApi = async (data: {
services?: string;
}) => {
try {
const res = await apiClient.post("/departments", data);
const res = await apiClient.post('/departments', data);
toast.success("Department created successfully");
toast.success('Department created successfully');
return res.data;
} catch (error: any) {
toast.error(
error?.response?.data?.message || "Failed to create department",
);
toast.error(error?.response?.data?.message || 'Failed to create department');
throw error;
}
@@ -52,18 +50,16 @@ export const updateDepartmentApi = async (
para3?: string;
facilities?: string;
services?: string;
},
}
) => {
try {
const res = await apiClient.put(`/departments/${departmentId}`, data);
toast.success("Department updated successfully");
toast.success('Department updated successfully');
return res.data;
} catch (error: any) {
toast.error(
error?.response?.data?.message || "Failed to update department",
);
toast.error(error?.response?.data?.message || 'Failed to update department');
throw error;
}
@@ -73,13 +69,11 @@ export const deleteDepartmentApi = async (departmentId: string) => {
try {
const res = await apiClient.delete(`/departments/${departmentId}`);
toast.success("Department deleted successfully");
toast.success('Department deleted successfully');
return res.data;
} catch (error: any) {
toast.error(
error?.response?.data?.message || "Failed to delete department",
);
toast.error(error?.response?.data?.message || 'Failed to delete department');
throw error;
}
+11 -11
View File
@@ -1,5 +1,5 @@
import apiClient from "@/api/client";
import toast from "react-hot-toast";
import apiClient from '@/api/client';
import toast from 'react-hot-toast';
export interface Doctor {
doctorId: string;
@@ -27,7 +27,7 @@ export interface Doctor {
}
export const getDoctorsApi = async () => {
const res = await apiClient.get("/doctors/getAll?admin=true");
const res = await apiClient.get('/doctors/getAll?admin=true');
return res.data;
};
@@ -38,13 +38,13 @@ export const getDoctorByIdApi = async (doctorId: string) => {
export const createDoctorApi = async (data: Doctor) => {
try {
const res = await apiClient.post("/doctors", data);
const res = await apiClient.post('/doctors', data);
toast.success("Doctor created successfully");
toast.success('Doctor created successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to create doctor");
toast.error(error?.response?.data?.message || 'Failed to create doctor');
throw error;
}
@@ -53,16 +53,16 @@ export const createDoctorApi = async (data: Doctor) => {
export const updateDoctorApi = async (
doctorId: string,
data: Partial<Doctor>,
action: "toggleStatus" | "updateDetails" = "updateDetails",
action: 'toggleStatus' | 'updateDetails' = 'updateDetails'
) => {
try {
const res = await apiClient.patch(`/doctors/${doctorId}/${action}`, data);
toast.success("Doctor updated successfully");
toast.success('Doctor updated successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to update doctor");
toast.error(error?.response?.data?.message || 'Failed to update doctor');
throw error;
}
@@ -72,11 +72,11 @@ export const deleteDoctorApi = async (doctorId: string) => {
try {
const res = await apiClient.delete(`/doctors/${doctorId}`);
toast.success("Doctor deleted successfully");
toast.success('Doctor deleted successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to delete doctor");
toast.error(error?.response?.data?.message || 'Failed to delete doctor');
throw error;
}
+4 -7
View File
@@ -1,4 +1,4 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export interface EmailConfig {
id?: number;
@@ -10,21 +10,18 @@ export interface EmailConfig {
// GET ALL
export const getEmailConfigsApi = async () => {
const res = await apiClient.get("/email/getAll");
const res = await apiClient.get('/email/getAll');
return res.data;
};
// CREATE
export const createEmailConfigApi = async (data: EmailConfig) => {
const res = await apiClient.post("/email", data);
const res = await apiClient.post('/email', data);
return res.data;
};
// UPDATE
export const updateEmailConfigApi = async (
id: number,
data: Partial<EmailConfig>,
) => {
export const updateEmailConfigApi = async (id: number, data: Partial<EmailConfig>) => {
const res = await apiClient.patch(`/email/${id}`, data);
return res.data;
};
+25 -40
View File
@@ -1,5 +1,5 @@
import apiClient from "@/api/client";
import toast from "react-hot-toast";
import apiClient from '@/api/client';
import toast from 'react-hot-toast';
export interface SeoData {
seoTitle?: string;
@@ -56,36 +56,33 @@ export interface HealthInquiry {
}
export const getHealthCategoriesApi = async () => {
const res = await apiClient.get("/health-check/categories?admin=true");
const res = await apiClient.get('/health-check/categories?admin=true');
return res.data;
};
export const getHealthPackagesApi = async () => {
const res = await apiClient.get("/health-check/packages?admin=true");
const res = await apiClient.get('/health-check/packages?admin=true');
return res.data;
};
export const createHealthPackageApi = async (data: Partial<HealthPackage>) => {
try {
const res = await apiClient.post("/health-check", data);
toast.success("Package created successfully");
const res = await apiClient.post('/health-check', data);
toast.success('Package created successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to create package");
toast.error(error?.response?.data?.message || 'Failed to create package');
throw error;
}
};
export const updateHealthPackageApi = async (
id: number,
data: Partial<HealthPackage>,
) => {
export const updateHealthPackageApi = async (id: number, data: Partial<HealthPackage>) => {
try {
const res = await apiClient.patch(`/health-check/${id}`, data);
toast.success("Package updated successfully");
toast.success('Package updated successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to update package");
toast.error(error?.response?.data?.message || 'Failed to update package');
throw error;
}
};
@@ -93,27 +90,23 @@ export const updateHealthPackageApi = async (
export const deleteHealthPackageApi = async (id: number) => {
try {
const res = await apiClient.delete(`/health-check/${id}`);
toast.success("Package deleted successfully");
toast.success('Package deleted successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to delete package");
toast.error(error?.response?.data?.message || 'Failed to delete package');
throw error;
}
};
export const createCategoryApi = async (data: {
name: string;
slug: string;
sortOrder: number;
}) => {
export const createCategoryApi = async (data: { name: string; slug: string; sortOrder: number }) => {
try {
const res = await apiClient.post("/health-check/categories", data);
const res = await apiClient.post('/health-check/categories', data);
toast.success("Category created successfully");
toast.success('Category created successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to create category");
toast.error(error?.response?.data?.message || 'Failed to create category');
throw error;
}
@@ -123,11 +116,11 @@ export const updateCategoryApi = async (id: number, data: any) => {
try {
const res = await apiClient.patch(`/health-check/categories/${id}`, data);
toast.success("Category updated successfully");
toast.success('Category updated successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to update category");
toast.error(error?.response?.data?.message || 'Failed to update category');
throw error;
}
@@ -137,34 +130,26 @@ export const deleteCategoryApi = async (id: number) => {
try {
const res = await apiClient.delete(`/health-check/categories/${id}`);
toast.success("Category deleted successfully");
toast.success('Category deleted successfully');
return res.data;
} catch (error: any) {
toast.error(error?.response?.data?.message || "Failed to delete category");
toast.error(error?.response?.data?.message || 'Failed to delete category');
throw error;
}
};
export const getAllInquiriesApi = async (
page = 1,
limit = 10,
filterDate = "",
startDate = "",
endDate = "",
) => {
export const getAllInquiriesApi = async (page = 1, limit = 10, filterDate = '', startDate = '', endDate = '') => {
const params = new URLSearchParams({
page: page.toString(),
limit: limit.toString(),
});
if (filterDate) params.append("filterDate", filterDate);
if (startDate) params.append("startDate", startDate);
if (endDate) params.append("endDate", endDate);
if (filterDate) params.append('filterDate', filterDate);
if (startDate) params.append('startDate', startDate);
if (endDate) params.append('endDate', endDate);
const res = await apiClient.get(
`/health-check/inquiries?${params.toString()}`,
);
const res = await apiClient.get(`/health-check/inquiries?${params.toString()}`);
return res.data;
};
+2 -2
View File
@@ -1,7 +1,7 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export const getInquiriesApi = async () => {
const res = await apiClient.get("/inquiry/getAll");
const res = await apiClient.get('/inquiry/getAll');
return res.data;
};
+4 -6
View File
@@ -1,14 +1,12 @@
import apiClient from "@/api/client";
import apiClient from '@/api/client';
export const getNewsApi = async (page = 1, limit = 10, search = "") => {
const res = await apiClient.get(
`/newsMedia/getAll?page=${page}&limit=${limit}&search=${search}`,
);
export const getNewsApi = async (page = 1, limit = 10, search = '') => {
const res = await apiClient.get(`/newsMedia/getAll?page=${page}&limit=${limit}&search=${search}`);
return res.data;
};
export const createNewsApi = async (data: any) => {
const res = await apiClient.post("/newsMedia", data);
const res = await apiClient.post('/newsMedia', data);
return res.data;
};
+3 -3
View File
@@ -1,7 +1,7 @@
import {Navigate, Outlet} from "react-router-dom";
import {useAuth} from "@/context/AuthContext";
import { Navigate, Outlet } from 'react-router-dom';
import { useAuth } from '@/context/AuthContext';
export default function ProtectedRoute() {
const {token} = useAuth();
const { token } = useAuth();
return token ? <Outlet /> : <Navigate to="/" replace />;
}
+3 -3
View File
@@ -1,7 +1,7 @@
import {Navigate, Outlet} from "react-router-dom";
import {useAuth} from "@/context/AuthContext";
import { Navigate, Outlet } from 'react-router-dom';
import { useAuth } from '@/context/AuthContext';
export default function PublicRoute() {
const {token} = useAuth();
const { token } = useAuth();
return token ? <Navigate to="/dashboard" replace /> : <Outlet />;
}
@@ -1,26 +1,15 @@
import { useState, useRef } from "react";
import { Button } from "@/components/ui/button";
import { User, X, Loader2 } from "lucide-react";
import axios from "axios";
import { useState, useRef } from 'react';
import { Button } from '@/components/ui/button';
import { User, X, Loader2 } from 'lucide-react';
import axios from 'axios';
interface BytescaleUploaderProps {
value: string;
onChange: (url: string) => void;
folderPath:
| "/health-packages"
| "/seo"
| "/doctors"
| "/departments"
| "/news"
| "/blog"
| "/doctor-og";
folderPath: '/health-packages' | '/seo' | '/doctors' | '/departments' | '/news' | '/blog' | '/doctor-og';
}
export function BytescaleUploader({
value,
onChange,
folderPath,
}: BytescaleUploaderProps) {
export function BytescaleUploader({ value, onChange, folderPath }: BytescaleUploaderProps) {
const baseURL = import.meta.env.VITE_API_URL;
const [isUploading, setIsUploading] = useState(false);
const fileInputRef = useRef<HTMLInputElement>(null);
@@ -30,33 +19,32 @@ export function BytescaleUploader({
if (!file) return;
if (file.size > 5 * 1024 * 1024) {
alert("File is too large (Max 5MB)");
alert('File is too large (Max 5MB)');
return;
}
setIsUploading(true);
const formData = new FormData();
formData.append("file", file);
formData.append("folderPath", folderPath);
formData.append('file', file);
formData.append('folderPath', folderPath);
try {
const response = await axios.post(`${baseURL}/upload`, formData, {
headers: {
"Content-Type": "multipart/form-data",
'Content-Type': 'multipart/form-data',
},
});
const { fileUrl } = response.data;
onChange(fileUrl);
} catch (e: any) {
console.error("Upload Error:", e);
const errorMessage =
e.response?.data?.error || e.message || "Upload failed";
console.error('Upload Error:', e);
const errorMessage = e.response?.data?.error || e.message || 'Upload failed';
alert(`Upload Error: ${errorMessage}`);
} finally {
setIsUploading(false);
if (fileInputRef.current) fileInputRef.current.value = "";
if (fileInputRef.current) fileInputRef.current.value = '';
}
};
@@ -73,7 +61,7 @@ export function BytescaleUploader({
/>
<button
type="button"
onClick={() => onChange("")}
onClick={() => onChange('')}
className="absolute -top-1 -right-1 bg-destructive text-white rounded-full p-0.5 shadow-sm hover:scale-110 transition-transform"
>
<X className="w-3 h-3" />
@@ -111,17 +99,16 @@ export function BytescaleUploader({
Uploading...
</>
) : value ? (
"Change Photo"
'Change Photo'
) : (
"Upload Photo"
'Upload Photo'
)}
</Button>
</div>
{value && (
<p className="text-xs text-amber-600 pl-[72px]">
Make sure to save the changes by clicking the "Save Changes"
button.
Make sure to save the changes by clicking the "Save Changes" button.
</p>
)}
</div>
@@ -1,38 +1,21 @@
import { BytescaleUploader } from "@/components/BytescaleUploader/BytescaleUploader";
import SeoFields from "@/components/SeoFields/SeoFields";
import { useEffect } from "react";
import { BytescaleUploader } from '@/components/BytescaleUploader/BytescaleUploader';
import SeoFields from '@/components/SeoFields/SeoFields';
import { useEffect } from 'react';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog';
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
import { Button } from "@/components/ui/button";
import { Label } from "@/components/ui/label";
import { Badge } from "@/components/ui/badge";
import { Switch } from "@/components/ui/switch";
import { Input } from '@/components/ui/input';
import { Textarea } from '@/components/ui/textarea';
import { Button } from '@/components/ui/button';
import { Label } from '@/components/ui/label';
import { Badge } from '@/components/ui/badge';
import { Switch } from '@/components/ui/switch';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "@/components/ui/accordion";
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '@/components/ui/accordion';
import { Plus, Trash2 } from "lucide-react";
import { Plus, Trash2 } from 'lucide-react';
interface Props {
open: boolean;
@@ -65,8 +48,8 @@ export default function HealthPackageModal({
? prev.slug
: pkgForm.name
.toLowerCase()
.replace(/[^a-z0-9]+/g, "-")
.replace(/(^-|-$)/g, ""),
.replace(/[^a-z0-9]+/g, '-')
.replace(/(^-|-$)/g, ''),
}));
}
}, [pkgForm.name]);
@@ -76,8 +59,8 @@ export default function HealthPackageModal({
...inclusionsList,
{
id: Date.now(),
category: "",
items: "",
category: '',
items: '',
},
]);
};
@@ -86,11 +69,7 @@ export default function HealthPackageModal({
setInclusionsList(inclusionsList.filter((item) => item.id !== id));
};
const handleUpdateInclusionField = (
id: number,
field: string,
value: string,
) => {
const handleUpdateInclusionField = (id: number, field: string, value: string) => {
setInclusionsList(
inclusionsList.map((item) =>
item.id === id
@@ -98,8 +77,8 @@ export default function HealthPackageModal({
...item,
[field]: value,
}
: item,
),
: item
)
);
};
@@ -108,7 +87,7 @@ export default function HealthPackageModal({
<DialogContent className="w-full !max-w-7xl h-[92vh] flex flex-col p-0 overflow-hidden">
<DialogHeader className="px-6 py-5 border-b bg-background sticky top-0 z-20">
<DialogTitle className="text-2xl font-bold">
{editingPackage ? "Edit Health Package" : "Create Health Package"}
{editingPackage ? 'Edit Health Package' : 'Create Health Package'}
</DialogTitle>
</DialogHeader>
@@ -120,21 +99,17 @@ export default function HealthPackageModal({
<div className="sticky top-0 bg-background z-10 pb-2">
<h3 className="text-lg font-bold">Profile & Pricing</h3>
<p className="text-sm text-muted-foreground">
Main package information
</p>
<p className="text-sm text-muted-foreground">Main package information</p>
</div>
<div className="space-y-5">
<div className="space-y-2">
<Label className="font-semibold">Package Image</Label>
<p className="text-xs text-muted-foreground">
Recommended size: 650 × 250
</p>
<p className="text-xs text-muted-foreground">Recommended size: 650 × 250</p>
<BytescaleUploader
value={pkgForm.image || ""}
value={pkgForm.image || ''}
folderPath="/health-packages"
onChange={(url) =>
setPkgForm({
@@ -149,9 +124,7 @@ export default function HealthPackageModal({
<div>
<p className="font-semibold">Active Visibility</p>
<p className="text-sm text-muted-foreground">
Show this package publicly
</p>
<p className="text-sm text-muted-foreground">Show this package publicly</p>
</div>
<Switch
@@ -227,11 +200,9 @@ export default function HealthPackageModal({
<Input
type="number"
value={pkgForm.price || ""}
value={pkgForm.price || ''}
onChange={(e) => {
const value = e.target.value
? Number(e.target.value)
: undefined;
const value = e.target.value ? Number(e.target.value) : undefined;
setPkgForm({
...pkgForm,
@@ -242,20 +213,16 @@ export default function HealthPackageModal({
</div>
<div className="space-y-2">
<Label className="font-semibold">
Discounted Price ()
</Label>
<Label className="font-semibold">Discounted Price ()</Label>
<Input
type="number"
disabled={!pkgForm.price}
value={pkgForm.discountedPrice || ""}
value={pkgForm.discountedPrice || ''}
onChange={(e) =>
setPkgForm({
...pkgForm,
discountedPrice: e.target.value
? Number(e.target.value)
: undefined,
discountedPrice: e.target.value ? Number(e.target.value) : undefined,
})
}
/>
@@ -300,21 +267,15 @@ export default function HealthPackageModal({
<div>
<h3 className="text-lg font-bold">Tests & Inclusions</h3>
<p className="text-sm text-muted-foreground">
Group tests into categories
</p>
<p className="text-sm text-muted-foreground">Group tests into categories</p>
</div>
<Badge variant="outline">
{inclusionsList.length} Groups
</Badge>
<Badge variant="outline">{inclusionsList.length} Groups</Badge>
</div>
<Accordion type="multiple" className="space-y-4">
{inclusionsList.map((inc, index) => {
const testCount = inc.items
?.split(",")
.filter(Boolean).length;
const testCount = inc.items?.split(',').filter(Boolean).length;
return (
<AccordionItem
@@ -325,13 +286,9 @@ export default function HealthPackageModal({
<AccordionTrigger className="hover:no-underline w-full">
<div className="flex w-full items-center justify-between">
<div className="flex flex-col items-start text-left">
<p className="font-semibold">
{inc.category || `Group ${index + 1}`}
</p>
<p className="font-semibold">{inc.category || `Group ${index + 1}`}</p>
<p className="text-xs text-muted-foreground">
{testCount || 0} tests included
</p>
<p className="text-xs text-muted-foreground">{testCount || 0} tests included</p>
</div>
<Button
@@ -354,13 +311,7 @@ export default function HealthPackageModal({
<Input
placeholder="Routine Blood Tests"
value={inc.category}
onChange={(e) =>
handleUpdateInclusionField(
inc.id,
"category",
e.target.value,
)
}
onChange={(e) => handleUpdateInclusionField(inc.id, 'category', e.target.value)}
/>
</div>
@@ -373,18 +324,10 @@ export default function HealthPackageModal({
rows={4}
placeholder="CBC, LFT, RFT, TSH"
value={inc.items}
onChange={(e) =>
handleUpdateInclusionField(
inc.id,
"items",
e.target.value,
)
}
onChange={(e) => handleUpdateInclusionField(inc.id, 'items', e.target.value)}
/>
<p className="text-xs text-muted-foreground">
Separate each test using commas
</p>
<p className="text-xs text-muted-foreground">Separate each test using commas</p>
</div>
</div>
</AccordionContent>
@@ -427,7 +370,7 @@ export default function HealthPackageModal({
</Button>
<Button className="px-10" onClick={onSave}>
{editingPackage ? "Save Changes" : "Create Package"}
{editingPackage ? 'Save Changes' : 'Create Package'}
</Button>
</DialogFooter>
</DialogContent>
@@ -1,33 +1,21 @@
import { useState, useEffect, useCallback } from "react";
import { getAllInquiriesApi, HealthInquiry } from "@/api/healthCheck";
import { useState, useEffect, useCallback } from 'react';
import { getAllInquiriesApi, HealthInquiry } from '@/api/healthCheck';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from "@/components/ui/tooltip";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Badge } from "@/components/ui/badge";
import { Loader2, RefreshCw, ChevronLeft, ChevronRight } from "lucide-react";
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table';
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Badge } from '@/components/ui/badge';
import { Loader2, RefreshCw, ChevronLeft, ChevronRight } from 'lucide-react';
export default function PackageInquiriesTab() {
const [inquiries, setInquiries] = useState<HealthInquiry[]>([]);
const [loading, setLoading] = useState(true);
const [filterDate, setFilterDate] = useState("");
const [startDate, setStartDate] = useState("");
const [endDate, setEndDate] = useState("");
const [filterDate, setFilterDate] = useState('');
const [startDate, setStartDate] = useState('');
const [endDate, setEndDate] = useState('');
const [currentPage, setCurrentPage] = useState(1);
const [itemsPerPage, setItemsPerPage] = useState(10);
@@ -37,18 +25,12 @@ export default function PackageInquiriesTab() {
const fetchInquiries = useCallback(async () => {
setLoading(true);
try {
const res = await getAllInquiriesApi(
currentPage,
itemsPerPage,
filterDate,
startDate,
endDate,
);
const res = await getAllInquiriesApi(currentPage, itemsPerPage, filterDate, startDate, endDate);
setInquiries(res.data || []);
setTotalItems(res.pagination?.total || 0);
setTotalPages(res.pagination?.totalPages || 1);
} catch (err) {
console.error("Failed to fetch inquiries", err);
console.error('Failed to fetch inquiries', err);
} finally {
setLoading(false);
}
@@ -58,10 +40,7 @@ export default function PackageInquiriesTab() {
fetchInquiries();
}, [fetchInquiries]);
const handleFilterChange = (
setter: React.Dispatch<React.SetStateAction<string>>,
value: string,
) => {
const handleFilterChange = (setter: React.Dispatch<React.SetStateAction<string>>, value: string) => {
setter(value);
setCurrentPage(1);
};
@@ -76,24 +55,18 @@ export default function PackageInquiriesTab() {
<div className="flex flex-wrap items-end gap-3">
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
Specific Date
</label>
<label className="text-xs font-medium text-muted-foreground">Specific Date</label>
<Input
type="date"
value={filterDate}
onChange={(e) =>
handleFilterChange(setFilterDate, e.target.value)
}
onChange={(e) => handleFilterChange(setFilterDate, e.target.value)}
className="w-[140px] text-sm"
disabled={!!startDate || !!endDate}
/>
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
From
</label>
<label className="text-xs font-medium text-muted-foreground">From</label>
<Input
type="date"
value={startDate}
@@ -104,9 +77,7 @@ export default function PackageInquiriesTab() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
To
</label>
<label className="text-xs font-medium text-muted-foreground">To</label>
<Input
type="date"
value={endDate}
@@ -117,16 +88,15 @@ export default function PackageInquiriesTab() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
Rows
</label>
<label className="text-xs font-medium text-muted-foreground">Rows</label>
<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">
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>
@@ -135,9 +105,7 @@ export default function PackageInquiriesTab() {
</div>
<Button variant="outline" onClick={fetchInquiries} disabled={loading}>
<RefreshCw
className={`mr-2 h-4 w-4 ${loading ? "animate-spin" : ""}`}
/>
<RefreshCw className={`mr-2 h-4 w-4 ${loading ? 'animate-spin' : ''}`} />
Refresh
</Button>
</div>
@@ -147,21 +115,11 @@ export default function PackageInquiriesTab() {
<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-[150px] font-bold bg-background">
Requested Date
</TableHead>
<TableHead className="w-[220px] font-bold bg-background">
Patient Details
</TableHead>
<TableHead className="w-[250px] font-bold bg-background">
Requested Package
</TableHead>
<TableHead className="w-[120px] font-bold bg-background">
Age/Gender
</TableHead>
<TableHead className="w-[250px] font-bold bg-background">
Message
</TableHead>
<TableHead className="w-[150px] font-bold bg-background">Requested Date</TableHead>
<TableHead className="w-[220px] font-bold bg-background">Patient Details</TableHead>
<TableHead className="w-[250px] font-bold bg-background">Requested Package</TableHead>
<TableHead className="w-[120px] font-bold bg-background">Age/Gender</TableHead>
<TableHead className="w-[250px] font-bold bg-background">Message</TableHead>
</TableRow>
</TableHeader>
<TableBody>
@@ -173,9 +131,7 @@ export default function PackageInquiriesTab() {
</TableRow>
) : inquiries.length === 0 ? (
<TableRow>
<TableCell
colSpan={5}
className="text-center text-muted-foreground py-10">
<TableCell colSpan={5} className="text-center text-muted-foreground py-10">
No inquiries found for the selected criteria
</TableCell>
</TableRow>
@@ -187,23 +143,16 @@ export default function PackageInquiriesTab() {
{new Date(inq.preferredDate).toLocaleDateString()}
</div>
<div className="text-[11px] text-muted-foreground mt-1">
Submitted:{" "}
{new Date(inq.createdAt).toLocaleDateString()}
Submitted: {new Date(inq.createdAt).toLocaleDateString()}
</div>
</TableCell>
<TableCell>
<div className="font-semibold text-base">
{inq.fullName}
</div>
<div className="font-semibold text-base">{inq.fullName}</div>
<div className="text-sm">{inq.mobileNumber}</div>
<div className="text-xs text-muted-foreground">
{inq.email || "-"}
</div>
<div className="text-xs text-muted-foreground">{inq.email || '-'}</div>
</TableCell>
<TableCell>
<div className="font-semibold text-sm truncate">
{inq.healthPackage?.name || "N/A"}
</div>
<div className="font-semibold text-sm truncate">{inq.healthPackage?.name || 'N/A'}</div>
</TableCell>
<TableCell>
<div className="font-medium">
@@ -214,12 +163,12 @@ export default function PackageInquiriesTab() {
<Tooltip>
<TooltipTrigger asChild>
<div className="text-sm italic line-clamp-3 text-muted-foreground whitespace-pre-wrap cursor-pointer">
{inq.message || "No message provided."}
{inq.message || 'No message provided.'}
</div>
</TooltipTrigger>
<TooltipContent className="max-w-md whitespace-pre-wrap">
{inq.message || "No message provided."}
{inq.message || 'No message provided.'}
</TooltipContent>
</Tooltip>
</TooltipProvider>
@@ -233,9 +182,8 @@ export default function PackageInquiriesTab() {
{!loading && totalItems > 0 && (
<div className="flex flex-col sm:flex-row items-center justify-between px-2 py-4 border-t gap-4 mt-2">
<div className="text-sm text-muted-foreground">
Showing{" "}
<span className="font-semibold">{indexOfFirstItem + 1}</span> to{" "}
<span className="font-semibold">{indexOfLastItem}</span> of{" "}
Showing <span className="font-semibold">{indexOfFirstItem + 1}</span> to{' '}
<span className="font-semibold">{indexOfLastItem}</span> of{' '}
<span className="font-semibold">{totalItems}</span> inquiries
</div>
<div className="flex items-center gap-6">
@@ -247,20 +195,18 @@ export default function PackageInquiriesTab() {
variant="outline"
size="icon"
className="h-9 w-9"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
disabled={currentPage === 1}>
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-4 w-4" />
</Button>
<Button
variant="outline"
size="icon"
className="h-9 w-9"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
disabled={currentPage === totalPages || totalPages === 0}>
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-4 w-4" />
</Button>
</div>
@@ -1,8 +1,8 @@
import {Navigate} from "react-router-dom";
import {useAuth} from "@/context/AuthContext";
import { Navigate } from 'react-router-dom';
import { useAuth } from '@/context/AuthContext';
export default function ProtectedRoute({children}: any) {
const {token} = useAuth();
export default function ProtectedRoute({ children }: any) {
const { token } = useAuth();
if (!token) {
return <Navigate to="/" />;
+34 -59
View File
@@ -1,11 +1,11 @@
import { BytescaleUploader } from "@/components/BytescaleUploader/BytescaleUploader";
import { BytescaleUploader } from '@/components/BytescaleUploader/BytescaleUploader';
import { Badge } from "@/components/ui/badge";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Textarea } from "@/components/ui/textarea";
import { Badge } from '@/components/ui/badge';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Textarea } from '@/components/ui/textarea';
import { X } from "lucide-react";
import { X } from 'lucide-react';
interface SeoData {
seoTitle?: string;
@@ -21,15 +21,10 @@ interface SeoFieldsProps {
value?: SeoData;
onChange: (seo: SeoData) => void;
slug?: string;
folderPath?: "/seo";
folderPath?: '/seo';
}
export default function SeoFields({
value,
onChange,
slug,
folderPath = "/seo",
}: SeoFieldsProps) {
export default function SeoFields({ value, onChange, slug, folderPath = '/seo' }: SeoFieldsProps) {
const seo = value || {};
const updateSeo = (field: keyof SeoData, fieldValue: any) => {
@@ -41,8 +36,8 @@ export default function SeoFields({
const removeTag = (index: number) => {
updateSeo(
"tags",
(seo.tags || []).filter((_, i) => i !== index),
'tags',
(seo.tags || []).filter((_, i) => i !== index)
);
};
@@ -52,9 +47,7 @@ export default function SeoFields({
<div>
<h3 className="text-lg font-bold">SEO Settings</h3>
<p className="text-sm text-muted-foreground">
Optimize for Google & social sharing
</p>
<p className="text-sm text-muted-foreground">Optimize for Google & social sharing</p>
</div>
<Badge variant="secondary">Optional</Badge>
@@ -64,41 +57,33 @@ export default function SeoFields({
<div className="flex items-center justify-between">
<Label className="text-sm font-semibold">SEO Title</Label>
<span className="text-xs text-muted-foreground">
{seo.seoTitle?.length || 0}/60
</span>
<span className="text-xs text-muted-foreground">{seo.seoTitle?.length || 0}/60</span>
</div>
<Input
placeholder="Best Health Checkup Package in Kochi"
value={seo.seoTitle || ""}
onChange={(e) => updateSeo("seoTitle", e.target.value)}
value={seo.seoTitle || ''}
onChange={(e) => updateSeo('seoTitle', e.target.value)}
/>
<p className="text-xs text-muted-foreground">
Recommended: 5060 characters
</p>
<p className="text-xs text-muted-foreground">Recommended: 5060 characters</p>
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label className="text-sm font-semibold">Meta Description</Label>
<span className="text-xs text-muted-foreground">
{seo.metaDescription?.length || 0}/160
</span>
<span className="text-xs text-muted-foreground">{seo.metaDescription?.length || 0}/160</span>
</div>
<Textarea
rows={4}
placeholder="Short description shown in Google search results"
value={seo.metaDescription || ""}
onChange={(e) => updateSeo("metaDescription", e.target.value)}
value={seo.metaDescription || ''}
onChange={(e) => updateSeo('metaDescription', e.target.value)}
/>
<p className="text-xs text-muted-foreground">
Recommended: 150160 characters
</p>
<p className="text-xs text-muted-foreground">Recommended: 150160 characters</p>
</div>
<div className="space-y-2">
@@ -106,8 +91,8 @@ export default function SeoFields({
<Input
placeholder="health checkup package kochi"
value={seo.focusKeyphrase || ""}
onChange={(e) => updateSeo("focusKeyphrase", e.target.value)}
value={seo.focusKeyphrase || ''}
onChange={(e) => updateSeo('focusKeyphrase', e.target.value)}
/>
</div>
@@ -122,11 +107,7 @@ export default function SeoFields({
>
<span>{tag}</span>
<button
type="button"
onClick={() => removeTag(index)}
className="hover:text-red-500 transition-colors"
>
<button type="button" onClick={() => removeTag(index)} className="hover:text-red-500 transition-colors">
<X className="h-3 w-3" />
</button>
</div>
@@ -136,16 +117,16 @@ export default function SeoFields({
placeholder="Type keyword and press Enter"
className="border-0 shadow-none focus-visible:ring-0 min-w-[220px] flex-1"
onKeyDown={(e) => {
if (e.key === "Enter" && e.currentTarget.value.trim()) {
if (e.key === 'Enter' && e.currentTarget.value.trim()) {
e.preventDefault();
const newTag = e.currentTarget.value.trim();
if (!(seo.tags || []).includes(newTag)) {
updateSeo("tags", [...(seo.tags || []), newTag]);
updateSeo('tags', [...(seo.tags || []), newTag]);
}
e.currentTarget.value = "";
e.currentTarget.value = '';
}
}}
/>
@@ -159,9 +140,7 @@ export default function SeoFields({
<div>
<h4 className="font-bold">Open Graph (Social Preview)</h4>
<p className="text-sm text-muted-foreground">
Facebook, WhatsApp & Twitter sharing
</p>
<p className="text-sm text-muted-foreground">Facebook, WhatsApp & Twitter sharing</p>
</div>
<Badge variant="secondary">Optional</Badge>
@@ -172,13 +151,11 @@ export default function SeoFields({
<Input
placeholder="Title for social sharing"
value={seo.ogTitle || ""}
onChange={(e) => updateSeo("ogTitle", e.target.value)}
value={seo.ogTitle || ''}
onChange={(e) => updateSeo('ogTitle', e.target.value)}
/>
<p className="text-xs text-muted-foreground">
If empty, SEO title will be used
</p>
<p className="text-xs text-muted-foreground">If empty, SEO title will be used</p>
</div>
<div className="space-y-2">
@@ -187,22 +164,20 @@ export default function SeoFields({
<Textarea
rows={4}
placeholder="Description for social sharing"
value={seo.ogDescription || ""}
onChange={(e) => updateSeo("ogDescription", e.target.value)}
value={seo.ogDescription || ''}
onChange={(e) => updateSeo('ogDescription', e.target.value)}
/>
<p className="text-xs text-muted-foreground">
If empty, meta description will be used
</p>
<p className="text-xs text-muted-foreground">If empty, meta description will be used</p>
</div>
<div className="space-y-2">
<Label className="text-sm font-semibold">OG Image</Label>
<BytescaleUploader
value={seo.ogImage || ""}
value={seo.ogImage || ''}
folderPath={folderPath}
onChange={(url) => updateSeo("ogImage", url)}
onChange={(url) => updateSeo('ogImage', url)}
/>
</div>
</div>
@@ -1,11 +1,5 @@
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import { Button } from '@/components/ui/button';
interface SeoPreviewData {
seo?: {
@@ -28,14 +22,8 @@ interface SeoPreviewProps {
title?: string;
}
export default function SeoPreview({
open,
onOpenChange,
previewData,
url,
title = "SEO Preview",
}: SeoPreviewProps) {
const previewUrl = url || "https://www.gg-hospital.com";
export default function SeoPreview({ open, onOpenChange, previewData, url, title = 'SEO Preview' }: SeoPreviewProps) {
const previewUrl = url || 'https://www.gg-hospital.com';
const hasSeoData =
!!previewData?.seo &&
@@ -47,27 +35,17 @@ export default function SeoPreview({
previewData.seo.metaDescription
);
const imageUrl =
previewData?.seo?.ogImage ||
"https://placehold.co/1200x630?text=GG+Hospital";
const imageUrl = previewData?.seo?.ogImage || 'https://placehold.co/1200x630?text=GG+Hospital';
const ogTitle =
previewData?.seo?.ogTitle || previewData?.seo?.seoTitle || "GG Hospital";
const ogTitle = previewData?.seo?.ogTitle || previewData?.seo?.seoTitle || 'GG Hospital';
const ogDescription =
previewData?.seo?.ogDescription ||
previewData?.seo?.metaDescription ||
"No description available";
previewData?.seo?.ogDescription || previewData?.seo?.metaDescription || 'No description available';
const searchTitle =
previewData?.seo?.seoTitle ||
previewData?.seo?.ogTitle ||
"SEO title preview";
const searchTitle = previewData?.seo?.seoTitle || previewData?.seo?.ogTitle || 'SEO title preview';
const searchDescription =
previewData?.seo?.metaDescription ||
previewData?.seo?.ogDescription ||
"No meta description available";
previewData?.seo?.metaDescription || previewData?.seo?.ogDescription || 'No meta description available';
return (
<Dialog open={open} onOpenChange={onOpenChange}>
@@ -91,53 +69,30 @@ export default function SeoPreview({
className="block max-w-[560px] overflow-hidden rounded-xl border bg-white shadow-sm transition hover:shadow-md"
>
<div className="aspect-[1.91/1] overflow-hidden bg-muted">
<img
src={imageUrl}
alt="OG Preview"
className="h-full w-full object-cover"
/>
<img src={imageUrl} alt="OG Preview" className="h-full w-full object-cover" />
</div>
<div className="border-t bg-[#f0f2f5] px-4 py-3">
<h3 className="mt-1 line-clamp-2 text-[18px] font-semibold leading-snug text-[#1c1e21]">
{ogTitle}
</h3>
<h3 className="mt-1 line-clamp-2 text-[18px] font-semibold leading-snug text-[#1c1e21]">{ogTitle}</h3>
<p className="mt-1 line-clamp-2 text-[14px] text-[#65676b]">
{ogDescription}
</p>
<p className="mt-1 truncate text-[11px] tracking-wide text-[#65676b]">
{previewUrl}
</p>
<p className="mt-1 line-clamp-2 text-[14px] text-[#65676b]">{ogDescription}</p>
<p className="mt-1 truncate text-[11px] tracking-wide text-[#65676b]">{previewUrl}</p>
</div>
</a>
</div>
{/* Google Preview */}
<div>
<p className="mb-4 text-sm font-semibold text-muted-foreground">
Google Search Preview
</p>
<p className="mb-4 text-sm font-semibold text-muted-foreground">Google Search Preview</p>
<div className="rounded-xl border bg-white p-6">
<a
href={previewUrl}
target="_blank"
rel="noopener noreferrer"
className="block"
>
<p className="truncate text-[14px] text-[#202124] hover:underline">
{previewUrl}
</p>
<a href={previewUrl} target="_blank" rel="noopener noreferrer" className="block">
<p className="truncate text-[14px] text-[#202124] hover:underline">{previewUrl}</p>
<h3 className="mt-1 text-[22px] leading-tight text-[#1a0dab] hover:underline">
{searchTitle}
</h3>
<h3 className="mt-1 text-[22px] leading-tight text-[#1a0dab] hover:underline">{searchTitle}</h3>
</a>
<p className="mt-2 line-clamp-3 text-[14px] leading-6 text-[#4d5156]">
{searchDescription}
</p>
<p className="mt-2 line-clamp-3 text-[14px] leading-6 text-[#4d5156]">{searchDescription}</p>
</div>
</div>
</div>
+8 -8
View File
@@ -1,16 +1,16 @@
import {useState, useEffect} from "react";
import {useAuth} from "@/context/AuthContext";
import {Button} from "@/components/ui/button";
import {Switch} from "@/components/ui/switch";
import {log} from "console";
import { useState, useEffect } from 'react';
import { useAuth } from '@/context/AuthContext';
import { Button } from '@/components/ui/button';
import { Switch } from '@/components/ui/switch';
import { log } from 'console';
export default function Header() {
const {user, logout} = useAuth();
const { user, logout } = useAuth();
const [darkMode, setDarkMode] = useState<boolean>(false);
useEffect(() => {
if (darkMode) document.documentElement.classList.add("dark");
else document.documentElement.classList.remove("dark");
if (darkMode) document.documentElement.classList.add('dark');
else document.documentElement.classList.remove('dark');
}, [darkMode]);
return (
+26 -29
View File
@@ -1,55 +1,55 @@
import { Link, useLocation } from "react-router-dom";
import { Link, useLocation } from 'react-router-dom';
import { Button } from "@/components/ui/button";
import { Separator } from "@/components/ui/separator";
import { Button } from '@/components/ui/button';
import { Separator } from '@/components/ui/separator';
export default function Sidebar() {
const location = useLocation();
const navItems = [
{
name: "Department",
path: "/department",
name: 'Department',
path: '/department',
},
{
name: "Doctor",
path: "/doctor",
name: 'Doctor',
path: '/doctor',
},
{
name: "Health Check",
path: "/health-check",
name: 'Health Check',
path: '/health-check',
},
{
name: "Appointments",
path: "/appointment",
name: 'Appointments',
path: '/appointment',
},
{
name: "Career",
path: "/career",
name: 'Career',
path: '/career',
},
{
name: "Candidates",
path: "/candidate",
name: 'Candidates',
path: '/candidate',
},
{
name: "Inquiry",
path: "/inquiry",
name: 'Inquiry',
path: '/inquiry',
},
{
name: "Academics & Research",
path: "/academics",
name: 'Academics & Research',
path: '/academics',
},
{
name: "News & Media",
path: "/news",
name: 'News & Media',
path: '/news',
},
{
name: "Email",
path: "/email",
name: 'Email',
path: '/email',
},
{
name: "Blog",
path: "/blog",
name: 'Blog',
path: '/blog',
},
];
@@ -67,10 +67,7 @@ export default function Sidebar() {
return (
<Link key={item.path} to={item.path}>
<Button
variant={active ? "secondary" : "ghost"}
className="w-full justify-start"
>
<Button variant={active ? 'secondary' : 'ghost'} className="w-full justify-start">
{item.name}
</Button>
</Link>
+51 -69
View File
@@ -1,79 +1,61 @@
import * as React from "react"
import { Accordion as AccordionPrimitive } from "radix-ui"
import * as React from 'react';
import { Accordion as AccordionPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { ChevronDownIcon, ChevronUpIcon } from "lucide-react"
import { cn } from '@/lib/utils';
import { ChevronDownIcon, ChevronUpIcon } from 'lucide-react';
function Accordion({
className,
...props
}: React.ComponentProps<typeof AccordionPrimitive.Root>) {
return (
<AccordionPrimitive.Root
data-slot="accordion"
className={cn("flex w-full flex-col", className)}
{...props}
/>
)
function Accordion({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Root>) {
return <AccordionPrimitive.Root data-slot="accordion" className={cn('flex w-full flex-col', className)} {...props} />;
}
function AccordionItem({
className,
...props
}: React.ComponentProps<typeof AccordionPrimitive.Item>) {
return (
<AccordionPrimitive.Item
data-slot="accordion-item"
className={cn("not-last:border-b", className)}
{...props}
/>
)
function AccordionItem({ className, ...props }: React.ComponentProps<typeof AccordionPrimitive.Item>) {
return (
<AccordionPrimitive.Item data-slot="accordion-item" className={cn('not-last:border-b', className)} {...props} />
);
}
function AccordionTrigger({
className,
children,
...props
}: React.ComponentProps<typeof AccordionPrimitive.Trigger>) {
return (
<AccordionPrimitive.Header className="flex">
<AccordionPrimitive.Trigger
data-slot="accordion-trigger"
className={cn(
"group/accordion-trigger relative flex flex-1 items-start justify-between rounded-lg border border-transparent py-2.5 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 focus-visible:after:border-ring disabled:pointer-events-none disabled:opacity-50 **:data-[slot=accordion-trigger-icon]:ml-auto **:data-[slot=accordion-trigger-icon]:size-4 **:data-[slot=accordion-trigger-icon]:text-muted-foreground",
className
)}
{...props}
>
{children}
<ChevronDownIcon data-slot="accordion-trigger-icon" className="pointer-events-none shrink-0 group-aria-expanded/accordion-trigger:hidden" />
<ChevronUpIcon data-slot="accordion-trigger-icon" className="pointer-events-none hidden shrink-0 group-aria-expanded/accordion-trigger:inline" />
</AccordionPrimitive.Trigger>
</AccordionPrimitive.Header>
)
function AccordionTrigger({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Trigger>) {
return (
<AccordionPrimitive.Header className="flex">
<AccordionPrimitive.Trigger
data-slot="accordion-trigger"
className={cn(
'group/accordion-trigger relative flex flex-1 items-start justify-between rounded-lg border border-transparent py-2.5 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 focus-visible:after:border-ring disabled:pointer-events-none disabled:opacity-50 **:data-[slot=accordion-trigger-icon]:ml-auto **:data-[slot=accordion-trigger-icon]:size-4 **:data-[slot=accordion-trigger-icon]:text-muted-foreground',
className
)}
{...props}
>
{children}
<ChevronDownIcon
data-slot="accordion-trigger-icon"
className="pointer-events-none shrink-0 group-aria-expanded/accordion-trigger:hidden"
/>
<ChevronUpIcon
data-slot="accordion-trigger-icon"
className="pointer-events-none hidden shrink-0 group-aria-expanded/accordion-trigger:inline"
/>
</AccordionPrimitive.Trigger>
</AccordionPrimitive.Header>
);
}
function AccordionContent({
className,
children,
...props
}: React.ComponentProps<typeof AccordionPrimitive.Content>) {
return (
<AccordionPrimitive.Content
data-slot="accordion-content"
className="overflow-hidden text-sm data-open:animate-accordion-down data-closed:animate-accordion-up"
{...props}
>
<div
className={cn(
"h-(--radix-accordion-content-height) pt-0 pb-2.5 [&_a]:underline [&_a]:underline-offset-3 [&_a]:hover:text-foreground [&_p:not(:last-child)]:mb-4",
className
)}
>
{children}
</div>
</AccordionPrimitive.Content>
)
function AccordionContent({ className, children, ...props }: React.ComponentProps<typeof AccordionPrimitive.Content>) {
return (
<AccordionPrimitive.Content
data-slot="accordion-content"
className="overflow-hidden text-sm data-open:animate-accordion-down data-closed:animate-accordion-up"
{...props}
>
<div
className={cn(
'h-(--radix-accordion-content-height) pt-0 pb-2.5 [&_a]:underline [&_a]:underline-offset-3 [&_a]:hover:text-foreground [&_p:not(:last-child)]:mb-4',
className
)}
>
{children}
</div>
</AccordionPrimitive.Content>
);
}
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent };
+32 -41
View File
@@ -1,49 +1,40 @@
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { Slot } from "radix-ui"
import * as React from 'react';
import { cva, type VariantProps } from 'class-variance-authority';
import { Slot } from 'radix-ui';
import { cn } from "@/lib/utils"
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",
},
}
)
'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"
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}
/>
)
return (
<Comp data-slot="badge" data-variant={variant} className={cn(badgeVariants({ variant }), className)} {...props} />
);
}
export { Badge, badgeVariants }
export { Badge, badgeVariants };
+57 -59
View File
@@ -1,67 +1,65 @@
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { Slot } from "radix-ui"
import * as React from 'react';
import { cva, type VariantProps } from 'class-variance-authority';
import { Slot } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
const buttonVariants = cva(
"group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
{
variants: {
variant: {
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
outline:
"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",
secondary:
"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",
ghost:
"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",
destructive:
"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",
link: "text-primary underline-offset-4 hover:underline",
},
size: {
default:
"h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",
xs: "h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",
sm: "h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",
lg: "h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",
icon: "size-8",
"icon-xs":
"size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3",
"icon-sm":
"size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg",
"icon-lg": "size-9",
},
},
defaultVariants: {
variant: "default",
size: "default",
},
}
)
"group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
{
variants: {
variant: {
default: 'bg-primary text-primary-foreground [a]:hover:bg-primary/80',
outline:
'border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50',
secondary:
'bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground',
ghost:
'hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50',
destructive:
'bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40',
link: 'text-primary underline-offset-4 hover:underline',
},
size: {
default: 'h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2',
xs: "h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",
sm: "h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",
lg: 'h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2',
icon: 'size-8',
'icon-xs':
"size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3",
'icon-sm': 'size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg',
'icon-lg': 'size-9',
},
},
defaultVariants: {
variant: 'default',
size: 'default',
},
}
);
function Button({
className,
variant = "default",
size = "default",
asChild = false,
...props
}: React.ComponentProps<"button"> &
VariantProps<typeof buttonVariants> & {
asChild?: boolean
}) {
const Comp = asChild ? Slot.Root : "button"
className,
variant = 'default',
size = 'default',
asChild = false,
...props
}: React.ComponentProps<'button'> &
VariantProps<typeof buttonVariants> & {
asChild?: boolean;
}) {
const Comp = asChild ? Slot.Root : 'button';
return (
<Comp
data-slot="button"
data-variant={variant}
data-size={size}
className={cn(buttonVariants({ variant, size, className }))}
{...props}
/>
)
return (
<Comp
data-slot="button"
data-variant={variant}
data-size={size}
className={cn(buttonVariants({ variant, size, className }))}
{...props}
/>
);
}
export { Button, buttonVariants }
export { Button, buttonVariants };
+54 -87
View File
@@ -1,103 +1,70 @@
import * as React from "react"
import * as React from 'react';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Card({
className,
size = "default",
...props
}: React.ComponentProps<"div"> & { size?: "default" | "sm" }) {
return (
<div
data-slot="card"
data-size={size}
className={cn(
"group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-card py-4 text-sm text-card-foreground ring-1 ring-foreground/10 has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",
className
)}
{...props}
/>
)
function Card({ className, size = 'default', ...props }: React.ComponentProps<'div'> & { size?: 'default' | 'sm' }) {
return (
<div
data-slot="card"
data-size={size}
className={cn(
'group/card flex flex-col gap-4 overflow-hidden rounded-xl bg-card py-4 text-sm text-card-foreground ring-1 ring-foreground/10 has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl',
className
)}
{...props}
/>
);
}
function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-header"
className={cn(
"group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3",
className
)}
{...props}
/>
)
function CardHeader({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="card-header"
className={cn(
'group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3',
className
)}
{...props}
/>
);
}
function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-title"
className={cn(
"text-base leading-snug font-medium group-data-[size=sm]/card:text-sm",
className
)}
{...props}
/>
)
function CardTitle({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="card-title"
className={cn('text-base leading-snug font-medium group-data-[size=sm]/card:text-sm', className)}
{...props}
/>
);
}
function CardDescription({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-description"
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
)
function CardDescription({ className, ...props }: React.ComponentProps<'div'>) {
return <div data-slot="card-description" className={cn('text-sm text-muted-foreground', className)} {...props} />;
}
function CardAction({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-action"
className={cn(
"col-start-2 row-span-2 row-start-1 self-start justify-self-end",
className
)}
{...props}
/>
)
function CardAction({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="card-action"
className={cn('col-start-2 row-span-2 row-start-1 self-start justify-self-end', className)}
{...props}
/>
);
}
function CardContent({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-content"
className={cn("px-4 group-data-[size=sm]/card:px-3", className)}
{...props}
/>
)
function CardContent({ className, ...props }: React.ComponentProps<'div'>) {
return <div data-slot="card-content" className={cn('px-4 group-data-[size=sm]/card:px-3', className)} {...props} />;
}
function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="card-footer"
className={cn(
"flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3",
className
)}
{...props}
/>
)
function CardFooter({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="card-footer"
className={cn('flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3', className)}
{...props}
/>
);
}
export {
Card,
CardHeader,
CardFooter,
CardTitle,
CardAction,
CardDescription,
CardContent,
}
export { Card, CardHeader, CardFooter, CardTitle, CardAction, CardDescription, CardContent };
+126 -169
View File
@@ -1,193 +1,150 @@
import * as React from "react"
import { Command as CommandPrimitive } from "cmdk"
import * as React from 'react';
import { Command as CommandPrimitive } from 'cmdk';
import { cn } from "@/lib/utils"
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog"
import {
InputGroup,
InputGroupAddon,
} from "@/components/ui/input-group"
import { SearchIcon, CheckIcon } from "lucide-react"
import { cn } from '@/lib/utils';
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog';
import { InputGroup, InputGroupAddon } from '@/components/ui/input-group';
import { SearchIcon, CheckIcon } from 'lucide-react';
function Command({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive>) {
return (
<CommandPrimitive
data-slot="command"
className={cn(
"flex size-full flex-col overflow-hidden rounded-xl! bg-popover p-1 text-popover-foreground",
className
)}
{...props}
/>
)
function Command({ className, ...props }: React.ComponentProps<typeof CommandPrimitive>) {
return (
<CommandPrimitive
data-slot="command"
className={cn(
'flex size-full flex-col overflow-hidden rounded-xl! bg-popover p-1 text-popover-foreground',
className
)}
{...props}
/>
);
}
function CommandDialog({
title = "Command Palette",
description = "Search for a command to run...",
children,
className,
showCloseButton = false,
...props
title = 'Command Palette',
description = 'Search for a command to run...',
children,
className,
showCloseButton = false,
...props
}: React.ComponentProps<typeof Dialog> & {
title?: string
description?: string
className?: string
showCloseButton?: boolean
title?: string;
description?: string;
className?: string;
showCloseButton?: boolean;
}) {
return (
<Dialog {...props}>
<DialogHeader className="sr-only">
<DialogTitle>{title}</DialogTitle>
<DialogDescription>{description}</DialogDescription>
</DialogHeader>
<DialogContent
className={cn(
"top-1/3 translate-y-0 overflow-hidden rounded-xl! p-0",
className
)}
showCloseButton={showCloseButton}
>
{children}
</DialogContent>
</Dialog>
)
return (
<Dialog {...props}>
<DialogHeader className="sr-only">
<DialogTitle>{title}</DialogTitle>
<DialogDescription>{description}</DialogDescription>
</DialogHeader>
<DialogContent
className={cn('top-1/3 translate-y-0 overflow-hidden rounded-xl! p-0', className)}
showCloseButton={showCloseButton}
>
{children}
</DialogContent>
</Dialog>
);
}
function CommandInput({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Input>) {
return (
<div data-slot="command-input-wrapper" className="p-1 pb-0">
<InputGroup className="h-8! rounded-lg! border-input/30 bg-input/30 shadow-none! *:data-[slot=input-group-addon]:pl-2!">
<CommandPrimitive.Input
data-slot="command-input"
className={cn(
"w-full text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50",
className
)}
{...props}
/>
<InputGroupAddon>
<SearchIcon className="size-4 shrink-0 opacity-50" />
</InputGroupAddon>
</InputGroup>
</div>
)
function CommandInput({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Input>) {
return (
<div data-slot="command-input-wrapper" className="p-1 pb-0">
<InputGroup className="h-8! rounded-lg! border-input/30 bg-input/30 shadow-none! *:data-[slot=input-group-addon]:pl-2!">
<CommandPrimitive.Input
data-slot="command-input"
className={cn('w-full text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50', className)}
{...props}
/>
<InputGroupAddon>
<SearchIcon className="size-4 shrink-0 opacity-50" />
</InputGroupAddon>
</InputGroup>
</div>
);
}
function CommandList({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.List>) {
return (
<CommandPrimitive.List
data-slot="command-list"
className={cn(
"no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none",
className
)}
{...props}
/>
)
function CommandList({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.List>) {
return (
<CommandPrimitive.List
data-slot="command-list"
className={cn('no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none', className)}
{...props}
/>
);
}
function CommandEmpty({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Empty>) {
return (
<CommandPrimitive.Empty
data-slot="command-empty"
className={cn("py-6 text-center text-sm", className)}
{...props}
/>
)
function CommandEmpty({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Empty>) {
return (
<CommandPrimitive.Empty
data-slot="command-empty"
className={cn('py-6 text-center text-sm', className)}
{...props}
/>
);
}
function CommandGroup({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Group>) {
return (
<CommandPrimitive.Group
data-slot="command-group"
className={cn(
"overflow-hidden p-1 text-foreground **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:py-1.5 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground",
className
)}
{...props}
/>
)
function CommandGroup({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Group>) {
return (
<CommandPrimitive.Group
data-slot="command-group"
className={cn(
'overflow-hidden p-1 text-foreground **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:py-1.5 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground',
className
)}
{...props}
/>
);
}
function CommandSeparator({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Separator>) {
return (
<CommandPrimitive.Separator
data-slot="command-separator"
className={cn("-mx-1 h-px bg-border", className)}
{...props}
/>
)
function CommandSeparator({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Separator>) {
return (
<CommandPrimitive.Separator
data-slot="command-separator"
className={cn('-mx-1 h-px bg-border', className)}
{...props}
/>
);
}
function CommandItem({
className,
children,
...props
}: React.ComponentProps<typeof CommandPrimitive.Item>) {
return (
<CommandPrimitive.Item
data-slot="command-item"
className={cn(
"group/command-item relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none in-data-[slot=dialog-content]:rounded-lg! data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-selected:*:[svg]:text-foreground",
className
)}
{...props}
>
{children}
<CheckIcon className="ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-[checked=true]/command-item:opacity-100" />
</CommandPrimitive.Item>
)
function CommandItem({ className, children, ...props }: React.ComponentProps<typeof CommandPrimitive.Item>) {
return (
<CommandPrimitive.Item
data-slot="command-item"
className={cn(
"group/command-item relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none in-data-[slot=dialog-content]:rounded-lg! data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-selected:*:[svg]:text-foreground",
className
)}
{...props}
>
{children}
<CheckIcon className="ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-[checked=true]/command-item:opacity-100" />
</CommandPrimitive.Item>
);
}
function CommandShortcut({
className,
...props
}: React.ComponentProps<"span">) {
return (
<span
data-slot="command-shortcut"
className={cn(
"ml-auto text-xs tracking-widest text-muted-foreground group-data-selected/command-item:text-foreground",
className
)}
{...props}
/>
)
function CommandShortcut({ className, ...props }: React.ComponentProps<'span'>) {
return (
<span
data-slot="command-shortcut"
className={cn(
'ml-auto text-xs tracking-widest text-muted-foreground group-data-selected/command-item:text-foreground',
className
)}
{...props}
/>
);
}
export {
Command,
CommandDialog,
CommandInput,
CommandList,
CommandEmpty,
CommandGroup,
CommandItem,
CommandShortcut,
CommandSeparator,
}
Command,
CommandDialog,
CommandInput,
CommandList,
CommandEmpty,
CommandGroup,
CommandItem,
CommandShortcut,
CommandSeparator,
};
+107 -138
View File
@@ -1,166 +1,135 @@
import * as React from "react"
import { Dialog as DialogPrimitive } from "radix-ui"
import * as React from 'react';
import { Dialog as DialogPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { Button } from "@/components/ui/button"
import { XIcon } from "lucide-react"
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { XIcon } from 'lucide-react';
function Dialog({
...props
}: React.ComponentProps<typeof DialogPrimitive.Root>) {
return <DialogPrimitive.Root data-slot="dialog" {...props} />
function Dialog({ ...props }: React.ComponentProps<typeof DialogPrimitive.Root>) {
return <DialogPrimitive.Root data-slot="dialog" {...props} />;
}
function DialogTrigger({
...props
}: React.ComponentProps<typeof DialogPrimitive.Trigger>) {
return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />
function DialogTrigger({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>) {
return <DialogPrimitive.Trigger data-slot="dialog-trigger" {...props} />;
}
function DialogPortal({
...props
}: React.ComponentProps<typeof DialogPrimitive.Portal>) {
return <DialogPrimitive.Portal data-slot="dialog-portal" {...props} />
function DialogPortal({ ...props }: React.ComponentProps<typeof DialogPrimitive.Portal>) {
return <DialogPrimitive.Portal data-slot="dialog-portal" {...props} />;
}
function DialogClose({
...props
}: React.ComponentProps<typeof DialogPrimitive.Close>) {
return <DialogPrimitive.Close data-slot="dialog-close" {...props} />
function DialogClose({ ...props }: React.ComponentProps<typeof DialogPrimitive.Close>) {
return <DialogPrimitive.Close data-slot="dialog-close" {...props} />;
}
function DialogOverlay({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Overlay>) {
return (
<DialogPrimitive.Overlay
data-slot="dialog-overlay"
className={cn(
"fixed inset-0 isolate z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0",
className
)}
{...props}
/>
)
function DialogOverlay({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>) {
return (
<DialogPrimitive.Overlay
data-slot="dialog-overlay"
className={cn(
'fixed inset-0 isolate z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0',
className
)}
{...props}
/>
);
}
function DialogContent({
className,
children,
showCloseButton = true,
...props
className,
children,
showCloseButton = true,
...props
}: React.ComponentProps<typeof DialogPrimitive.Content> & {
showCloseButton?: boolean
showCloseButton?: boolean;
}) {
return (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
data-slot="dialog-content"
className={cn(
"fixed top-1/2 left-1/2 z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-popover p-4 text-sm text-popover-foreground ring-1 ring-foreground/10 duration-100 outline-none sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
className
)}
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close data-slot="dialog-close" asChild>
<Button
variant="ghost"
className="absolute top-2 right-2"
size="icon-sm"
>
<XIcon
/>
<span className="sr-only">Close</span>
</Button>
</DialogPrimitive.Close>
)}
</DialogPrimitive.Content>
</DialogPortal>
)
return (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
data-slot="dialog-content"
className={cn(
'fixed top-1/2 left-1/2 z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-popover p-4 text-sm text-popover-foreground ring-1 ring-foreground/10 duration-100 outline-none sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95',
className
)}
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close data-slot="dialog-close" asChild>
<Button variant="ghost" className="absolute top-2 right-2" size="icon-sm">
<XIcon />
<span className="sr-only">Close</span>
</Button>
</DialogPrimitive.Close>
)}
</DialogPrimitive.Content>
</DialogPortal>
);
}
function DialogHeader({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="dialog-header"
className={cn("flex flex-col gap-2", className)}
{...props}
/>
)
function DialogHeader({ className, ...props }: React.ComponentProps<'div'>) {
return <div data-slot="dialog-header" className={cn('flex flex-col gap-2', className)} {...props} />;
}
function DialogFooter({
className,
showCloseButton = false,
children,
...props
}: React.ComponentProps<"div"> & {
showCloseButton?: boolean
className,
showCloseButton = false,
children,
...props
}: React.ComponentProps<'div'> & {
showCloseButton?: boolean;
}) {
return (
<div
data-slot="dialog-footer"
className={cn(
"-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 sm:flex-row sm:justify-end",
className
)}
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close asChild>
<Button variant="outline">Close</Button>
</DialogPrimitive.Close>
)}
</div>
)
return (
<div
data-slot="dialog-footer"
className={cn(
'-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 sm:flex-row sm:justify-end',
className
)}
{...props}
>
{children}
{showCloseButton && (
<DialogPrimitive.Close asChild>
<Button variant="outline">Close</Button>
</DialogPrimitive.Close>
)}
</div>
);
}
function DialogTitle({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Title>) {
return (
<DialogPrimitive.Title
data-slot="dialog-title"
className={cn(
"text-base leading-none font-medium",
className
)}
{...props}
/>
)
function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>) {
return (
<DialogPrimitive.Title
data-slot="dialog-title"
className={cn('text-base leading-none font-medium', className)}
{...props}
/>
);
}
function DialogDescription({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Description>) {
return (
<DialogPrimitive.Description
data-slot="dialog-description"
className={cn(
"text-sm text-muted-foreground *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",
className
)}
{...props}
/>
)
function DialogDescription({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Description>) {
return (
<DialogPrimitive.Description
data-slot="dialog-description"
className={cn(
'text-sm text-muted-foreground *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground',
className
)}
{...props}
/>
);
}
export {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogOverlay,
DialogPortal,
DialogTitle,
DialogTrigger,
}
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogOverlay,
DialogPortal,
DialogTitle,
DialogTrigger,
};
+115 -136
View File
@@ -1,156 +1,135 @@
"use client"
'use client';
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import * as React from 'react';
import { cva, type VariantProps } from 'class-variance-authority';
import { cn } from "@/lib/utils"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Textarea } from '@/components/ui/textarea';
function InputGroup({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="input-group"
role="group"
className={cn(
"group/input-group relative flex h-8 w-full min-w-0 items-center rounded-lg border border-input transition-colors outline-none in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-disabled:bg-input/50 has-disabled:opacity-50 has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto dark:bg-input/30 dark:has-disabled:bg-input/80 dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5",
className
)}
{...props}
/>
)
function InputGroup({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="input-group"
role="group"
className={cn(
'group/input-group relative flex h-8 w-full min-w-0 items-center rounded-lg border border-input transition-colors outline-none in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-disabled:bg-input/50 has-disabled:opacity-50 has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto dark:bg-input/30 dark:has-disabled:bg-input/80 dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5',
className
)}
{...props}
/>
);
}
const inputGroupAddonVariants = cva(
"flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4",
{
variants: {
align: {
"inline-start":
"order-first pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem]",
"inline-end":
"order-last pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem]",
"block-start":
"order-first w-full justify-start px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2",
"block-end":
"order-last w-full justify-start px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2",
},
},
defaultVariants: {
align: "inline-start",
},
}
)
"flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4",
{
variants: {
align: {
'inline-start': 'order-first pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem]',
'inline-end': 'order-last pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem]',
'block-start':
'order-first w-full justify-start px-2.5 pt-2 group-has-[>input]/input-group:pt-2 [.border-b]:pb-2',
'block-end': 'order-last w-full justify-start px-2.5 pb-2 group-has-[>input]/input-group:pb-2 [.border-t]:pt-2',
},
},
defaultVariants: {
align: 'inline-start',
},
}
);
function InputGroupAddon({
className,
align = "inline-start",
...props
}: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>) {
return (
<div
role="group"
data-slot="input-group-addon"
data-align={align}
className={cn(inputGroupAddonVariants({ align }), className)}
onClick={(e) => {
if ((e.target as HTMLElement).closest("button")) {
return
}
e.currentTarget.parentElement?.querySelector("input")?.focus()
}}
{...props}
/>
)
className,
align = 'inline-start',
...props
}: React.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>) {
return (
<div
role="group"
data-slot="input-group-addon"
data-align={align}
className={cn(inputGroupAddonVariants({ align }), className)}
onClick={(e) => {
if ((e.target as HTMLElement).closest('button')) {
return;
}
e.currentTarget.parentElement?.querySelector('input')?.focus();
}}
{...props}
/>
);
}
const inputGroupButtonVariants = cva(
"flex items-center gap-2 text-sm shadow-none",
{
variants: {
size: {
xs: "h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5",
sm: "",
"icon-xs":
"size-6 rounded-[calc(var(--radius)-3px)] p-0 has-[>svg]:p-0",
"icon-sm": "size-8 p-0 has-[>svg]:p-0",
},
},
defaultVariants: {
size: "xs",
},
}
)
const inputGroupButtonVariants = cva('flex items-center gap-2 text-sm shadow-none', {
variants: {
size: {
xs: "h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5",
sm: '',
'icon-xs': 'size-6 rounded-[calc(var(--radius)-3px)] p-0 has-[>svg]:p-0',
'icon-sm': 'size-8 p-0 has-[>svg]:p-0',
},
},
defaultVariants: {
size: 'xs',
},
});
function InputGroupButton({
className,
type = "button",
variant = "ghost",
size = "xs",
...props
}: Omit<React.ComponentProps<typeof Button>, "size"> &
VariantProps<typeof inputGroupButtonVariants>) {
return (
<Button
type={type}
data-size={size}
variant={variant}
className={cn(inputGroupButtonVariants({ size }), className)}
{...props}
/>
)
className,
type = 'button',
variant = 'ghost',
size = 'xs',
...props
}: Omit<React.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>) {
return (
<Button
type={type}
data-size={size}
variant={variant}
className={cn(inputGroupButtonVariants({ size }), className)}
{...props}
/>
);
}
function InputGroupText({ className, ...props }: React.ComponentProps<"span">) {
return (
<span
className={cn(
"flex items-center gap-2 text-sm text-muted-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
/>
)
function InputGroupText({ className, ...props }: React.ComponentProps<'span'>) {
return (
<span
className={cn(
"flex items-center gap-2 text-sm text-muted-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
/>
);
}
function InputGroupInput({
className,
...props
}: React.ComponentProps<"input">) {
return (
<Input
data-slot="input-group-control"
className={cn(
"flex-1 rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent",
className
)}
{...props}
/>
)
function InputGroupInput({ className, ...props }: React.ComponentProps<'input'>) {
return (
<Input
data-slot="input-group-control"
className={cn(
'flex-1 rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent',
className
)}
{...props}
/>
);
}
function InputGroupTextarea({
className,
...props
}: React.ComponentProps<"textarea">) {
return (
<Textarea
data-slot="input-group-control"
className={cn(
"flex-1 resize-none rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent",
className
)}
{...props}
/>
)
function InputGroupTextarea({ className, ...props }: React.ComponentProps<'textarea'>) {
return (
<Textarea
data-slot="input-group-control"
className={cn(
'flex-1 resize-none rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent',
className
)}
{...props}
/>
);
}
export {
InputGroup,
InputGroupAddon,
InputGroupButton,
InputGroupText,
InputGroupInput,
InputGroupTextarea,
}
export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea };
+15 -15
View File
@@ -1,19 +1,19 @@
import * as React from "react"
import * as React from 'react';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
<input
type={type}
data-slot="input"
className={cn(
"h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",
className
)}
{...props}
/>
)
function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
return (
<input
type={type}
data-slot="input"
className={cn(
'h-8 w-full min-w-0 rounded-lg border border-input bg-transparent px-2.5 py-1 text-base transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40',
className
)}
{...props}
/>
);
}
export { Input }
export { Input };
+15 -18
View File
@@ -1,22 +1,19 @@
import * as React from "react"
import { Label as LabelPrimitive } from "radix-ui"
import * as React from 'react';
import { Label as LabelPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Label({
className,
...props
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
data-slot="label"
className={cn(
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
className
)}
{...props}
/>
)
function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
data-slot="label"
className={cn(
'flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50',
className
)}
{...props}
/>
);
}
export { Label }
export { Label };
+34 -69
View File
@@ -1,87 +1,52 @@
import * as React from "react"
import { Popover as PopoverPrimitive } from "radix-ui"
import * as React from 'react';
import { Popover as PopoverPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Popover({
...props
}: React.ComponentProps<typeof PopoverPrimitive.Root>) {
return <PopoverPrimitive.Root data-slot="popover" {...props} />
function Popover({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>) {
return <PopoverPrimitive.Root data-slot="popover" {...props} />;
}
function PopoverTrigger({
...props
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>) {
return <PopoverPrimitive.Trigger data-slot="popover-trigger" {...props} />
function PopoverTrigger({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Trigger>) {
return <PopoverPrimitive.Trigger data-slot="popover-trigger" {...props} />;
}
function PopoverContent({
className,
align = "center",
sideOffset = 4,
...props
className,
align = 'center',
sideOffset = 4,
...props
}: React.ComponentProps<typeof PopoverPrimitive.Content>) {
return (
<PopoverPrimitive.Portal>
<PopoverPrimitive.Content
data-slot="popover-content"
align={align}
sideOffset={sideOffset}
className={cn(
"z-50 flex w-72 origin-(--radix-popover-content-transform-origin) flex-col gap-2.5 rounded-lg bg-popover p-2.5 text-sm text-popover-foreground shadow-md ring-1 ring-foreground/10 outline-hidden duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
className
)}
{...props}
/>
</PopoverPrimitive.Portal>
)
return (
<PopoverPrimitive.Portal>
<PopoverPrimitive.Content
data-slot="popover-content"
align={align}
sideOffset={sideOffset}
className={cn(
'z-50 flex w-72 origin-(--radix-popover-content-transform-origin) flex-col gap-2.5 rounded-lg bg-popover p-2.5 text-sm text-popover-foreground shadow-md ring-1 ring-foreground/10 outline-hidden duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95',
className
)}
{...props}
/>
</PopoverPrimitive.Portal>
);
}
function PopoverAnchor({
...props
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>) {
return <PopoverPrimitive.Anchor data-slot="popover-anchor" {...props} />
function PopoverAnchor({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Anchor>) {
return <PopoverPrimitive.Anchor data-slot="popover-anchor" {...props} />;
}
function PopoverHeader({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="popover-header"
className={cn("flex flex-col gap-0.5 text-sm", className)}
{...props}
/>
)
function PopoverHeader({ className, ...props }: React.ComponentProps<'div'>) {
return <div data-slot="popover-header" className={cn('flex flex-col gap-0.5 text-sm', className)} {...props} />;
}
function PopoverTitle({ className, ...props }: React.ComponentProps<"h2">) {
return (
<div
data-slot="popover-title"
className={cn("font-medium", className)}
{...props}
/>
)
function PopoverTitle({ className, ...props }: React.ComponentProps<'h2'>) {
return <div data-slot="popover-title" className={cn('font-medium', className)} {...props} />;
}
function PopoverDescription({
className,
...props
}: React.ComponentProps<"p">) {
return (
<p
data-slot="popover-description"
className={cn("text-muted-foreground", className)}
{...props}
/>
)
function PopoverDescription({ className, ...props }: React.ComponentProps<'p'>) {
return <p data-slot="popover-description" className={cn('text-muted-foreground', className)} {...props} />;
}
export {
Popover,
PopoverAnchor,
PopoverContent,
PopoverDescription,
PopoverHeader,
PopoverTitle,
PopoverTrigger,
}
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger };
+37 -45
View File
@@ -1,53 +1,45 @@
import * as React from "react"
import { ScrollArea as ScrollAreaPrimitive } from "radix-ui"
import * as React from 'react';
import { ScrollArea as ScrollAreaPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function ScrollArea({
className,
children,
...props
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>) {
return (
<ScrollAreaPrimitive.Root
data-slot="scroll-area"
className={cn("relative", className)}
{...props}
>
<ScrollAreaPrimitive.Viewport
data-slot="scroll-area-viewport"
className="size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1"
>
{children}
</ScrollAreaPrimitive.Viewport>
<ScrollBar />
<ScrollAreaPrimitive.Corner />
</ScrollAreaPrimitive.Root>
)
function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollAreaPrimitive.Root>) {
return (
<ScrollAreaPrimitive.Root data-slot="scroll-area" className={cn('relative', className)} {...props}>
<ScrollAreaPrimitive.Viewport
data-slot="scroll-area-viewport"
className="size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1"
>
{children}
</ScrollAreaPrimitive.Viewport>
<ScrollBar />
<ScrollAreaPrimitive.Corner />
</ScrollAreaPrimitive.Root>
);
}
function ScrollBar({
className,
orientation = "vertical",
...props
className,
orientation = 'vertical',
...props
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>) {
return (
<ScrollAreaPrimitive.ScrollAreaScrollbar
data-slot="scroll-area-scrollbar"
data-orientation={orientation}
orientation={orientation}
className={cn(
"flex touch-none p-px transition-colors select-none data-horizontal:h-2.5 data-horizontal:flex-col data-horizontal:border-t data-horizontal:border-t-transparent data-vertical:h-full data-vertical:w-2.5 data-vertical:border-l data-vertical:border-l-transparent",
className
)}
{...props}
>
<ScrollAreaPrimitive.ScrollAreaThumb
data-slot="scroll-area-thumb"
className="relative flex-1 rounded-full bg-border"
/>
</ScrollAreaPrimitive.ScrollAreaScrollbar>
)
return (
<ScrollAreaPrimitive.ScrollAreaScrollbar
data-slot="scroll-area-scrollbar"
data-orientation={orientation}
orientation={orientation}
className={cn(
'flex touch-none p-px transition-colors select-none data-horizontal:h-2.5 data-horizontal:flex-col data-horizontal:border-t data-horizontal:border-t-transparent data-vertical:h-full data-vertical:w-2.5 data-vertical:border-l data-vertical:border-l-transparent',
className
)}
{...props}
>
<ScrollAreaPrimitive.ScrollAreaThumb
data-slot="scroll-area-thumb"
className="relative flex-1 rounded-full bg-border"
/>
</ScrollAreaPrimitive.ScrollAreaScrollbar>
);
}
export { ScrollArea, ScrollBar }
export { ScrollArea, ScrollBar };
+137 -160
View File
@@ -1,190 +1,167 @@
import * as React from "react"
import { Select as SelectPrimitive } from "radix-ui"
import * as React from 'react';
import { Select as SelectPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { ChevronDownIcon, CheckIcon, ChevronUpIcon } from "lucide-react"
import { cn } from '@/lib/utils';
import { ChevronDownIcon, CheckIcon, ChevronUpIcon } from 'lucide-react';
function Select({
...props
}: React.ComponentProps<typeof SelectPrimitive.Root>) {
return <SelectPrimitive.Root data-slot="select" {...props} />
function Select({ ...props }: React.ComponentProps<typeof SelectPrimitive.Root>) {
return <SelectPrimitive.Root data-slot="select" {...props} />;
}
function SelectGroup({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Group>) {
return (
<SelectPrimitive.Group
data-slot="select-group"
className={cn("scroll-my-1 p-1", className)}
{...props}
/>
)
function SelectGroup({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Group>) {
return <SelectPrimitive.Group data-slot="select-group" className={cn('scroll-my-1 p-1', className)} {...props} />;
}
function SelectValue({
...props
}: React.ComponentProps<typeof SelectPrimitive.Value>) {
return <SelectPrimitive.Value data-slot="select-value" {...props} />
function SelectValue({ ...props }: React.ComponentProps<typeof SelectPrimitive.Value>) {
return <SelectPrimitive.Value data-slot="select-value" {...props} />;
}
function SelectTrigger({
className,
size = "default",
children,
...props
className,
size = 'default',
children,
...props
}: React.ComponentProps<typeof SelectPrimitive.Trigger> & {
size?: "sm" | "default"
size?: 'sm' | 'default';
}) {
return (
<SelectPrimitive.Trigger
data-slot="select-trigger"
data-size={size}
className={cn(
"flex w-fit items-center justify-between gap-1.5 rounded-lg border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap transition-colors outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
{children}
<SelectPrimitive.Icon asChild>
<ChevronDownIcon className="pointer-events-none size-4 text-muted-foreground" />
</SelectPrimitive.Icon>
</SelectPrimitive.Trigger>
)
return (
<SelectPrimitive.Trigger
data-slot="select-trigger"
data-size={size}
className={cn(
"flex w-fit items-center justify-between gap-1.5 rounded-lg border border-input bg-transparent py-2 pr-2 pl-2.5 text-sm whitespace-nowrap transition-colors outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-placeholder:text-muted-foreground data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-1.5 dark:bg-input/30 dark:hover:bg-input/50 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
{children}
<SelectPrimitive.Icon asChild>
<ChevronDownIcon className="pointer-events-none size-4 text-muted-foreground" />
</SelectPrimitive.Icon>
</SelectPrimitive.Trigger>
);
}
function SelectContent({
className,
children,
position = "item-aligned",
align = "center",
...props
className,
children,
position = 'item-aligned',
align = 'center',
...props
}: React.ComponentProps<typeof SelectPrimitive.Content>) {
return (
<SelectPrimitive.Portal>
<SelectPrimitive.Content
data-slot="select-content"
data-align-trigger={position === "item-aligned"}
className={cn("relative z-50 max-h-(--radix-select-content-available-height) min-w-36 origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95", position ==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1", className )}
position={position}
align={align}
{...props}
>
<SelectScrollUpButton />
<SelectPrimitive.Viewport
data-position={position}
className={cn(
"data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)",
position === "popper" && ""
)}
>
{children}
</SelectPrimitive.Viewport>
<SelectScrollDownButton />
</SelectPrimitive.Content>
</SelectPrimitive.Portal>
)
return (
<SelectPrimitive.Portal>
<SelectPrimitive.Content
data-slot="select-content"
data-align-trigger={position === 'item-aligned'}
className={cn(
'relative z-50 max-h-(--radix-select-content-available-height) min-w-36 origin-(--radix-select-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-lg bg-popover text-popover-foreground shadow-md ring-1 ring-foreground/10 duration-100 data-[align-trigger=true]:animate-none data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95',
position === 'popper' &&
'data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1',
className
)}
position={position}
align={align}
{...props}
>
<SelectScrollUpButton />
<SelectPrimitive.Viewport
data-position={position}
className={cn(
'data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)',
position === 'popper' && ''
)}
>
{children}
</SelectPrimitive.Viewport>
<SelectScrollDownButton />
</SelectPrimitive.Content>
</SelectPrimitive.Portal>
);
}
function SelectLabel({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Label>) {
return (
<SelectPrimitive.Label
data-slot="select-label"
className={cn("px-1.5 py-1 text-xs text-muted-foreground", className)}
{...props}
/>
)
function SelectLabel({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Label>) {
return (
<SelectPrimitive.Label
data-slot="select-label"
className={cn('px-1.5 py-1 text-xs text-muted-foreground', className)}
{...props}
/>
);
}
function SelectItem({
className,
children,
...props
}: React.ComponentProps<typeof SelectPrimitive.Item>) {
return (
<SelectPrimitive.Item
data-slot="select-item"
className={cn(
"relative flex w-full cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",
className
)}
{...props}
>
<span className="pointer-events-none absolute right-2 flex size-4 items-center justify-center">
<SelectPrimitive.ItemIndicator>
<CheckIcon className="pointer-events-none" />
</SelectPrimitive.ItemIndicator>
</span>
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
</SelectPrimitive.Item>
)
function SelectItem({ className, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Item>) {
return (
<SelectPrimitive.Item
data-slot="select-item"
className={cn(
"relative flex w-full cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2",
className
)}
{...props}
>
<span className="pointer-events-none absolute right-2 flex size-4 items-center justify-center">
<SelectPrimitive.ItemIndicator>
<CheckIcon className="pointer-events-none" />
</SelectPrimitive.ItemIndicator>
</span>
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
</SelectPrimitive.Item>
);
}
function SelectSeparator({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.Separator>) {
return (
<SelectPrimitive.Separator
data-slot="select-separator"
className={cn("pointer-events-none -mx-1 my-1 h-px bg-border", className)}
{...props}
/>
)
function SelectSeparator({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Separator>) {
return (
<SelectPrimitive.Separator
data-slot="select-separator"
className={cn('pointer-events-none -mx-1 my-1 h-px bg-border', className)}
{...props}
/>
);
}
function SelectScrollUpButton({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {
return (
<SelectPrimitive.ScrollUpButton
data-slot="select-scroll-up-button"
className={cn(
"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
<ChevronUpIcon
/>
</SelectPrimitive.ScrollUpButton>
)
function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {
return (
<SelectPrimitive.ScrollUpButton
data-slot="select-scroll-up-button"
className={cn(
"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
<ChevronUpIcon />
</SelectPrimitive.ScrollUpButton>
);
}
function SelectScrollDownButton({
className,
...props
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {
return (
<SelectPrimitive.ScrollDownButton
data-slot="select-scroll-down-button"
className={cn(
"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
<ChevronDownIcon
/>
</SelectPrimitive.ScrollDownButton>
)
return (
<SelectPrimitive.ScrollDownButton
data-slot="select-scroll-down-button"
className={cn(
"z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4",
className
)}
{...props}
>
<ChevronDownIcon />
</SelectPrimitive.ScrollDownButton>
);
}
export {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectScrollDownButton,
SelectScrollUpButton,
SelectSeparator,
SelectTrigger,
SelectValue,
}
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectScrollDownButton,
SelectScrollUpButton,
SelectSeparator,
SelectTrigger,
SelectValue,
};
+20 -20
View File
@@ -1,26 +1,26 @@
import * as React from "react"
import { Separator as SeparatorPrimitive } from "radix-ui"
import * as React from 'react';
import { Separator as SeparatorPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Separator({
className,
orientation = "horizontal",
decorative = true,
...props
className,
orientation = 'horizontal',
decorative = true,
...props
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
return (
<SeparatorPrimitive.Root
data-slot="separator"
decorative={decorative}
orientation={orientation}
className={cn(
"shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch",
className
)}
{...props}
/>
)
return (
<SeparatorPrimitive.Root
data-slot="separator"
decorative={decorative}
orientation={orientation}
className={cn(
'shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch',
className
)}
{...props}
/>
);
}
export { Separator }
export { Separator };
+8 -8
View File
@@ -1,22 +1,22 @@
import * as React from "react";
import {Switch as SwitchPrimitive} from "radix-ui";
import * as React from 'react';
import { Switch as SwitchPrimitive } from 'radix-ui';
import {cn} from "@/lib/utils";
import { cn } from '@/lib/utils';
function Switch({
className,
size = "default",
size = 'default',
...props
}: React.ComponentProps<typeof SwitchPrimitive.Root> & {
size?: "sm" | "default";
size?: 'sm' | 'default';
}) {
return (
<SwitchPrimitive.Root
data-slot="switch"
data-size={size}
className={cn(
"peer group/switch relative inline-flex shrink-0 items-center rounded-full border border-transparent transition-all outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:bg-primary data-unchecked:bg-input dark:data-unchecked:bg-input/80 data-disabled:cursor-not-allowed data-disabled:opacity-50",
className,
'peer group/switch relative inline-flex shrink-0 items-center rounded-full border border-transparent transition-all outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:bg-primary data-unchecked:bg-input dark:data-unchecked:bg-input/80 data-disabled:cursor-not-allowed data-disabled:opacity-50',
className
)}
{...props}
>
@@ -28,4 +28,4 @@ function Switch({
);
}
export {Switch};
export { Switch };
+52 -96
View File
@@ -1,114 +1,70 @@
import * as React from "react"
import * as React from 'react';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Table({ className, ...props }: React.ComponentProps<"table">) {
return (
<div
data-slot="table-container"
className="relative w-full overflow-x-auto"
>
<table
data-slot="table"
className={cn("w-full caption-bottom text-sm", className)}
{...props}
/>
</div>
)
function Table({ className, ...props }: React.ComponentProps<'table'>) {
return (
<div data-slot="table-container" className="relative w-full overflow-x-auto">
<table data-slot="table" className={cn('w-full caption-bottom text-sm', className)} {...props} />
</div>
);
}
function TableHeader({ className, ...props }: React.ComponentProps<"thead">) {
return (
<thead
data-slot="table-header"
className={cn("[&_tr]:border-b", className)}
{...props}
/>
)
function TableHeader({ className, ...props }: React.ComponentProps<'thead'>) {
return <thead data-slot="table-header" className={cn('[&_tr]:border-b', className)} {...props} />;
}
function TableBody({ className, ...props }: React.ComponentProps<"tbody">) {
return (
<tbody
data-slot="table-body"
className={cn("[&_tr:last-child]:border-0", className)}
{...props}
/>
)
function TableBody({ className, ...props }: React.ComponentProps<'tbody'>) {
return <tbody data-slot="table-body" className={cn('[&_tr:last-child]:border-0', className)} {...props} />;
}
function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
return (
<tfoot
data-slot="table-footer"
className={cn(
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
className
)}
{...props}
/>
)
function TableFooter({ className, ...props }: React.ComponentProps<'tfoot'>) {
return (
<tfoot
data-slot="table-footer"
className={cn('border-t bg-muted/50 font-medium [&>tr]:last:border-b-0', className)}
{...props}
/>
);
}
function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
return (
<tr
data-slot="table-row"
className={cn(
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
className
)}
{...props}
/>
)
function TableRow({ className, ...props }: React.ComponentProps<'tr'>) {
return (
<tr
data-slot="table-row"
className={cn('border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted', className)}
{...props}
/>
);
}
function TableHead({ className, ...props }: React.ComponentProps<"th">) {
return (
<th
data-slot="table-head"
className={cn(
"h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0",
className
)}
{...props}
/>
)
function TableHead({ className, ...props }: React.ComponentProps<'th'>) {
return (
<th
data-slot="table-head"
className={cn(
'h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0',
className
)}
{...props}
/>
);
}
function TableCell({ className, ...props }: React.ComponentProps<"td">) {
return (
<td
data-slot="table-cell"
className={cn(
"p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0",
className
)}
{...props}
/>
)
function TableCell({ className, ...props }: React.ComponentProps<'td'>) {
return (
<td
data-slot="table-cell"
className={cn('p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0', className)}
{...props}
/>
);
}
function TableCaption({
className,
...props
}: React.ComponentProps<"caption">) {
return (
<caption
data-slot="table-caption"
className={cn("mt-4 text-sm text-muted-foreground", className)}
{...props}
/>
)
function TableCaption({ className, ...props }: React.ComponentProps<'caption'>) {
return (
<caption data-slot="table-caption" className={cn('mt-4 text-sm text-muted-foreground', className)} {...props} />
);
}
export {
Table,
TableHeader,
TableBody,
TableFooter,
TableHead,
TableRow,
TableCell,
TableCaption,
}
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };
+61 -75
View File
@@ -1,88 +1,74 @@
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { Tabs as TabsPrimitive } from "radix-ui"
import * as React from 'react';
import { cva, type VariantProps } from 'class-variance-authority';
import { Tabs as TabsPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Tabs({
className,
orientation = "horizontal",
...props
}: React.ComponentProps<typeof TabsPrimitive.Root>) {
return (
<TabsPrimitive.Root
data-slot="tabs"
data-orientation={orientation}
className={cn(
"group/tabs flex gap-2 data-horizontal:flex-col",
className
)}
{...props}
/>
)
function Tabs({ className, orientation = 'horizontal', ...props }: React.ComponentProps<typeof TabsPrimitive.Root>) {
return (
<TabsPrimitive.Root
data-slot="tabs"
data-orientation={orientation}
className={cn('group/tabs flex gap-2 data-horizontal:flex-col', className)}
{...props}
/>
);
}
const tabsListVariants = cva(
"group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none",
{
variants: {
variant: {
default: "bg-muted",
line: "gap-1 bg-transparent",
},
},
defaultVariants: {
variant: "default",
},
}
)
'group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none',
{
variants: {
variant: {
default: 'bg-muted',
line: 'gap-1 bg-transparent',
},
},
defaultVariants: {
variant: 'default',
},
}
);
function TabsList({
className,
variant = "default",
...props
}: React.ComponentProps<typeof TabsPrimitive.List> &
VariantProps<typeof tabsListVariants>) {
return (
<TabsPrimitive.List
data-slot="tabs-list"
data-variant={variant}
className={cn(tabsListVariants({ variant }), className)}
{...props}
/>
)
className,
variant = 'default',
...props
}: React.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>) {
return (
<TabsPrimitive.List
data-slot="tabs-list"
data-variant={variant}
className={cn(tabsListVariants({ variant }), className)}
{...props}
/>
);
}
function TabsTrigger({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.Trigger>) {
return (
<TabsPrimitive.Trigger
data-slot="tabs-trigger"
className={cn(
"relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-1.5 py-0.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 has-data-[icon=inline-end]:pr-1 has-data-[icon=inline-start]:pl-1 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
"group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent",
"data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground",
"after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100",
className
)}
{...props}
/>
)
function TabsTrigger({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>) {
return (
<TabsPrimitive.Trigger
data-slot="tabs-trigger"
className={cn(
"relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-1.5 py-0.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 has-data-[icon=inline-end]:pr-1 has-data-[icon=inline-start]:pl-1 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
'group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent',
'data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground',
'after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100',
className
)}
{...props}
/>
);
}
function TabsContent({
className,
...props
}: React.ComponentProps<typeof TabsPrimitive.Content>) {
return (
<TabsPrimitive.Content
data-slot="tabs-content"
className={cn("flex-1 text-sm outline-none", className)}
{...props}
/>
)
function TabsContent({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Content>) {
return (
<TabsPrimitive.Content
data-slot="tabs-content"
className={cn('flex-1 text-sm outline-none', className)}
{...props}
/>
);
}
export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants }
export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants };
+14 -14
View File
@@ -1,18 +1,18 @@
import * as React from "react"
import * as React from 'react';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
return (
<textarea
data-slot="textarea"
className={cn(
"flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",
className
)}
{...props}
/>
)
function Textarea({ className, ...props }: React.ComponentProps<'textarea'>) {
return (
<textarea
data-slot="textarea"
className={cn(
'flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40',
className
)}
{...props}
/>
);
}
export { Textarea }
export { Textarea };
+30 -43
View File
@@ -1,55 +1,42 @@
import * as React from "react"
import { Tooltip as TooltipPrimitive } from "radix-ui"
import * as React from 'react';
import { Tooltip as TooltipPrimitive } from 'radix-ui';
import { cn } from "@/lib/utils"
import { cn } from '@/lib/utils';
function TooltipProvider({
delayDuration = 0,
...props
}: React.ComponentProps<typeof TooltipPrimitive.Provider>) {
return (
<TooltipPrimitive.Provider
data-slot="tooltip-provider"
delayDuration={delayDuration}
{...props}
/>
)
function TooltipProvider({ delayDuration = 0, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>) {
return <TooltipPrimitive.Provider data-slot="tooltip-provider" delayDuration={delayDuration} {...props} />;
}
function Tooltip({
...props
}: React.ComponentProps<typeof TooltipPrimitive.Root>) {
return <TooltipPrimitive.Root data-slot="tooltip" {...props} />
function Tooltip({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Root>) {
return <TooltipPrimitive.Root data-slot="tooltip" {...props} />;
}
function TooltipTrigger({
...props
}: React.ComponentProps<typeof TooltipPrimitive.Trigger>) {
return <TooltipPrimitive.Trigger data-slot="tooltip-trigger" {...props} />
function TooltipTrigger({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Trigger>) {
return <TooltipPrimitive.Trigger data-slot="tooltip-trigger" {...props} />;
}
function TooltipContent({
className,
sideOffset = 0,
children,
...props
className,
sideOffset = 0,
children,
...props
}: React.ComponentProps<typeof TooltipPrimitive.Content>) {
return (
<TooltipPrimitive.Portal>
<TooltipPrimitive.Content
data-slot="tooltip-content"
sideOffset={sideOffset}
className={cn(
"z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
className
)}
{...props}
>
{children}
<TooltipPrimitive.Arrow className="z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground" />
</TooltipPrimitive.Content>
</TooltipPrimitive.Portal>
)
return (
<TooltipPrimitive.Portal>
<TooltipPrimitive.Content
data-slot="tooltip-content"
sideOffset={sideOffset}
className={cn(
'z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95',
className
)}
{...props}
>
{children}
<TooltipPrimitive.Arrow className="z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground" />
</TooltipPrimitive.Content>
</TooltipPrimitive.Portal>
);
}
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger }
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
+8 -10
View File
@@ -1,5 +1,5 @@
import {createContext, useContext, useState} from "react";
import api from "@/services/api";
import { createContext, useContext, useState } from 'react';
import api from '@/services/api';
type AuthContextType = {
user: any;
@@ -10,28 +10,26 @@ type AuthContextType = {
const AuthContext = createContext<AuthContextType | null>(null);
export function AuthProvider({children}: {children: React.ReactNode}) {
const [token, setToken] = useState<string | null>(
localStorage.getItem("token"),
);
export function AuthProvider({ children }: { children: React.ReactNode }) {
const [token, setToken] = useState<string | null>(localStorage.getItem('token'));
const [user, setUser] = useState(null);
async function login(username: string, password: string) {
const response = await api.post("/auth/login", {
const response = await api.post('/auth/login', {
username,
password,
});
const token = response.data.token;
localStorage.setItem("token", token);
localStorage.setItem('token', token);
setToken(token);
}
function logout() {
localStorage.removeItem("token");
localStorage.removeItem('token');
setToken(null);
setUser(null);
@@ -55,7 +53,7 @@ export function useAuth() {
const context = useContext(AuthContext);
if (!context) {
throw new Error("useAuth must be used inside AuthProvider");
throw new Error('useAuth must be used inside AuthProvider');
}
return context;
+3 -3
View File
@@ -1,6 +1,6 @@
@import "tailwindcss";
@import "tw-animate-css";
@import "shadcn/tailwind.css";
@import 'tailwindcss';
@import 'tw-animate-css';
@import 'shadcn/tailwind.css';
@custom-variant dark (&:is(.dark *));
+3 -3
View File
@@ -1,7 +1,7 @@
import {Outlet} from "react-router-dom";
import { Outlet } from 'react-router-dom';
import Sidebar from "@/components/layout/Sidebar";
import Header from "@/components/layout/Header";
import Sidebar from '@/components/layout/Sidebar';
import Header from '@/components/layout/Header';
export default function DashboardLayout() {
return (
+3 -3
View File
@@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}
+7 -7
View File
@@ -1,14 +1,14 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
import {AuthProvider} from "./context/AuthContext";
import { AuthProvider } from './context/AuthContext';
ReactDOM.createRoot(document.getElementById("root")!).render(
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<AuthProvider>
<App />
</AuthProvider>
</React.StrictMode>,
</React.StrictMode>
);
+46 -139
View File
@@ -1,44 +1,22 @@
import { useState, useEffect, useCallback } from "react";
import { useState, useEffect, useCallback } from 'react';
import { getAcademicsApi, deleteAcademicsApi } from "@/api/academics";
import { exportToExcel } from "@/utils/exportToExcel";
import { getAcademicsApi, deleteAcademicsApi } from '@/api/academics';
import { exportToExcel } from '@/utils/exportToExcel';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
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,
ChevronLeft,
ChevronRight,
Eye,
BookOpen,
} from "lucide-react";
import { Loader2, Trash, RefreshCw, Download, ChevronLeft, ChevronRight, Eye, BookOpen } from 'lucide-react';
export default function AcademicsPage() {
const [records, setRecords] = useState<any[]>([]);
const [loading, setLoading] = useState(true);
const [searchText, setSearchText] = useState("");
const [searchText, setSearchText] = useState('');
const [viewOpen, setViewOpen] = useState(false);
const [viewData, setViewData] = useState<any>(null);
@@ -87,7 +65,7 @@ export default function AcademicsPage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete record?")) return;
if (!confirm('Delete record?')) return;
await deleteAcademicsApi(id);
fetchAll();
}
@@ -104,7 +82,7 @@ export default function AcademicsPage() {
Date: new Date(item.createdAt).toLocaleDateString(),
}));
exportToExcel(exportData, "academics");
exportToExcel(exportData, 'academics');
};
return (
@@ -120,12 +98,7 @@ export default function AcademicsPage() {
className="w-[280px] text-base"
/>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -147,27 +120,13 @@ export default function AcademicsPage() {
<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 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>
<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>
@@ -180,56 +139,32 @@ export default function AcademicsPage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={7}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={7} className="text-center text-muted-foreground py-10 text-base">
No records found
</TableCell>
</TableRow>
) : (
currentItems.map((item) => (
<TableRow key={item.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.id}
<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="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>
<div className="text-sm font-medium line-clamp-2">{item.courseName || '-'}</div>
</TableCell>
<TableCell>
<div className="text-sm font-medium line-clamp-2">
{item.courseName || "-"}
</div>
<div className="text-sm line-clamp-2">{item.subject || '-'}</div>
</TableCell>
<TableCell className="text-sm">{new Date(item.createdAt).toLocaleDateString()}</TableCell>
<TableCell>
<div className="text-sm line-clamp-2">
{item.subject || "-"}
</div>
</TableCell>
<TableCell className="text-sm">
{new Date(item.createdAt).toLocaleDateString()}
</TableCell>
<TableCell>
<div className="text-sm line-clamp-2 text-muted-foreground italic">
{item.message || "-"}
</div>
<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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openView(item)}>
<Eye className="h-4 w-4" />
</Button>
<Button
@@ -252,14 +187,9 @@ export default function AcademicsPage() {
{!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
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">
@@ -270,9 +200,7 @@ export default function AcademicsPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -281,9 +209,7 @@ export default function AcademicsPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -307,42 +233,26 @@ export default function AcademicsPage() {
<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-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>
<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>
<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-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."}
{viewData.message || 'No message content provided.'}
</p>
</div>
</div>
@@ -350,10 +260,7 @@ export default function AcademicsPage() {
</div>
)}
<DialogFooter>
<Button
onClick={() => setViewOpen(false)}
className="w-full md:w-auto"
>
<Button onClick={() => setViewOpen(false)} className="w-full md:w-auto">
Close
</Button>
</DialogFooter>
+57 -166
View File
@@ -1,47 +1,26 @@
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,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
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,
ChevronLeft,
ChevronRight,
Eye,
} from "lucide-react";
import { Loader2, Trash, RefreshCw, Download, ChevronLeft, ChevronRight, Eye } from 'lucide-react';
export default function AppointmentPage() {
const [appointments, setAppointments] = useState<any[]>([]);
const [loading, setLoading] = useState(true);
const [searchText, setSearchText] = useState("");
const [filterDoctor, setFilterDoctor] = useState("");
const [filterDate, setFilterDate] = useState("");
const [startDate, setStartDate] = useState("");
const [endDate, setEndDate] = useState("");
const [searchText, setSearchText] = useState('');
const [filterDoctor, setFilterDoctor] = useState('');
const [filterDate, setFilterDate] = useState('');
const [startDate, setStartDate] = useState('');
const [endDate, setEndDate] = useState('');
const [viewOpen, setViewOpen] = useState(false);
const [viewData, setViewData] = useState<any>(null);
@@ -53,14 +32,7 @@ export default function AppointmentPage() {
const fetchAll = useCallback(async () => {
setLoading(true);
try {
const res = await getAppointmentsApi(
currentPage,
itemsPerPage,
filterDate,
startDate,
endDate,
searchText,
);
const res = await getAppointmentsApi(currentPage, itemsPerPage, filterDate, startDate, endDate, searchText);
setAppointments(res?.data || []);
setTotalPages(res?.pagination?.totalPages || 1);
setTotalItems(res?.pagination?.total || 0);
@@ -76,9 +48,7 @@ export default function AppointmentPage() {
}, [fetchAll]);
const filteredAppointments = appointments.filter((item) => {
const matchesDoctor = filterDoctor
? item.doctor?.name?.toLowerCase().includes(filterDoctor.toLowerCase())
: true;
const matchesDoctor = filterDoctor ? item.doctor?.name?.toLowerCase().includes(filterDoctor.toLowerCase()) : true;
return matchesDoctor;
});
@@ -95,7 +65,7 @@ export default function AppointmentPage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete appointment?")) return;
if (!confirm('Delete appointment?')) return;
await deleteAppointmentApi(id);
fetchAll();
}
@@ -111,7 +81,7 @@ export default function AppointmentPage() {
Date: new Date(item.date).toLocaleDateString(),
Message: item.message,
}));
exportToExcel(exportData, "appointments");
exportToExcel(exportData, 'appointments');
};
return (
@@ -121,9 +91,7 @@ export default function AppointmentPage() {
<div className="flex flex-wrap gap-4 items-end">
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
Search
</label>
<label className="text-xs font-medium text-muted-foreground">Search</label>
<Input
placeholder="Search name / phone..."
value={searchText}
@@ -136,9 +104,7 @@ export default function AppointmentPage() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
Date
</label>
<label className="text-xs font-medium text-muted-foreground">Date</label>
<Input
type="date"
value={filterDate}
@@ -152,9 +118,7 @@ export default function AppointmentPage() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
From
</label>
<label className="text-xs font-medium text-muted-foreground">From</label>
<Input
type="date"
value={startDate}
@@ -168,9 +132,7 @@ export default function AppointmentPage() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
To
</label>
<label className="text-xs font-medium text-muted-foreground">To</label>
<Input
type="date"
value={endDate}
@@ -184,9 +146,7 @@ export default function AppointmentPage() {
</div>
<div className="flex flex-col gap-1">
<label className="text-xs font-medium text-muted-foreground">
Rows
</label>
<label className="text-xs font-medium text-muted-foreground">Rows</label>
<select
value={itemsPerPage}
onChange={(e) => {
@@ -201,12 +161,7 @@ export default function AppointmentPage() {
</select>
</div>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -228,24 +183,12 @@ export default function AppointmentPage() {
<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-[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>
<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>
@@ -258,53 +201,31 @@ export default function AppointmentPage() {
</TableRow>
) : filteredAppointments.length === 0 ? (
<TableRow>
<TableCell
colSpan={6}
className="text-center text-muted-foreground py-10 text-base"
>
<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} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.id}
<TableCell className="font-mono text-xs">{item.id}</TableCell>
<TableCell>
<div className="font-semibold text-base truncate">{item.name}</div>
<div className="text-xs text-muted-foreground">{item.mobileNumber}</div>
</TableCell>
<TableCell>
<div className="font-semibold text-base truncate">
{item.name}
</div>
<div className="text-xs text-muted-foreground">
{item.mobileNumber}
</div>
<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 font-medium">
{item.doctor?.name || "-"}
</div>
<div className="text-[10px] text-muted-foreground truncate">
{item.department?.name}
</div>
<div className="text-sm">{new Date(item.date).toLocaleDateString()}</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>
<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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openView(item)}>
<Eye className="h-4 w-4" />
</Button>
<Button
@@ -327,12 +248,9 @@ export default function AppointmentPage() {
{!loading && totalItems > 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(currentPage * itemsPerPage, totalItems)}
</span>{" "}
of <span className="font-semibold">{totalItems}</span>
Showing <span className="font-semibold">{indexOfFirstItem + 1}</span> to{' '}
<span className="font-semibold">{Math.min(currentPage * itemsPerPage, totalItems)}</span> of{' '}
<span className="font-semibold">{totalItems}</span>
</div>
<div className="flex items-center gap-6">
<div className="text-base font-semibold">
@@ -343,9 +261,7 @@ export default function AppointmentPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -354,9 +270,7 @@ export default function AppointmentPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -371,33 +285,21 @@ export default function AppointmentPage() {
<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>
<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-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>
<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-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>
@@ -405,22 +307,14 @@ export default function AppointmentPage() {
</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>
<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-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."}
{viewData.message || 'No message provided.'}
</p>
</div>
</div>
@@ -428,10 +322,7 @@ export default function AppointmentPage() {
</div>
)}
<DialogFooter>
<Button
onClick={() => setViewOpen(false)}
className="w-full md:w-auto"
>
<Button onClick={() => setViewOpen(false)} className="w-full md:w-auto">
Close
</Button>
</DialogFooter>
+21 -47
View File
@@ -1,23 +1,16 @@
import {useState, useEffect, useCallback} from "react";
import {AxiosError} from "axios";
import {useNavigate} from "react-router-dom";
import { useState, useEffect, useCallback } from 'react';
import { AxiosError } from 'axios';
import { useNavigate } from 'react-router-dom';
import {getAllBlogsApi, deleteBlogApi} from "@/api/blog";
import { getAllBlogsApi, deleteBlogApi } from '@/api/blog';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import {Loader2, RefreshCw, Plus, Pencil, Trash, Eye} from "lucide-react";
import { Loader2, RefreshCw, Plus, Pencil, Trash, Eye } from 'lucide-react';
interface Blog {
id: number;
@@ -29,14 +22,14 @@ interface Blog {
export default function BlogPage() {
const [blogs, setBlogs] = useState<Blog[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState("");
const [searchText, setSearchText] = useState("");
const [error, setError] = useState('');
const [searchText, setSearchText] = useState('');
const navigate = useNavigate();
const fetchBlogs = useCallback(async () => {
setLoading(true);
setError("");
setError('');
try {
const res = await getAllBlogsApi();
@@ -48,9 +41,9 @@ export default function BlogPage() {
}
} catch (err) {
if (err instanceof AxiosError) {
setError(err.response?.data?.message || "Failed to load blogs");
setError(err.response?.data?.message || 'Failed to load blogs');
} else {
setError("Something went wrong");
setError('Something went wrong');
}
} finally {
setLoading(false);
@@ -64,14 +57,11 @@ export default function BlogPage() {
const filteredBlogs = blogs.filter((b) => {
const text = searchText.toLowerCase();
return (
b.title?.toLowerCase().includes(text) ||
b.writer?.toLowerCase().includes(text)
);
return b.title?.toLowerCase().includes(text) || b.writer?.toLowerCase().includes(text);
});
async function handleDelete(id: number) {
const confirmDelete = confirm("Delete this blog?");
const confirmDelete = confirm('Delete this blog?');
if (!confirmDelete) return;
try {
@@ -100,18 +90,14 @@ export default function BlogPage() {
Refresh
</Button>
<Button onClick={() => navigate("/blog/create")}>
<Button onClick={() => navigate('/blog/create')}>
<Plus className="mr-2 h-4 w-4" />
Add Blog
</Button>
</div>
</div>
{error && (
<div className="p-4 text-red-600 bg-red-50 border rounded-md">
{error}
</div>
)}
{error && <div className="p-4 text-red-600 bg-red-50 border rounded-md">{error}</div>}
<Card>
<CardHeader>
@@ -153,26 +139,14 @@ export default function BlogPage() {
<TableCell>{blog.writer}</TableCell>
<TableCell className="flex gap-2">
<Button
size="sm"
variant="outline"
onClick={() => navigate(`/blog/edit/${blog.id}`)}
>
<Button size="sm" variant="outline" onClick={() => navigate(`/blog/edit/${blog.id}`)}>
<Pencil className="h-4 w-4" />
</Button>
<Button
size="sm"
variant="secondary"
onClick={() => navigate(`/blog/${blog.id}`)}
>
<Button size="sm" variant="secondary" onClick={() => navigate(`/blog/${blog.id}`)}>
<Eye className="h-4 w-4" />
</Button>
<Button
size="sm"
variant="destructive"
onClick={() => handleDelete(blog.id)}
>
<Button size="sm" variant="destructive" onClick={() => handleDelete(blog.id)}>
<Trash className="h-4 w-4" />
</Button>
</TableCell>
+30 -64
View File
@@ -1,26 +1,22 @@
import React, {useEffect, useState} from "react";
import {useParams, useNavigate} from "react-router-dom";
import React, { useEffect, useState } from 'react';
import { useParams, useNavigate } from 'react-router-dom';
import {Button} from "@/components/ui/button";
import {getBlogByIdApi} from "@/api/blog";
import { Button } from '@/components/ui/button';
import { getBlogByIdApi } from '@/api/blog';
/* ---------------- LIST RENDERER ---------------- */
const renderList = (items, style) => {
// ✅ Checklist
if (style === "checklist") {
if (style === 'checklist') {
return (
<div className="mb-4 space-y-2">
{items.map((item, i) => (
<div key={i} className="flex items-center gap-2">
<input
type="checkbox"
checked={item.meta?.checked || false}
readOnly
/>
<input type="checkbox" checked={item.meta?.checked || false} readOnly />
<span
className={item.meta?.checked ? "line-through opacity-60" : ""}
className={item.meta?.checked ? 'line-through opacity-60' : ''}
dangerouslySetInnerHTML={{
__html: item.content || "",
__html: item.content || '',
}}
/>
</div>
@@ -30,14 +26,10 @@ const renderList = (items, style) => {
}
// ✅ Ordered / Unordered
const ListTag = style === "ordered" ? "ol" : "ul";
const ListTag = style === 'ordered' ? 'ol' : 'ul';
return (
<ListTag
className={`pl-6 mb-4 ${
style === "ordered" ? "list-decimal" : "list-disc"
}`}
>
<ListTag className={`pl-6 mb-4 ${style === 'ordered' ? 'list-decimal' : 'list-disc'}`}>
{items
.filter((item) => item.content)
.map((item, i) => (
@@ -57,60 +49,44 @@ const renderList = (items, style) => {
/* ---------------- BLOCK RENDERER ---------------- */
const renderBlock = (block, index) => {
switch (block.type) {
case "paragraph":
case 'paragraph':
return (
<p
key={index}
className="mb-4 leading-7 text-gray-800"
dangerouslySetInnerHTML={{__html: block.data.text}}
/>
<p key={index} className="mb-4 leading-7 text-gray-800" dangerouslySetInnerHTML={{ __html: block.data.text }} />
);
case "header":
case 'header':
return (
<h2
key={index}
className="text-2xl font-semibold mb-4"
dangerouslySetInnerHTML={{__html: block.data.text}}
/>
<h2 key={index} className="text-2xl font-semibold mb-4" dangerouslySetInnerHTML={{ __html: block.data.text }} />
);
case "image":
case 'image':
return (
<img
key={index}
src={block.data.file?.url}
alt={block.data.caption || "blog-image"}
alt={block.data.caption || 'blog-image'}
className="w-full rounded-lg mb-4"
/>
);
case "list":
return (
<div key={index}>{renderList(block.data.items, block.data.style)}</div>
);
case 'list':
return <div key={index}>{renderList(block.data.items, block.data.style)}</div>;
case "quote":
case 'quote':
return (
<blockquote
key={index}
className="border-l-4 border-gray-300 pl-4 italic my-4 text-gray-600"
>
<blockquote key={index} className="border-l-4 border-gray-300 pl-4 italic my-4 text-gray-600">
{block.data.text}
</blockquote>
);
case "code":
case 'code':
return (
<pre
key={index}
className="bg-gray-100 p-4 rounded-md overflow-x-auto text-sm mb-4"
>
<pre key={index} className="bg-gray-100 p-4 rounded-md overflow-x-auto text-sm mb-4">
<code>{block.data.code}</code>
</pre>
);
case "table":
case 'table':
return (
<div key={index} className="overflow-x-auto mb-6">
<table className="w-full border border-gray-200">
@@ -133,7 +109,7 @@ const renderBlock = (block, index) => {
</div>
);
case "delimiter":
case 'delimiter':
return <hr key={index} className="my-6 border-gray-300" />;
default:
@@ -143,17 +119,17 @@ const renderBlock = (block, index) => {
/* ---------------- MAIN COMPONENT ---------------- */
const BlogDetail = () => {
const {id} = useParams();
const { id } = useParams();
const navigate = useNavigate();
const [blog, setBlog] = useState(null);
const fetchBlog = async () => {
try {
const res = await getBlogByIdApi(Number(id));
console.log({res});
console.log({ res });
setBlog(res);
} catch (err) {
console.error("Error fetching blog", err);
console.error('Error fetching blog', err);
}
};
@@ -168,11 +144,7 @@ const BlogDetail = () => {
return (
<div className="mx-auto flex flex-col ">
{/* Back Button */}
<Button
variant="ghost"
className="mb-4 w-fit text-black px-0"
onClick={() => navigate(-1)}
>
<Button variant="ghost" className="mb-4 w-fit text-black px-0" onClick={() => navigate(-1)}>
Back
</Button>
@@ -186,17 +158,11 @@ const BlogDetail = () => {
{/* Image (only if exists) */}
{blog.image?.trim() && (
<img
src={blog.image}
alt="blog"
className="w-full h-[220px] md:h-[400px] object-cover rounded-lg mb-6"
/>
<img src={blog.image} alt="blog" className="w-full h-[220px] md:h-[400px] object-cover rounded-lg mb-6" />
)}
{/* Content */}
<div>
{blog.content?.blocks?.map((block, index) => renderBlock(block, index))}
</div>
<div>{blog.content?.blocks?.map((block, index) => renderBlock(block, index))}</div>
</div>
);
};
+46 -75
View File
@@ -1,40 +1,35 @@
import {useEffect, useRef, useState} from "react";
import {useNavigate, useParams} from "react-router-dom";
import {BytescaleUploader} from "@/components/BytescaleUploader/BytescaleUploader";
import EditorJS, {OutputData} from "@editorjs/editorjs";
import Header from "@editorjs/header";
import List from "@editorjs/list";
import ImageTool from "@editorjs/image";
import Quote from "@editorjs/quote";
import Table from "@editorjs/table";
import CodeTool from "@editorjs/code";
import Embed from "@editorjs/embed";
import Delimiter from "@editorjs/delimiter";
import axios from "axios";
import { useEffect, useRef, useState } from 'react';
import { useNavigate, useParams } from 'react-router-dom';
import { BytescaleUploader } from '@/components/BytescaleUploader/BytescaleUploader';
import EditorJS, { OutputData } from '@editorjs/editorjs';
import Header from '@editorjs/header';
import List from '@editorjs/list';
import ImageTool from '@editorjs/image';
import Quote from '@editorjs/quote';
import Table from '@editorjs/table';
import CodeTool from '@editorjs/code';
import Embed from '@editorjs/embed';
import Delimiter from '@editorjs/delimiter';
import axios from 'axios';
import {
createBlogApi,
updateBlogApi,
getBlogByIdApi,
uploadImageApi,
} from "@/api/blog";
import { createBlogApi, updateBlogApi, getBlogByIdApi, uploadImageApi } from '@/api/blog';
import {Card, CardContent, CardHeader, CardTitle} from "@/components/ui/card";
import {Input} from "@/components/ui/input";
import {Button} from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Input } from '@/components/ui/input';
import { Button } from '@/components/ui/button';
export default function BlogEditorPage() {
const baseURL = import.meta.env.VITE_API_URL;
const {id} = useParams();
const { id } = useParams();
const navigate = useNavigate();
const editorRef = useRef<EditorJS | null>(null);
const hasInitialized = useRef(false);
const hasRenderedContent = useRef(false);
const [title, setTitle] = useState("");
const [writer, setWriter] = useState("");
const [coverImage, setCoverImage] = useState("");
const [title, setTitle] = useState('');
const [writer, setWriter] = useState('');
const [coverImage, setCoverImage] = useState('');
const [loading, setLoading] = useState(false);
const isEdit = Boolean(id);
@@ -47,16 +42,16 @@ export default function BlogEditorPage() {
const initEditor = async () => {
editor = new EditorJS({
holder: "editorjs",
holder: 'editorjs',
placeholder: "Write blog content...",
placeholder: 'Write blog content...',
tools: {
header: {
class: Header,
inlineToolbar: true,
config: {
placeholder: "Enter heading",
placeholder: 'Enter heading',
levels: [1, 2, 3, 4],
defaultLevel: 2,
},
@@ -66,7 +61,7 @@ export default function BlogEditorPage() {
class: List,
inlineToolbar: true,
config: {
defaultStyle: "unordered",
defaultStyle: 'unordered',
},
},
@@ -82,38 +77,33 @@ export default function BlogEditorPage() {
uploader: {
uploadByFile: async (file: File) => {
if (file.size > 5 * 1024 * 1024) {
alert("File is too large (Max 5MB)");
return {success: 0, file: {url: ""}};
alert('File is too large (Max 5MB)');
return { success: 0, file: { url: '' } };
}
const formData = new FormData();
formData.append("file", file);
formData.append("folderPath", "/blog");
formData.append('file', file);
formData.append('folderPath', '/blog');
try {
const response = await axios.post(
`${baseURL}/upload`,
formData,
{
headers: {
"Content-Type": "multipart/form-data",
},
const response = await axios.post(`${baseURL}/upload`, formData, {
headers: {
'Content-Type': 'multipart/form-data',
},
);
});
return {
success: 1,
file: {url: response.data.fileUrl},
file: { url: response.data.fileUrl },
};
} catch (e: any) {
console.error("EditorJS Image Upload Error:", e);
const errorMessage =
e.response?.data?.error || e.message || "Upload failed";
console.error('EditorJS Image Upload Error:', e);
const errorMessage = e.response?.data?.error || e.message || 'Upload failed';
alert(`Upload Error: ${errorMessage}`);
return {
success: 0,
file: {url: ""},
file: { url: '' },
};
}
},
@@ -132,7 +122,7 @@ export default function BlogEditorPage() {
setTitle(res.title);
setWriter(res.writer);
setCoverImage(res.image || "");
setCoverImage(res.image || '');
if (res.content) {
await editor.blocks.clear();
@@ -170,7 +160,7 @@ export default function BlogEditorPage() {
await createBlogApi(payload);
}
navigate("/blog");
navigate('/blog');
} catch (err) {
console.error(err);
} finally {
@@ -182,47 +172,28 @@ export default function BlogEditorPage() {
<div className="p-6 max-w-5xl mx-auto space-y-6">
<Card>
<CardHeader>
<CardTitle>{isEdit ? "Edit Blog" : "Create Blog"}</CardTitle>
<CardTitle>{isEdit ? 'Edit Blog' : 'Create Blog'}</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<Input
placeholder="Blog Title"
value={title}
onChange={(e) => setTitle(e.target.value)}
/>
<Input placeholder="Blog Title" value={title} onChange={(e) => setTitle(e.target.value)} />
<Input
placeholder="Writer Name"
value={writer}
onChange={(e) => setWriter(e.target.value)}
/>
<Input placeholder="Writer Name" value={writer} onChange={(e) => setWriter(e.target.value)} />
<div className="space-y-2">
<label className="text-sm font-medium">Cover Image</label>
<BytescaleUploader
value={coverImage}
folderPath="/blog"
onChange={(url) => setCoverImage(url)}
/>
<BytescaleUploader value={coverImage} folderPath="/blog" onChange={(url) => setCoverImage(url)} />
{coverImage && (
<img
src={coverImage}
alt="cover"
className="w-full max-h-[250px] object-cover rounded-md"
/>
<img src={coverImage} alt="cover" className="w-full max-h-[250px] object-cover rounded-md" />
)}
</div>
<div
id="editorjs"
className="border rounded-md p-4 bg-white min-h-[300px]"
/>
<div id="editorjs" className="border rounded-md p-4 bg-white min-h-[300px]" />
<Button onClick={handleSave} disabled={loading}>
{loading ? "Saving..." : "Save Blog"}
{loading ? 'Saving...' : 'Save Blog'}
</Button>
</CardContent>
</Card>
+61 -137
View File
@@ -1,39 +1,19 @@
import { useState, useEffect, useCallback } from "react";
import { useState, useEffect, useCallback } from 'react';
import { getCareersApi, updateCareerApi, createCareerApi } from "@/api/career";
import { getCareersApi, updateCareerApi, createCareerApi } from '@/api/career';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import { Input } from "@/components/ui/input";
import { Badge } from "@/components/ui/badge";
import { Switch } from "@/components/ui/switch";
import { Label } from "@/components/ui/label";
import { Input } from '@/components/ui/input';
import { Badge } from '@/components/ui/badge';
import { Switch } from '@/components/ui/switch';
import { Label } from '@/components/ui/label';
import {
Loader2,
Plus,
Pencil,
RefreshCw,
ChevronLeft,
ChevronRight,
} from "lucide-react";
import { Loader2, Plus, Pencil, RefreshCw, ChevronLeft, ChevronRight } from 'lucide-react';
export default function CareerPage() {
const [careers, setCareers] = useState<any[]>([]);
@@ -42,19 +22,19 @@ export default function CareerPage() {
const [openModal, setOpenModal] = useState(false);
const [editing, setEditing] = useState<any>(null);
const [searchText, setSearchText] = useState("");
const [searchText, setSearchText] = useState('');
const [currentPage, setCurrentPage] = useState(1);
const itemsPerPage = 10;
const [form, setForm] = useState({
post: "",
designation: "",
qualification: "",
experienceNeed: "",
email: "",
number: "",
status: "new",
post: '',
designation: '',
qualification: '',
experienceNeed: '',
email: '',
number: '',
status: 'new',
isActive: true,
sortOrder: 0,
});
@@ -78,7 +58,7 @@ export default function CareerPage() {
const filteredCareers = careers.filter(
(item) =>
item.post?.toLowerCase().includes(searchText.toLowerCase()) ||
item.designation?.toLowerCase().includes(searchText.toLowerCase()),
item.designation?.toLowerCase().includes(searchText.toLowerCase())
);
useEffect(() => {
@@ -102,20 +82,20 @@ export default function CareerPage() {
} as any);
fetchAll();
} catch (error) {
console.error("Failed to toggle status", error);
console.error('Failed to toggle status', error);
}
};
function openAdd() {
setEditing(null);
setForm({
post: "",
designation: "",
qualification: "",
experienceNeed: "",
email: "",
number: "",
status: "new",
post: '',
designation: '',
qualification: '',
experienceNeed: '',
email: '',
number: '',
status: 'new',
isActive: true,
sortOrder: 0,
});
@@ -125,13 +105,13 @@ export default function CareerPage() {
function openEdit(item: any) {
setEditing(item);
setForm({
post: item.post || "",
designation: item.designation || "",
qualification: item.qualification || "",
experienceNeed: item.experienceNeed || "",
email: item.email || "",
number: item.number || "",
status: item.status || "new",
post: item.post || '',
designation: item.designation || '',
qualification: item.qualification || '',
experienceNeed: item.experienceNeed || '',
email: item.email || '',
number: item.number || '',
status: item.status || 'new',
isActive: item.isActive ?? true,
sortOrder: item.sortOrder ?? 0,
});
@@ -166,12 +146,7 @@ export default function CareerPage() {
className="w-[250px] text-base"
/>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -193,24 +168,12 @@ export default function CareerPage() {
<Table className="w-full min-w-[800px] 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 text-sm">
Priority
</TableHead>
<TableHead className="w-[250px] 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-[80px] bg-background font-bold text-sm">
Status (Active)
</TableHead>
<TableHead className="w-[80px] bg-background font-bold text-right text-sm">
Actions
</TableHead>
<TableHead className="w-[80px] bg-background font-bold text-sm">Priority</TableHead>
<TableHead className="w-[250px] 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-[80px] bg-background font-bold text-sm">Status (Active)</TableHead>
<TableHead className="w-[80px] bg-background font-bold text-right text-sm">Actions</TableHead>
</TableRow>
</TableHeader>
@@ -223,58 +186,34 @@ export default function CareerPage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={6}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={6} className="text-center text-muted-foreground py-10 text-base">
No careers found
</TableCell>
</TableRow>
) : (
currentItems.map((item) => (
<TableRow key={item.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.sortOrder}
<TableCell className="font-mono text-xs">{item.sortOrder}</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="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}
<div className="text-sm line-clamp-2">{item.qualification}</div>
</TableCell>
<TableCell className="text-sm">{item.experienceNeed}</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<Switch
checked={item.isActive}
onCheckedChange={() => handleToggleStatus(item)}
/>
<Badge
variant={item.isActive ? "default" : "secondary"}
className="capitalize"
>
{item.isActive ? "Active" : "Hidden"}
<Switch checked={item.isActive} onCheckedChange={() => handleToggleStatus(item)} />
<Badge variant={item.isActive ? 'default' : 'secondary'} className="capitalize">
{item.isActive ? 'Active' : 'Hidden'}
</Badge>
</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(item)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openEdit(item)}>
<Pencil className="h-4 w-4" />
</Button>
</div>
@@ -289,14 +228,9 @@ export default function CareerPage() {
{!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
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">
@@ -307,9 +241,7 @@ export default function CareerPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -318,9 +250,7 @@ export default function CareerPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -335,9 +265,7 @@ export default function CareerPage() {
<Dialog open={openModal} onOpenChange={setOpenModal}>
<DialogContent className="w-full max-w-lg">
<DialogHeader>
<DialogTitle className="text-2xl">
{editing ? "Edit Career" : "Add New Career"}
</DialogTitle>
<DialogTitle className="text-2xl">{editing ? 'Edit Career' : 'Add New Career'}</DialogTitle>
</DialogHeader>
<div className="space-y-4 py-4">
@@ -420,15 +348,11 @@ export default function CareerPage() {
</div>
<DialogFooter className="pt-4 border-t">
<Button
variant="ghost"
onClick={() => setOpenModal(false)}
className="text-base"
>
<Button variant="ghost" onClick={() => setOpenModal(false)} className="text-base">
Cancel
</Button>
<Button onClick={handleSubmit} className="px-8 text-base">
{editing ? "Save Changes" : "Create Career"}
{editing ? 'Save Changes' : 'Create Career'}
</Button>
</DialogFooter>
</DialogContent>
+76 -197
View File
@@ -1,48 +1,23 @@
import {useState, useEffect, useCallback} from "react";
import {AxiosError} from "axios";
import {BytescaleUploader} from "@/components/BytescaleUploader/BytescaleUploader";
import { useState, useEffect, useCallback } from 'react';
import { AxiosError } from 'axios';
import { BytescaleUploader } from '@/components/BytescaleUploader/BytescaleUploader';
import {
getDepartmentsApi,
createDepartmentApi,
updateDepartmentApi,
} from "@/api/department";
import { getDepartmentsApi, createDepartmentApi, updateDepartmentApi } from '@/api/department';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import {Input} from "@/components/ui/input";
import {Textarea} from "@/components/ui/textarea";
import {Switch} from "@/components/ui/switch";
import {Label} from "@/components/ui/label";
import {Badge} from "@/components/ui/badge";
import { Input } from '@/components/ui/input';
import { Textarea } from '@/components/ui/textarea';
import { Switch } from '@/components/ui/switch';
import { Label } from '@/components/ui/label';
import { Badge } from '@/components/ui/badge';
import {
Loader2,
RefreshCw,
Plus,
Pencil,
Eye,
ChevronLeft,
ChevronRight,
} from "lucide-react";
import { Loader2, RefreshCw, Plus, Pencil, Eye, ChevronLeft, ChevronRight } from 'lucide-react';
interface Department {
departmentId: string;
@@ -60,7 +35,7 @@ interface Department {
export default function DepartmentPage() {
const [departments, setDepartments] = useState<Department[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState("");
const [error, setError] = useState('');
const [openModal, setOpenModal] = useState(false);
const [editing, setEditing] = useState<Department | null>(null);
@@ -68,36 +43,36 @@ export default function DepartmentPage() {
const [viewOpen, setViewOpen] = useState(false);
const [viewData, setViewData] = useState<Department | null>(null);
const [searchText, setSearchText] = useState("");
const [searchText, setSearchText] = useState('');
const [currentPage, setCurrentPage] = useState(1);
const itemsPerPage = 10;
const [form, setForm] = useState<Department>({
departmentId: "",
name: "",
image: "",
para1: "",
para2: "",
para3: "",
facilities: "",
services: "",
departmentId: '',
name: '',
image: '',
para1: '',
para2: '',
para3: '',
facilities: '',
services: '',
isActive: true,
sortOrder: 0,
});
const fetchDepartments = useCallback(async () => {
setLoading(true);
setError("");
setError('');
try {
const res = await getDepartmentsApi();
setDepartments(res?.data || []);
} catch (err) {
if (err instanceof AxiosError) {
setError(err.response?.data?.message || "Failed to load departments");
setError(err.response?.data?.message || 'Failed to load departments');
} else {
setError("Something went wrong");
setError('Something went wrong');
}
} finally {
setLoading(false);
@@ -111,7 +86,7 @@ export default function DepartmentPage() {
const filteredDepartments = departments.filter(
(dep) =>
dep.name.toLowerCase().includes(searchText.toLowerCase()) ||
dep.departmentId.toLowerCase().includes(searchText.toLowerCase()),
dep.departmentId.toLowerCase().includes(searchText.toLowerCase())
);
useEffect(() => {
@@ -121,41 +96,37 @@ export default function DepartmentPage() {
const totalPages = Math.ceil(filteredDepartments.length / itemsPerPage);
const indexOfLastItem = currentPage * itemsPerPage;
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
const currentItems = filteredDepartments.slice(
indexOfFirstItem,
indexOfLastItem,
);
const currentItems = filteredDepartments.slice(indexOfFirstItem, indexOfLastItem);
function handleChange(e: any) {
const value =
e.target.type === "number" ? Number(e.target.value) : e.target.value;
setForm({...form, [e.target.name]: value});
const value = e.target.type === 'number' ? Number(e.target.value) : e.target.value;
setForm({ ...form, [e.target.name]: value });
}
const handleToggleStatus = async (dep: Department) => {
try {
const {departmentId, ...updateData} = dep;
const { departmentId, ...updateData } = dep;
await updateDepartmentApi(departmentId, {
...updateData,
isActive: !dep.isActive,
} as any);
fetchDepartments();
} catch (error) {
console.error("Failed to toggle status", error);
console.error('Failed to toggle status', error);
}
};
function openAdd() {
setEditing(null);
setForm({
departmentId: "",
name: "",
image: "",
para1: "",
para2: "",
para3: "",
facilities: "",
services: "",
departmentId: '',
name: '',
image: '',
para1: '',
para2: '',
para3: '',
facilities: '',
services: '',
isActive: true,
sortOrder: 0,
});
@@ -180,7 +151,7 @@ export default function DepartmentPage() {
async function handleSubmit() {
try {
if (editing) {
const {departmentId, ...updateData} = form;
const { departmentId, ...updateData } = form;
await updateDepartmentApi(editing.departmentId, form as any);
} else {
await createDepartmentApi(form);
@@ -206,12 +177,7 @@ export default function DepartmentPage() {
className="w-[250px] text-base"
/>
<Button
variant="outline"
onClick={fetchDepartments}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchDepartments} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -223,11 +189,7 @@ export default function DepartmentPage() {
</div>
</div>
{error && (
<div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">
{error}
</div>
)}
{error && <div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">{error}</div>}
<Card>
<CardHeader>
@@ -239,18 +201,10 @@ export default function DepartmentPage() {
<Table className="w-full min-w-[700px] table-fixed border-separate border-spacing-0">
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
<TableRow>
<TableHead className="w-[100px] bg-background text-sm font-bold">
Priority
</TableHead>
<TableHead className="w-[300px] bg-background text-sm font-bold">
Name
</TableHead>
<TableHead className="w-[80px] bg-background text-sm font-bold">
Status (Active)
</TableHead>
<TableHead className="w-[80px] bg-background text-right text-sm font-bold">
Actions
</TableHead>
<TableHead className="w-[100px] bg-background text-sm font-bold">Priority</TableHead>
<TableHead className="w-[300px] bg-background text-sm font-bold">Name</TableHead>
<TableHead className="w-[80px] bg-background text-sm font-bold">Status (Active)</TableHead>
<TableHead className="w-[80px] bg-background text-right text-sm font-bold">Actions</TableHead>
</TableRow>
</TableHeader>
@@ -263,65 +217,37 @@ export default function DepartmentPage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={4}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={4} className="text-center text-muted-foreground py-10 text-base">
No departments found
</TableCell>
</TableRow>
) : (
currentItems.map((dep) => (
<TableRow
key={dep.departmentId}
className="hover:bg-muted/50"
>
<TableCell className="font-mono text-sm">
{dep.sortOrder}
</TableCell>
<TableRow key={dep.departmentId} className="hover:bg-muted/50">
<TableCell className="font-mono text-sm">{dep.sortOrder}</TableCell>
<TableCell>
<div
className="font-semibold text-base truncate"
title={dep.name}
>
<div className="font-semibold text-base truncate" title={dep.name}>
{dep.name}
</div>
<div className="text-xs text-muted-foreground">
{dep.departmentId}
</div>
<div className="text-xs text-muted-foreground">{dep.departmentId}</div>
</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<Switch
checked={dep.isActive}
onCheckedChange={() => handleToggleStatus(dep)}
/>
<Badge
variant={dep.isActive ? "default" : "secondary"}
>
{dep.isActive ? "Active" : "Hidden"}
<Switch checked={dep.isActive} onCheckedChange={() => handleToggleStatus(dep)} />
<Badge variant={dep.isActive ? 'default' : 'secondary'}>
{dep.isActive ? 'Active' : 'Hidden'}
</Badge>
</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)}
>
<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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openEdit(dep)}>
<Pencil className="h-4 w-4" />
</Button>
</div>
@@ -336,16 +262,9 @@ export default function DepartmentPage() {
{!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
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">
@@ -356,9 +275,7 @@ export default function DepartmentPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -367,9 +284,7 @@ export default function DepartmentPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -384,9 +299,7 @@ export default function DepartmentPage() {
<Dialog open={openModal} onOpenChange={setOpenModal}>
<DialogContent className="w-full !max-w-5xl max-h-[90vh] overflow-y-auto">
<DialogHeader>
<DialogTitle>
{editing ? "Edit Department" : "Add Department"}
</DialogTitle>
<DialogTitle>{editing ? 'Edit Department' : 'Add Department'}</DialogTitle>
</DialogHeader>
<div className="space-y-4">
@@ -395,7 +308,7 @@ export default function DepartmentPage() {
<BytescaleUploader
value={form.image}
folderPath="/departments"
onChange={(url) => setForm({...form, image: url})}
onChange={(url) => setForm({ ...form, image: url })}
/>
</div>
<Input
@@ -406,43 +319,13 @@ export default function DepartmentPage() {
placeholder="Department ID"
/>
<Input
name="name"
value={form.name}
onChange={handleChange}
placeholder="Department Name"
/>
<Input name="name" value={form.name} onChange={handleChange} placeholder="Department Name" />
<Textarea
name="para1"
value={form.para1}
onChange={handleChange}
placeholder="Para1"
/>
<Textarea
name="para2"
value={form.para2}
onChange={handleChange}
placeholder="Para2"
/>
<Textarea
name="para3"
value={form.para3}
onChange={handleChange}
placeholder="Para3"
/>
<Textarea
name="facilities"
value={form.facilities}
onChange={handleChange}
placeholder="Facilities"
/>
<Textarea
name="services"
value={form.services}
onChange={handleChange}
placeholder="Services"
/>
<Textarea name="para1" value={form.para1} onChange={handleChange} placeholder="Para1" />
<Textarea name="para2" value={form.para2} onChange={handleChange} placeholder="Para2" />
<Textarea name="para3" value={form.para3} onChange={handleChange} placeholder="Para3" />
<Textarea name="facilities" value={form.facilities} onChange={handleChange} placeholder="Facilities" />
<Textarea name="services" value={form.services} onChange={handleChange} placeholder="Services" />
<div className="grid grid-cols-1 md:grid-cols-2 gap-4 border-t pt-4">
<div className="flex items-center justify-between p-3 border rounded-md">
@@ -452,13 +335,11 @@ export default function DepartmentPage() {
<Switch
id="isActive"
checked={form.isActive}
onCheckedChange={(val) => setForm({...form, isActive: val})}
onCheckedChange={(val) => setForm({ ...form, isActive: val })}
/>
</div>
<div className="space-y-1">
<Label htmlFor="sortOrder">
Sort Priority (Lower numbers show first)
</Label>
<Label htmlFor="sortOrder">Sort Priority (Lower numbers show first)</Label>
<Input
id="sortOrder"
name="sortOrder"
@@ -475,9 +356,7 @@ export default function DepartmentPage() {
<Button variant="outline" onClick={() => setOpenModal(false)}>
Cancel
</Button>
<Button onClick={handleSubmit}>
{editing ? "Save Changes" : "Create"}
</Button>
<Button onClick={handleSubmit}>{editing ? 'Save Changes' : 'Create'}</Button>
</DialogFooter>
</DialogContent>
</Dialog>
@@ -490,8 +369,8 @@ export default function DepartmentPage() {
{viewData && (
<div className="space-y-4 text-sm">
<div className="flex gap-4 items-center border-b pb-4">
<Badge variant={viewData.isActive ? "default" : "secondary"}>
{viewData.isActive ? "ACTIVE" : "HIDDEN"}
<Badge variant={viewData.isActive ? 'default' : 'secondary'}>
{viewData.isActive ? 'ACTIVE' : 'HIDDEN'}
</Badge>
<p>
<b>Sort Order:</b> {viewData.sortOrder}
File diff suppressed because it is too large Load Diff
+127 -293
View File
@@ -1,6 +1,6 @@
import { useState, useEffect, useCallback, useMemo } from "react";
import toast from "react-hot-toast";
import { AxiosError } from "axios";
import { useState, useEffect, useCallback, useMemo } from 'react';
import toast from 'react-hot-toast';
import { AxiosError } from 'axios';
import {
getHealthPackagesApi,
@@ -11,52 +11,30 @@ import {
updateCategoryApi,
HealthPackage,
HealthCategory,
} from "@/api/healthCheck";
} from '@/api/healthCheck';
import PackageInquiriesTab from "@/components/PackageInquiriesTab/PackageInquiriesTab";
import HealthPackageModal from "@/components/HealthPackageModal/HealthPackageModal";
import SeoPreview from "@/components/SeoPreview/SeoPreview";
import PackageInquiriesTab from '@/components/PackageInquiriesTab/PackageInquiriesTab';
import HealthPackageModal from '@/components/HealthPackageModal/HealthPackageModal';
import SeoPreview from '@/components/SeoPreview/SeoPreview';
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import { Badge } from "@/components/ui/badge";
import { Switch } from "@/components/ui/switch";
import { Label } from "@/components/ui/label";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
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 { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import { Input } from '@/components/ui/input';
import { Badge } from '@/components/ui/badge';
import { Switch } from '@/components/ui/switch';
import { Label } from '@/components/ui/label';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
import {
Loader2,
RefreshCw,
Plus,
Pencil,
ChevronLeft,
ChevronRight,
LayoutGrid,
Eye,
} from "lucide-react";
import { Loader2, RefreshCw, Plus, Pencil, ChevronLeft, ChevronRight, LayoutGrid, Eye } from 'lucide-react';
export default function HealthPackagePage() {
const WEBSITE_URL = import.meta.env.VITE_WEBSITE_URL;
const [packages, setPackages] = useState<HealthPackage[]>([]);
const [categories, setCategories] = useState<HealthCategory[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState("");
const [error, setError] = useState('');
// Modals
const [packageModal, setPackageModal] = useState(false);
@@ -64,68 +42,57 @@ export default function HealthPackagePage() {
const [viewModal, setViewModal] = useState(false);
// States
const [selectedPackage, setSelectedPackage] = useState<HealthPackage | null>(
null,
);
const [editingPackage, setEditingPackage] = useState<HealthPackage | null>(
null,
);
const [editingCategory, setEditingCategory] = useState<HealthCategory | null>(
null,
);
const [selectedPackage, setSelectedPackage] = useState<HealthPackage | null>(null);
const [editingPackage, setEditingPackage] = useState<HealthPackage | null>(null);
const [editingCategory, setEditingCategory] = useState<HealthCategory | null>(null);
// Filters & Pagination
const [searchText, setSearchText] = useState("");
const [filterCategory, setFilterCategory] = useState("");
const [searchText, setSearchText] = useState('');
const [filterCategory, setFilterCategory] = useState('');
const [currentPage, setCurrentPage] = useState(1);
const itemsPerPage = 10;
// Forms
const [pkgForm, setPkgForm] = useState<Partial<HealthPackage>>({
name: "",
slug: "",
description: "",
image: "",
name: '',
slug: '',
description: '',
image: '',
price: undefined,
discountedPrice: undefined,
categoryId: 0,
isActive: true,
sortOrder: 1000,
seo: {
seoTitle: "",
metaDescription: "",
focusKeyphrase: "",
seoTitle: '',
metaDescription: '',
focusKeyphrase: '',
tags: [],
ogTitle: "",
ogDescription: "",
ogImage: "",
ogTitle: '',
ogDescription: '',
ogImage: '',
},
});
const [inclusionsList, setInclusionsList] = useState([
{ id: Date.now(), category: "", items: "" },
]);
const [inclusionsList, setInclusionsList] = useState([{ id: Date.now(), category: '', items: '' }]);
const [catForm, setCatForm] = useState({
name: "",
slug: "",
name: '',
slug: '',
sortOrder: 1000,
isActive: true,
});
const fetchData = useCallback(async () => {
setLoading(true);
setError("");
setError('');
try {
const [p, c] = await Promise.all([
getHealthPackagesApi(),
getHealthCategoriesApi(),
]);
const [p, c] = await Promise.all([getHealthPackagesApi(), getHealthCategoriesApi()]);
setPackages(p.data || []);
setCategories(c.data || []);
} catch (err) {
if (err instanceof AxiosError) {
setError(err.response?.data?.message || "Failed to load data");
setError(err.response?.data?.message || 'Failed to load data');
} else {
setError("Something went wrong");
setError('Something went wrong');
}
} finally {
setLoading(false);
@@ -142,9 +109,7 @@ export default function HealthPackagePage() {
const matchesSearch =
pkg.name.toLowerCase().includes(searchText.toLowerCase()) ||
pkg.category?.name.toLowerCase().includes(searchText.toLowerCase());
const matchesCat = filterCategory
? pkg.categoryId === Number(filterCategory)
: true;
const matchesCat = filterCategory ? pkg.categoryId === Number(filterCategory) : true;
return matchesSearch && matchesCat;
});
}, [packages, searchText, filterCategory]);
@@ -156,71 +121,64 @@ export default function HealthPackagePage() {
const totalPages = Math.ceil(filteredPackages.length / itemsPerPage);
const indexOfLastItem = currentPage * itemsPerPage;
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
const currentItems = filteredPackages.slice(
indexOfFirstItem,
indexOfLastItem,
);
const currentItems = filteredPackages.slice(indexOfFirstItem, indexOfLastItem);
// --- Actions ---
const handleToggleStatus = async (pkg: HealthPackage) => {
if (!pkg.id) return;
try {
await updateHealthPackageApi(pkg.id, { isActive: !pkg.isActive });
toast.success(`Package ${pkg.isActive ? "hidden" : "activated"}`);
toast.success(`Package ${pkg.isActive ? 'hidden' : 'activated'}`);
fetchData();
} catch (err) {
console.error("Failed to update status", err);
toast.error("Failed to update status");
console.error('Failed to update status', err);
toast.error('Failed to update status');
}
};
const handleToggleCategoryStatus = async (cat: HealthCategory) => {
if (!cat.id) return;
try {
if (cat.isActive) {
const proceed = window.confirm(
"Hiding this category will also hide all packages inside it. Proceed?",
);
const proceed = window.confirm('Hiding this category will also hide all packages inside it. Proceed?');
if (!proceed) return;
}
await updateCategoryApi(cat.id, { isActive: !cat.isActive });
toast.success(`Category ${cat.isActive ? "hidden" : "activated"}`);
toast.success(`Category ${cat.isActive ? 'hidden' : 'activated'}`);
fetchData();
} catch (err) {
console.error("Failed to update category status", err);
toast.error("Failed to update category status");
console.error('Failed to update category status', err);
toast.error('Failed to update category status');
}
};
const openAddPackage = () => {
if (categories.length === 0) {
toast.error(
"Please create at least one category before attempting to add a health package.",
);
toast.error('Please create at least one category before attempting to add a health package.');
return;
}
setEditingPackage(null);
setPkgForm({
name: "",
slug: "",
description: "",
image: "",
name: '',
slug: '',
description: '',
image: '',
price: undefined,
discountedPrice: undefined,
categoryId: categories[0]?.id || 0,
isActive: true,
sortOrder: 1000,
seo: {
seoTitle: "",
metaDescription: "",
focusKeyphrase: "",
seoTitle: '',
metaDescription: '',
focusKeyphrase: '',
tags: [],
ogTitle: "",
ogDescription: "",
ogImage: "",
ogTitle: '',
ogDescription: '',
ogImage: '',
},
});
setInclusionsList([{ id: Date.now(), category: "", items: "" }]);
setInclusionsList([{ id: Date.now(), category: '', items: '' }]);
setPackageModal(true);
};
@@ -228,46 +186,30 @@ export default function HealthPackagePage() {
setEditingPackage(pkg);
setPkgForm(pkg);
if (
pkg.inclusions &&
typeof pkg.inclusions === "object" &&
!Array.isArray(pkg.inclusions)
) {
const formattedList = Object.entries(pkg.inclusions).map(
([cat, items], idx) => ({
id: Date.now() + idx,
category: cat,
items: (items as string[]).join(", "),
}),
);
setInclusionsList(
formattedList.length
? formattedList
: [{ id: Date.now(), category: "", items: "" }],
);
if (pkg.inclusions && typeof pkg.inclusions === 'object' && !Array.isArray(pkg.inclusions)) {
const formattedList = Object.entries(pkg.inclusions).map(([cat, items], idx) => ({
id: Date.now() + idx,
category: cat,
items: (items as string[]).join(', '),
}));
setInclusionsList(formattedList.length ? formattedList : [{ id: Date.now(), category: '', items: '' }]);
} else {
setInclusionsList([{ id: Date.now(), category: "", items: "" }]);
setInclusionsList([{ id: Date.now(), category: '', items: '' }]);
}
setPackageModal(true);
};
const savePackage = async () => {
if (!pkgForm.image) return toast.error("Package image is required.");
if (!pkgForm.name?.trim()) return toast.error("Package Name is required.");
if (!pkgForm.slug?.trim()) return toast.error("URL Slug is required.");
if (!pkgForm.categoryId)
return toast.error("Please select a valid category.");
if (!pkgForm.description?.trim())
return toast.error("Description is required.");
if (!pkgForm.image) return toast.error('Package image is required.');
if (!pkgForm.name?.trim()) return toast.error('Package Name is required.');
if (!pkgForm.slug?.trim()) return toast.error('URL Slug is required.');
if (!pkgForm.categoryId) return toast.error('Please select a valid category.');
if (!pkgForm.description?.trim()) return toast.error('Description is required.');
const structureFilled = inclusionsList.some(
(item) => item.category.trim() !== "" && item.items.trim() !== "",
);
const structureFilled = inclusionsList.some((item) => item.category.trim() !== '' && item.items.trim() !== '');
if (!structureFilled) {
return toast.error(
"Please provide at least one valid Category Group with tests inside it.",
);
return toast.error('Please provide at least one valid Category Group with tests inside it.');
}
try {
@@ -276,7 +218,7 @@ export default function HealthPackagePage() {
const catName = entry.category.trim();
if (catName) {
parsedInclusions[catName] = entry.items
.split(",")
.split(',')
.map((i) => i.trim())
.filter(Boolean);
}
@@ -287,14 +229,10 @@ export default function HealthPackagePage() {
inclusions: parsedInclusions,
};
finalData.price =
finalData.price !== undefined && finalData.price !== null
? Number(finalData.price)
: null;
finalData.price = finalData.price !== undefined && finalData.price !== null ? Number(finalData.price) : null;
finalData.discountedPrice =
finalData.discountedPrice !== undefined &&
finalData.discountedPrice !== null
finalData.discountedPrice !== undefined && finalData.discountedPrice !== null
? Number(finalData.discountedPrice)
: null;
@@ -302,9 +240,7 @@ export default function HealthPackagePage() {
const changedFields: Record<string, any> = {};
Object.keys(finalData).forEach((key) => {
const k = key as keyof HealthPackage;
if (
JSON.stringify(finalData[k]) !== JSON.stringify(editingPackage[k])
) {
if (JSON.stringify(finalData[k]) !== JSON.stringify(editingPackage[k])) {
changedFields[k] = finalData[k];
}
});
@@ -326,14 +262,12 @@ export default function HealthPackagePage() {
fetchData();
} catch (err) {
console.error(err);
toast.error(
"An unexpected system error occurred while trying to save the package.",
);
toast.error('An unexpected system error occurred while trying to save the package.');
}
};
const saveCategory = async () => {
if (!catForm.name?.trim()) return toast.error("Category Name is required.");
if (!catForm.name?.trim()) return toast.error('Category Name is required.');
try {
if (editingCategory?.id) {
@@ -354,10 +288,7 @@ export default function HealthPackagePage() {
return;
}
await updateCategoryApi(
editingCategory.id,
changedFields as Partial<HealthCategory>,
);
await updateCategoryApi(editingCategory.id, changedFields as Partial<HealthCategory>);
} else {
await createCategoryApi(catForm as any);
}
@@ -366,7 +297,7 @@ export default function HealthPackagePage() {
fetchData();
} catch (err) {
console.error(err);
toast.error("An error occurred while saving the category.");
toast.error('An error occurred while saving the category.');
}
};
@@ -398,12 +329,7 @@ export default function HealthPackagePage() {
))}
</select>
<Button
variant="outline"
onClick={fetchData}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchData} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -415,11 +341,7 @@ export default function HealthPackagePage() {
</div>
</div>
{error && (
<div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">
{error}
</div>
)}
{error && <div className="p-4 text-red-600 bg-red-50 border rounded-md text-base">{error}</div>}
<Tabs defaultValue="packages" className="w-full">
<TabsList className="mb-4">
@@ -439,24 +361,12 @@ export default function HealthPackagePage() {
<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 text-sm font-bold">
Priority
</TableHead>
<TableHead className="w-[250px] bg-background text-sm font-bold">
Package Details
</TableHead>
<TableHead className="w-[150px] bg-background text-sm font-bold">
Category
</TableHead>
<TableHead className="w-[150px] bg-background text-sm font-bold">
Pricing
</TableHead>
<TableHead className="w-[120px] bg-background text-sm font-bold">
Status
</TableHead>
<TableHead className="w-[120px] bg-background text-right text-sm font-bold">
Actions
</TableHead>
<TableHead className="w-[80px] bg-background text-sm font-bold">Priority</TableHead>
<TableHead className="w-[250px] bg-background text-sm font-bold">Package Details</TableHead>
<TableHead className="w-[150px] bg-background text-sm font-bold">Category</TableHead>
<TableHead className="w-[150px] bg-background text-sm font-bold">Pricing</TableHead>
<TableHead className="w-[120px] bg-background text-sm font-bold">Status</TableHead>
<TableHead className="w-[120px] bg-background text-right text-sm font-bold">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
@@ -468,29 +378,19 @@ export default function HealthPackagePage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={6}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={6} className="text-center text-muted-foreground py-10 text-base">
No packages found
</TableCell>
</TableRow>
) : (
currentItems.map((pkg) => (
<TableRow key={pkg.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-sm">
{pkg.sortOrder}
</TableCell>
<TableCell className="font-mono text-sm">{pkg.sortOrder}</TableCell>
<TableCell>
<div
className="font-semibold text-base truncate"
title={pkg.name}
>
<div className="font-semibold text-base truncate" title={pkg.name}>
{pkg.name}
</div>
<div className="text-xs text-muted-foreground truncate font-mono mt-0.5">
/{pkg.slug}
</div>
<div className="text-xs text-muted-foreground truncate font-mono mt-0.5">/{pkg.slug}</div>
</TableCell>
<TableCell>
<Badge variant="secondary" className="text-xs">
@@ -503,27 +403,18 @@ export default function HealthPackagePage() {
? `${pkg.discountedPrice}`
: pkg.price != null
? `${pkg.price}`
: "Not Entered"}
: 'Not Entered'}
</div>
{pkg.discountedPrice != null &&
pkg.price != null &&
pkg.discountedPrice < pkg.price && (
<div className="text-xs text-muted-foreground line-through">
{pkg.price}
</div>
)}
{pkg.discountedPrice != null && pkg.price != null && pkg.discountedPrice < pkg.price && (
<div className="text-xs text-muted-foreground line-through">{pkg.price}</div>
)}
</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<Switch
checked={pkg.isActive}
onCheckedChange={() => handleToggleStatus(pkg)}
/>
<Badge
variant={pkg.isActive ? "default" : "secondary"}
>
{pkg.isActive ? "Active" : "Hidden"}
<Switch checked={pkg.isActive} onCheckedChange={() => handleToggleStatus(pkg)} />
<Badge variant={pkg.isActive ? 'default' : 'secondary'}>
{pkg.isActive ? 'Active' : 'Hidden'}
</Badge>
</div>
</TableCell>
@@ -560,19 +451,9 @@ export default function HealthPackagePage() {
{!loading && filteredPackages.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, filteredPackages.length)}
</span>{" "}
of{" "}
<span className="font-semibold">
{filteredPackages.length}
</span>{" "}
packages
Showing <span className="font-semibold">{indexOfFirstItem + 1}</span> to{' '}
<span className="font-semibold">{Math.min(indexOfLastItem, filteredPackages.length)}</span> of{' '}
<span className="font-semibold">{filteredPackages.length}</span> packages
</div>
<div className="flex items-center gap-6">
<div className="text-base font-semibold">
@@ -583,9 +464,7 @@ export default function HealthPackagePage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -594,14 +473,8 @@ export default function HealthPackagePage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) =>
Math.min(prev + 1, totalPages),
)
}
disabled={
currentPage === totalPages || totalPages === 0
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
</Button>
@@ -623,8 +496,8 @@ export default function HealthPackagePage() {
onClick={() => {
setEditingCategory(null);
setCatForm({
name: "",
slug: "",
name: '',
slug: '',
sortOrder: 1000,
isActive: true,
});
@@ -639,42 +512,23 @@ export default function HealthPackagePage() {
<Table className="w-full table-fixed border-separate border-spacing-0">
<TableHeader className="sticky top-0 z-20 bg-background shadow-sm">
<TableRow>
<TableHead className="w-[100px] bg-background text-sm font-bold">
Priority
</TableHead>
<TableHead className="bg-background text-sm font-bold">
Category Name
</TableHead>
<TableHead className="w-[100px] bg-background text-sm font-bold">
Status
</TableHead>
<TableHead className="w-[100px] bg-background text-right text-sm font-bold">
Actions
</TableHead>
<TableHead className="w-[100px] bg-background text-sm font-bold">Priority</TableHead>
<TableHead className="bg-background text-sm font-bold">Category Name</TableHead>
<TableHead className="w-[100px] bg-background text-sm font-bold">Status</TableHead>
<TableHead className="w-[100px] bg-background text-right text-sm font-bold">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{categories.map((cat) => (
<TableRow key={cat.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-sm">
{cat.sortOrder}
</TableCell>
<TableCell className="font-semibold text-base">
{cat.name}
</TableCell>
<TableCell className="font-mono text-sm">{cat.sortOrder}</TableCell>
<TableCell className="font-semibold text-base">{cat.name}</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<Switch
checked={cat.isActive}
onCheckedChange={() =>
handleToggleCategoryStatus(cat)
}
/>
<Badge
variant={cat.isActive ? "default" : "secondary"}
>
{cat.isActive ? "Active" : "Hidden"}
<Switch checked={cat.isActive} onCheckedChange={() => handleToggleCategoryStatus(cat)} />
<Badge variant={cat.isActive ? 'default' : 'secondary'}>
{cat.isActive ? 'Active' : 'Hidden'}
</Badge>
</div>
</TableCell>
@@ -724,18 +578,14 @@ export default function HealthPackagePage() {
<Dialog open={categoryModal} onOpenChange={setCategoryModal}>
<DialogContent className="w-full !max-w-2xl flex flex-col p-0 overflow-hidden">
<DialogHeader className="p-6 border-b">
<DialogTitle>
{editingCategory ? "Edit Category" : "Add Category"}
</DialogTitle>
<DialogTitle>{editingCategory ? 'Edit Category' : 'Add Category'}</DialogTitle>
</DialogHeader>
<div className="p-6 space-y-4">
<div className="space-y-1">
<Label className="text-sm font-semibold">Category Name</Label>
<Input
value={catForm.name}
onChange={(e) =>
setCatForm({ ...catForm, name: e.target.value })
}
onChange={(e) => setCatForm({ ...catForm, name: e.target.value })}
className="text-base"
/>
</div>
@@ -745,41 +595,25 @@ export default function HealthPackagePage() {
<Input
type="number"
value={catForm.sortOrder}
onChange={(e) =>
setCatForm({ ...catForm, sortOrder: Number(e.target.value) })
}
onChange={(e) => setCatForm({ ...catForm, sortOrder: Number(e.target.value) })}
className="text-base"
/>
</div>
<div className="flex items-center justify-between p-3 border rounded-md bg-muted/30 mb-2">
<Label className="text-base font-semibold cursor-pointer">
Active Visibility
</Label>
<Switch
checked={catForm.isActive}
onCheckedChange={(val) =>
setCatForm({ ...catForm, isActive: val })
}
/>
<Label className="text-base font-semibold cursor-pointer">Active Visibility</Label>
<Switch checked={catForm.isActive} onCheckedChange={(val) => setCatForm({ ...catForm, isActive: val })} />
</div>
</div>
<DialogFooter className="p-6 border-t">
<Button variant="ghost" onClick={() => setCategoryModal(false)}>
Cancel
</Button>
<Button onClick={saveCategory}>
{editingCategory ? "Save Category" : "Create Category"}
</Button>
<Button onClick={saveCategory}>{editingCategory ? 'Save Category' : 'Create Category'}</Button>
</DialogFooter>
</DialogContent>
</Dialog>
<SeoPreview
open={viewModal}
onOpenChange={setViewModal}
previewData={selectedPackage}
url={previewUrl}
/>
<SeoPreview open={viewModal} onOpenChange={setViewModal} previewData={selectedPackage} url={previewUrl} />
</div>
);
}
+58 -62
View File
@@ -1,6 +1,6 @@
import React, { useState, ChangeEvent } from "react";
import * as XLSX from "xlsx";
import apiClient from "@/api/client";
import React, { useState, ChangeEvent } from 'react';
import * as XLSX from 'xlsx';
import apiClient from '@/api/client';
interface ImportPayload {
departments: any[];
@@ -16,58 +16,56 @@ interface ImportPayload {
const ImportData: React.FC = () => {
const [loading, setLoading] = useState<boolean>(false);
const [status, setStatus] = useState<string>("");
const [status, setStatus] = useState<string>('');
const handleFileUpload = (e: ChangeEvent<HTMLInputElement>) => {
const file = e.target.files?.[0];
if (!file) return;
setLoading(true);
setStatus("Reading Excel file...");
setStatus('Reading Excel file...');
const reader = new FileReader();
reader.onload = async (evt: ProgressEvent<FileReader>) => {
try {
const bstr = evt.target?.result;
if (!bstr) throw new Error("Failed to read file content.");
if (!bstr) throw new Error('Failed to read file content.');
const wb = XLSX.read(bstr, { type: "binary" });
const wb = XLSX.read(bstr, { type: 'binary' });
const payload: ImportPayload = {
departments: XLSX.utils.sheet_to_json(wb.Sheets["Departments"]) || [],
doctors: XLSX.utils.sheet_to_json(wb.Sheets["Doctors"]) || [],
timings: XLSX.utils.sheet_to_json(wb.Sheets["Doctor Timings"]) || [],
careers: XLSX.utils.sheet_to_json(wb.Sheets["Careers"]) || [],
inquiries: XLSX.utils.sheet_to_json(wb.Sheets["Inquiry"]) || [],
academics:
XLSX.utils.sheet_to_json(wb.Sheets["Academics & Research"]) || [],
appointments:
XLSX.utils.sheet_to_json(wb.Sheets["Appointment"]) || [],
candidates: XLSX.utils.sheet_to_json(wb.Sheets["Candidate"]) || [],
news: XLSX.utils.sheet_to_json(wb.Sheets["News & Media"]) || [],
departments: XLSX.utils.sheet_to_json(wb.Sheets['Departments']) || [],
doctors: XLSX.utils.sheet_to_json(wb.Sheets['Doctors']) || [],
timings: XLSX.utils.sheet_to_json(wb.Sheets['Doctor Timings']) || [],
careers: XLSX.utils.sheet_to_json(wb.Sheets['Careers']) || [],
inquiries: XLSX.utils.sheet_to_json(wb.Sheets['Inquiry']) || [],
academics: XLSX.utils.sheet_to_json(wb.Sheets['Academics & Research']) || [],
appointments: XLSX.utils.sheet_to_json(wb.Sheets['Appointment']) || [],
candidates: XLSX.utils.sheet_to_json(wb.Sheets['Candidate']) || [],
news: XLSX.utils.sheet_to_json(wb.Sheets['News & Media']) || [],
};
setStatus("Uploading data to server (this may take a moment)...");
setStatus('Uploading data to server (this may take a moment)...');
const response = await apiClient.post("/import/bulk", payload);
const response = await apiClient.post('/import/bulk', payload);
if (response.status === 200) {
setStatus("✅ ALL DATA IMPORT COMPLETED SUCCESSFULLY!");
setStatus('✅ ALL DATA IMPORT COMPLETED SUCCESSFULLY!');
} else {
setStatus("❌ Server responded with an error.");
setStatus('❌ Server responded with an error.');
}
} catch (err: any) {
console.error("Import Error:", err);
const errorMsg = err.response?.data?.error || "Error processing file.";
console.error('Import Error:', err);
const errorMsg = err.response?.data?.error || 'Error processing file.';
setStatus(`${errorMsg}`);
} finally {
setLoading(false);
if (e.target) e.target.value = "";
if (e.target) e.target.value = '';
}
};
reader.onerror = () => {
setStatus("❌ Failed to read the file.");
setStatus('❌ Failed to read the file.');
setLoading(false);
};
@@ -77,45 +75,43 @@ const ImportData: React.FC = () => {
return (
<div style={containerStyle}>
<div style={cardStyle}>
<h2 style={{ color: "#333", marginBottom: "10px" }}>
Database Bulk Import
</h2>
<p style={{ color: "#666", marginBottom: "30px" }}>
<h2 style={{ color: '#333', marginBottom: '10px' }}>Database Bulk Import</h2>
<p style={{ color: '#666', marginBottom: '30px' }}>
Select the <b>gg_hospital.xlsx</b> file. This will update all tables.
</p>
<div style={{ marginBottom: "20px" }}>
<div style={{ marginBottom: '20px' }}>
<input
type="file"
accept=".xlsx, .xls"
onChange={handleFileUpload}
id="excel-upload"
style={{ display: "none" }}
style={{ display: 'none' }}
disabled={loading}
/>
<label
htmlFor="excel-upload"
style={{
...buttonStyle,
backgroundColor: loading ? "#a0aec0" : "#3182ce",
cursor: loading ? "not-allowed" : "pointer",
backgroundColor: loading ? '#a0aec0' : '#3182ce',
cursor: loading ? 'not-allowed' : 'pointer',
}}
>
{loading ? "⌛ Processing..." : "📂 Choose Excel File"}
{loading ? '⌛ Processing...' : '📂 Choose Excel File'}
</label>
</div>
{status && (
<div
style={{
marginTop: "25px",
padding: "15px",
borderRadius: "8px",
backgroundColor: status.includes("✅") ? "#f0fff4" : "#fff5f5",
color: status.includes("✅") ? "#2f855a" : "#c53030",
border: `1px solid ${status.includes("✅") ? "#c6f6d5" : "#fed7d7"}`,
fontWeight: "500",
whiteSpace: "pre-wrap",
marginTop: '25px',
padding: '15px',
borderRadius: '8px',
backgroundColor: status.includes('✅') ? '#f0fff4' : '#fff5f5',
color: status.includes('✅') ? '#2f855a' : '#c53030',
border: `1px solid ${status.includes('✅') ? '#c6f6d5' : '#fed7d7'}`,
fontWeight: '500',
whiteSpace: 'pre-wrap',
}}
>
{status}
@@ -127,32 +123,32 @@ const ImportData: React.FC = () => {
};
const containerStyle: React.CSSProperties = {
display: "flex",
justifyContent: "center",
alignItems: "center",
minHeight: "80vh",
backgroundColor: "#f7fafc",
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
minHeight: '80vh',
backgroundColor: '#f7fafc',
fontFamily: "'Segoe UI', Tahoma, Geneva, Verdana, sans-serif",
};
const cardStyle: React.CSSProperties = {
backgroundColor: "white",
padding: "40px",
borderRadius: "12px",
boxShadow: "0 4px 6px rgba(0,0,0,0.1)",
maxWidth: "500px",
width: "100%",
textAlign: "center",
backgroundColor: 'white',
padding: '40px',
borderRadius: '12px',
boxShadow: '0 4px 6px rgba(0,0,0,0.1)',
maxWidth: '500px',
width: '100%',
textAlign: 'center',
};
const buttonStyle: React.CSSProperties = {
padding: "12px 24px",
color: "white",
borderRadius: "6px",
fontSize: "16px",
fontWeight: "bold",
transition: "all 0.2s ease",
display: "inline-block",
padding: '12px 24px',
color: 'white',
borderRadius: '6px',
fontSize: '16px',
fontWeight: 'bold',
transition: 'all 0.2s ease',
display: 'inline-block',
};
export default ImportData;
+20 -34
View File
@@ -1,31 +1,31 @@
import {useState, ChangeEvent} from "react";
import {useNavigate} from "react-router-dom";
import {useAuth} from "@/context/AuthContext";
import { useState, ChangeEvent } from 'react';
import { useNavigate } from 'react-router-dom';
import { useAuth } from '@/context/AuthContext';
import {Card, CardContent, CardHeader, CardTitle} from "@/components/ui/card";
import {Input} from "@/components/ui/input";
import {Label} from "@/components/ui/label";
import {Button} from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Button } from '@/components/ui/button';
export default function Login() {
const navigate = useNavigate();
const {login} = useAuth();
const { login } = useAuth();
const [username, setUsername] = useState("");
const [password, setPassword] = useState("");
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const [loading, setLoading] = useState(false);
const [error, setError] = useState("");
const [error, setError] = useState('');
async function handleLogin() {
try {
setLoading(true);
setError("");
setError('');
await login(username, password);
navigate("/dashboard");
navigate('/dashboard');
} catch (err) {
setError("Invalid credentials");
setError('Invalid credentials');
}
setLoading(false);
@@ -37,17 +37,11 @@ export default function Login() {
<CardHeader className="space-y-1 text-center">
<CardTitle className="text-2xl font-semibold">Admin Login</CardTitle>
<p className="text-sm text-muted-foreground">
Enter your credentials to access the dashboard
</p>
<p className="text-sm text-muted-foreground">Enter your credentials to access the dashboard</p>
</CardHeader>
<CardContent className="space-y-5">
{error && (
<div className="p-3 text-sm text-red-600 bg-red-100 rounded-md">
{error}
</div>
)}
{error && <div className="p-3 text-sm text-red-600 bg-red-100 rounded-md">{error}</div>}
<div className="space-y-2">
<Label htmlFor="username">Username</Label>
@@ -56,9 +50,7 @@ export default function Login() {
id="username"
placeholder="Enter username"
value={username}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
setUsername(e.target.value)
}
onChange={(e: ChangeEvent<HTMLInputElement>) => setUsername(e.target.value)}
disabled={loading}
/>
</div>
@@ -71,19 +63,13 @@ export default function Login() {
type="password"
placeholder="Enter password"
value={password}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
setPassword(e.target.value)
}
onChange={(e: ChangeEvent<HTMLInputElement>) => setPassword(e.target.value)}
disabled={loading}
/>
</div>
<Button
onClick={handleLogin}
className="w-full"
disabled={loading || !username || !password}
>
{loading ? "Logging in..." : "Login"}
<Button onClick={handleLogin} className="w-full" disabled={loading || !username || !password}>
{loading ? 'Logging in...' : 'Login'}
</Button>
</CardContent>
</Card>
+50 -149
View File
@@ -1,45 +1,23 @@
import { useState, useEffect, useCallback } from "react";
import { useState, useEffect, useCallback } from 'react';
import { getCandidatesApi, deleteCandidateApi } from "@/api/candidates";
import { exportToExcel } from "@/utils/exportToExcel";
import { getCandidatesApi, deleteCandidateApi } from '@/api/candidates';
import { exportToExcel } from '@/utils/exportToExcel';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
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,
ChevronLeft,
ChevronRight,
Eye,
User,
} from "lucide-react";
import { Loader2, Trash, RefreshCw, Download, ChevronLeft, ChevronRight, Eye, User } from 'lucide-react';
export default function CandidatePage() {
const [candidates, setCandidates] = useState<any[]>([]);
const [loading, setLoading] = useState(true);
const [searchText, setSearchText] = useState("");
const [filterCareer, setFilterCareer] = useState("");
const [searchText, setSearchText] = useState('');
const [filterCareer, setFilterCareer] = useState('');
const [viewOpen, setViewOpen] = useState(false);
const [viewData, setViewData] = useState<any>(null);
@@ -69,9 +47,7 @@ export default function CandidatePage() {
item.mobile?.includes(searchText) ||
item.email?.toLowerCase().includes(searchText.toLowerCase());
const matchesCareer = filterCareer
? item.career?.post?.toLowerCase().includes(filterCareer.toLowerCase())
: true;
const matchesCareer = filterCareer ? item.career?.post?.toLowerCase().includes(filterCareer.toLowerCase()) : true;
return matchesSearch && matchesCareer;
});
@@ -83,10 +59,7 @@ export default function CandidatePage() {
const totalPages = Math.ceil(filteredCandidates.length / itemsPerPage);
const indexOfLastItem = currentPage * itemsPerPage;
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
const currentItems = filteredCandidates.slice(
indexOfFirstItem,
indexOfLastItem,
);
const currentItems = filteredCandidates.slice(indexOfFirstItem, indexOfLastItem);
function openView(item: any) {
setViewData(item);
@@ -94,7 +67,7 @@ export default function CandidatePage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete candidate?")) return;
if (!confirm('Delete candidate?')) return;
await deleteCandidateApi(id);
fetchAll();
}
@@ -112,7 +85,7 @@ export default function CandidatePage() {
AppliedDate: new Date(item.createdAt).toLocaleDateString(),
}));
exportToExcel(exportData, "candidates");
exportToExcel(exportData, 'candidates');
};
return (
@@ -135,12 +108,7 @@ export default function CandidatePage() {
className="w-[200px] text-base"
/>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -162,27 +130,13 @@ export default function CandidatePage() {
<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 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>
<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>
@@ -195,52 +149,32 @@ export default function CandidatePage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={7}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={7} className="text-center text-muted-foreground py-10 text-base">
No candidates found
</TableCell>
</TableRow>
) : (
currentItems.map((item) => (
<TableRow key={item.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.id}
<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="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>
<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 className="text-sm">{new Date(item.createdAt).toLocaleDateString()}</TableCell>
<TableCell>
<div className="text-sm line-clamp-2 text-muted-foreground italic">
{item.coverLetter || "No cover letter provided."}
{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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openView(item)}>
<Eye className="h-4 w-4" />
</Button>
<Button
@@ -263,15 +197,9 @@ export default function CandidatePage() {
{!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>
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">
@@ -282,9 +210,7 @@ export default function CandidatePage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -293,9 +219,7 @@ export default function CandidatePage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -319,50 +243,30 @@ export default function CandidatePage() {
<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-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>
<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>
<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>
<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-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."}
{viewData.coverLetter || 'No cover letter provided.'}
</p>
</div>
</div>
@@ -370,10 +274,7 @@ export default function CandidatePage() {
</div>
)}
<DialogFooter>
<Button
onClick={() => setViewOpen(false)}
className="w-full md:w-auto"
>
<Button onClick={() => setViewOpen(false)} className="w-full md:w-auto">
Close
</Button>
</DialogFooter>
+28 -73
View File
@@ -1,34 +1,16 @@
import {useState, useEffect, useCallback} from "react";
import { useState, useEffect, useCallback } from 'react';
import {
getEmailConfigsApi,
createEmailConfigApi,
updateEmailConfigApi,
deleteEmailConfigApi,
} from "@/api/email";
import { getEmailConfigsApi, createEmailConfigApi, updateEmailConfigApi, deleteEmailConfigApi } from '@/api/email';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 { 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 { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import {Loader2, Plus, Pencil, Trash, RefreshCw} from "lucide-react";
import { Loader2, Plus, Pencil, Trash, RefreshCw } from 'lucide-react';
export default function EmailPage() {
const [emails, setEmails] = useState<any[]>([]);
@@ -37,12 +19,12 @@ export default function EmailPage() {
const [openModal, setOpenModal] = useState(false);
const [editing, setEditing] = useState<any>(null);
const [searchText, setSearchText] = useState("");
const [searchText, setSearchText] = useState('');
const [form, setForm] = useState({
name: "",
email: "",
type: "APPOINTMENT",
name: '',
email: '',
type: 'APPOINTMENT',
isActive: true,
});
@@ -65,19 +47,19 @@ export default function EmailPage() {
const filtered = emails.filter(
(e) =>
e.email.toLowerCase().includes(searchText.toLowerCase()) ||
e.name.toLowerCase().includes(searchText.toLowerCase()),
e.name.toLowerCase().includes(searchText.toLowerCase())
);
function handleChange(e: any) {
setForm({...form, [e.target.name]: e.target.value});
setForm({ ...form, [e.target.name]: e.target.value });
}
function openAdd() {
setEditing(null);
setForm({
name: "",
email: "",
type: "APPOINTMENT",
name: '',
email: '',
type: 'APPOINTMENT',
isActive: true,
});
setOpenModal(true);
@@ -105,7 +87,7 @@ export default function EmailPage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete email config?")) return;
if (!confirm('Delete email config?')) return;
await deleteEmailConfigApi(id);
fetchAll();
}
@@ -173,24 +155,14 @@ export default function EmailPage() {
<TableCell>{item.name}</TableCell>
<TableCell>{item.email}</TableCell>
<TableCell>{item.type}</TableCell>
<TableCell>
{item.isActive ? "Active" : "Inactive"}
</TableCell>
<TableCell>{item.isActive ? 'Active' : 'Inactive'}</TableCell>
<TableCell className="flex gap-2">
<Button
size="sm"
variant="outline"
onClick={() => openEdit(item)}
>
<Button size="sm" variant="outline" onClick={() => openEdit(item)}>
<Pencil className="h-4 w-4" />
</Button>
<Button
size="sm"
variant="destructive"
onClick={() => handleDelete(item.id)}
>
<Button size="sm" variant="destructive" onClick={() => handleDelete(item.id)}>
<Trash className="h-4 w-4" />
</Button>
</TableCell>
@@ -205,30 +177,15 @@ export default function EmailPage() {
<Dialog open={openModal} onOpenChange={setOpenModal}>
<DialogContent>
<DialogHeader>
<DialogTitle>{editing ? "Edit Email" : "Add Email"}</DialogTitle>
<DialogTitle>{editing ? 'Edit Email' : 'Add Email'}</DialogTitle>
</DialogHeader>
<div className="space-y-4">
<Input
name="name"
placeholder="Name"
value={form.name}
onChange={handleChange}
/>
<Input name="name" placeholder="Name" value={form.name} onChange={handleChange} />
<Input
name="email"
placeholder="Email"
value={form.email}
onChange={handleChange}
/>
<Input name="email" placeholder="Email" value={form.email} onChange={handleChange} />
<select
name="type"
value={form.type}
onChange={handleChange}
className="border rounded px-2 py-2 w-full"
>
<select name="type" value={form.type} onChange={handleChange} className="border rounded px-2 py-2 w-full">
<option value="APPOINTMENT">APPOINTMENT</option>
<option value="CANDIDATE">CANDIDATE</option>
<option value="ACADEMICS">ACADEMICS</option>
@@ -238,11 +195,11 @@ export default function EmailPage() {
<select
name="isActive"
value={form.isActive ? "true" : "false"}
value={form.isActive ? 'true' : 'false'}
onChange={(e) =>
setForm({
...form,
isActive: e.target.value === "true",
isActive: e.target.value === 'true',
})
}
className="border rounded px-2 py-2 w-full"
@@ -256,9 +213,7 @@ export default function EmailPage() {
<Button variant="outline" onClick={() => setOpenModal(false)}>
Cancel
</Button>
<Button onClick={handleSubmit}>
{editing ? "Update" : "Create"}
</Button>
<Button onClick={handleSubmit}>{editing ? 'Update' : 'Create'}</Button>
</DialogFooter>
</DialogContent>
</Dialog>
+44 -135
View File
@@ -1,44 +1,22 @@
import { useState, useEffect, useCallback } from "react";
import { useState, useEffect, useCallback } from 'react';
import { getInquiriesApi, deleteInquiryApi } from "@/api/inquiry";
import { exportToExcel } from "@/utils/exportToExcel";
import { getInquiriesApi, deleteInquiryApi } from '@/api/inquiry';
import { exportToExcel } from '@/utils/exportToExcel';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogFooter,
} from "@/components/ui/dialog";
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,
ChevronLeft,
ChevronRight,
Eye,
Mail,
} from "lucide-react";
import { Loader2, Trash, RefreshCw, Download, ChevronLeft, ChevronRight, Eye, Mail } from 'lucide-react';
export default function InquiryPage() {
const [inquiries, setInquiries] = useState<any[]>([]);
const [loading, setLoading] = useState(true);
const [searchText, setSearchText] = useState("");
const [searchText, setSearchText] = useState('');
const [viewOpen, setViewOpen] = useState(false);
const [viewData, setViewData] = useState<any>(null);
@@ -78,10 +56,7 @@ export default function InquiryPage() {
const totalPages = Math.ceil(filteredInquiries.length / itemsPerPage);
const indexOfLastItem = currentPage * itemsPerPage;
const indexOfFirstItem = indexOfLastItem - itemsPerPage;
const currentItems = filteredInquiries.slice(
indexOfFirstItem,
indexOfLastItem,
);
const currentItems = filteredInquiries.slice(indexOfFirstItem, indexOfLastItem);
function openView(item: any) {
setViewData(item);
@@ -89,7 +64,7 @@ export default function InquiryPage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete inquiry?")) return;
if (!confirm('Delete inquiry?')) return;
await deleteInquiryApi(id);
fetchAll();
}
@@ -105,7 +80,7 @@ export default function InquiryPage() {
Date: new Date(item.createdAt).toLocaleDateString(),
}));
exportToExcel(exportData, "inquiries");
exportToExcel(exportData, 'inquiries');
};
return (
@@ -121,12 +96,7 @@ export default function InquiryPage() {
className="w-[280px] text-base"
/>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -148,24 +118,12 @@ export default function InquiryPage() {
<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-[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>
<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>
@@ -178,51 +136,29 @@ export default function InquiryPage() {
</TableRow>
) : currentItems.length === 0 ? (
<TableRow>
<TableCell
colSpan={6}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={6} className="text-center text-muted-foreground py-10 text-base">
No inquiries found
</TableCell>
</TableRow>
) : (
currentItems.map((item) => (
<TableRow key={item.id} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.id}
<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="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>
<div className="text-sm font-medium line-clamp-2">{item.subject || '-'}</div>
</TableCell>
<TableCell className="text-sm">{new Date(item.createdAt).toLocaleDateString()}</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>
<div className="text-sm line-clamp-2 text-muted-foreground italic">
{item.message || "-"}
</div>
<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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openView(item)}>
<Eye className="h-4 w-4" />
</Button>
<Button
@@ -245,15 +181,9 @@ export default function InquiryPage() {
{!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>
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">
@@ -264,9 +194,7 @@ export default function InquiryPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -275,9 +203,7 @@ export default function InquiryPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -301,39 +227,25 @@ export default function InquiryPage() {
<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-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>
<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>
<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-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."}
{viewData.message || 'No message content.'}
</p>
</div>
</div>
@@ -341,10 +253,7 @@ export default function InquiryPage() {
</div>
)}
<DialogFooter>
<Button
onClick={() => setViewOpen(false)}
className="w-full md:w-auto"
>
<Button onClick={() => setViewOpen(false)} className="w-full md:w-auto">
Close
</Button>
</DialogFooter>
+70 -185
View File
@@ -1,34 +1,16 @@
import { useState, useEffect, useCallback } from "react";
import { BytescaleUploader } from "@/components/BytescaleUploader/BytescaleUploader";
import { useState, useEffect, useCallback } from 'react';
import { BytescaleUploader } from '@/components/BytescaleUploader/BytescaleUploader';
import {
getNewsApi,
createNewsApi,
updateNewsApi,
deleteNewsApi,
} from "@/api/newsMedia";
import { getNewsApi, createNewsApi, updateNewsApi, deleteNewsApi } from '@/api/newsMedia';
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
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 { 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 { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
import {
Loader2,
@@ -42,14 +24,14 @@ import {
Newspaper,
ImageIcon,
X,
} from "lucide-react";
} 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 [searchText, setSearchText] = useState('');
const [openModal, setOpenModal] = useState(false);
const [editing, setEditing] = useState<any>(null);
@@ -61,13 +43,13 @@ export default function NewsPage() {
const [itemsPerPage, setItemsPerPage] = useState(10);
const [form, setForm] = useState({
headline: "",
content: "",
headline: '',
content: '',
imageUrls: [] as string[],
firstPara: "",
secondPara: "",
date: "",
author: "",
firstPara: '',
secondPara: '',
date: '',
author: '',
});
const fetchAll = useCallback(async () => {
@@ -104,13 +86,13 @@ export default function NewsPage() {
function openAdd() {
setEditing(null);
setForm({
headline: "",
content: "",
headline: '',
content: '',
imageUrls: [],
firstPara: "",
secondPara: "",
date: "",
author: "",
firstPara: '',
secondPara: '',
date: '',
author: '',
});
setOpenModal(true);
}
@@ -118,13 +100,13 @@ export default function NewsPage() {
function openEdit(item: any) {
setEditing(item);
setForm({
headline: item.Headline || "",
content: item.Content || "",
headline: item.Headline || '',
content: item.Content || '',
imageUrls: item.Images ? item.Images.map((img: any) => img.image) : [],
firstPara: item.FirstPara || "",
secondPara: item.SecondPara || "",
date: item.Date ? item.Date.split("T")[0] : "",
author: item.Author || "",
firstPara: item.FirstPara || '',
secondPara: item.SecondPara || '',
date: item.Date ? item.Date.split('T')[0] : '',
author: item.Author || '',
});
setOpenModal(true);
}
@@ -139,10 +121,7 @@ export default function NewsPage() {
const submissionData = {
...form,
firstPara: form.headline,
content:
form.secondPara.length > 100
? form.secondPara.substring(0, 100) + "..."
: form.secondPara,
content: form.secondPara.length > 100 ? form.secondPara.substring(0, 100) + '...' : form.secondPara,
};
if (editing) {
@@ -158,7 +137,7 @@ export default function NewsPage() {
}
async function handleDelete(id: number) {
if (!confirm("Delete news?")) return;
if (!confirm('Delete news?')) return;
await deleteNewsApi(id);
fetchAll();
}
@@ -166,9 +145,7 @@ export default function NewsPage() {
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>
<h1 className="text-3xl font-bold font-sans tracking-tight">News Media</h1>
<div className="flex flex-wrap gap-3 items-center">
<Input
@@ -193,12 +170,7 @@ export default function NewsPage() {
<option value={20}>20 / page</option>
</select>
<Button
variant="outline"
onClick={fetchAll}
disabled={loading}
className="text-base"
>
<Button variant="outline" onClick={fetchAll} disabled={loading} className="text-base">
<RefreshCw className="mr-2 h-5 w-5" />
Refresh
</Button>
@@ -220,27 +192,13 @@ export default function NewsPage() {
<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-[100px] bg-background font-bold">
Cover
</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>
<TableHead className="w-[80px] bg-background font-bold">ID</TableHead>
<TableHead className="w-[100px] bg-background font-bold">Cover</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>
@@ -253,19 +211,14 @@ export default function NewsPage() {
</TableRow>
) : news.length === 0 ? (
<TableRow>
<TableCell
colSpan={7}
className="text-center text-muted-foreground py-10 text-base"
>
<TableCell colSpan={7} className="text-center text-muted-foreground py-10 text-base">
No news articles found
</TableCell>
</TableRow>
) : (
news.map((item) => (
<TableRow key={item.Id} className="hover:bg-muted/50">
<TableCell className="font-mono text-xs">
{item.Id}
</TableCell>
<TableCell className="font-mono text-xs">{item.Id}</TableCell>
<TableCell>
{item.Images?.[0] ? (
<img
@@ -280,42 +233,23 @@ export default function NewsPage() {
)}
</TableCell>
<TableCell>
<div
className="font-semibold text-base line-clamp-2"
title={item.Headline}
>
<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 font-medium">{item.Author || '-'}</TableCell>
<TableCell className="text-sm">
{item.Date
? new Date(item.Date).toLocaleDateString()
: "-"}
{item.Date ? new Date(item.Date).toLocaleDateString() : '-'}
</TableCell>
<TableCell>
<div className="text-sm line-clamp-2 text-muted-foreground">
{item.Content}
</div>
<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)}
>
<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)}
>
<Button size="icon" variant="ghost" className="h-9 w-9" onClick={() => openEdit(item)}>
<Pencil className="h-4 w-4" />
</Button>
<Button
@@ -338,9 +272,8 @@ export default function NewsPage() {
{!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})
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">
@@ -351,9 +284,7 @@ export default function NewsPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.max(prev - 1, 1))
}
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
>
<ChevronLeft className="h-5 w-5" />
@@ -362,9 +293,7 @@ export default function NewsPage() {
variant="outline"
size="icon"
className="h-10 w-10"
onClick={() =>
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
onClick={() => setCurrentPage((prev) => Math.min(prev + 1, totalPages))}
disabled={currentPage === totalPages || totalPages === 0}
>
<ChevronRight className="h-5 w-5" />
@@ -380,43 +309,25 @@ export default function NewsPage() {
<DialogContent className="w-full !max-w-6xl max-h-[90vh] overflow-y-auto">
<DialogHeader>
<DialogTitle className="text-2xl font-bold">
{editing ? "Edit News Article" : "Add New News Article"}
{editing ? 'Edit News Article' : 'Add New News Article'}
</DialogTitle>
</DialogHeader>
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8 mt-6">
<div className="lg:col-span-2 space-y-6">
<h3 className="font-bold text-base border-b pb-2 text-primary">
Article Information
</h3>
<h3 className="font-bold text-base border-b pb-2 text-primary">Article Information</h3>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-1 col-span-2">
<label className="text-sm font-semibold">Headline</label>
<Input
name="headline"
value={form.headline}
onChange={handleChange}
className="text-base"
/>
<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"
/>
<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"
/>
<Input type="date" name="date" value={form.date} onChange={handleChange} className="text-base" />
</div>
</div>
<div className="space-y-1">
@@ -453,15 +364,8 @@ export default function NewsPage() {
<div className="grid grid-cols-2 gap-2 max-h-[400px] overflow-y-auto pr-2 mt-4">
{form.imageUrls.map((url, index) => (
<div
key={index}
className="relative group border rounded-lg overflow-hidden h-24 bg-muted"
>
<img
src={url}
alt="upload"
className="w-full h-full object-cover"
/>
<div key={index} className="relative group border rounded-lg overflow-hidden h-24 bg-muted">
<img src={url} alt="upload" className="w-full h-full object-cover" />
<button
type="button"
onClick={() => removeImageUrl(index)}
@@ -482,18 +386,11 @@ export default function NewsPage() {
</div>
<DialogFooter className="mt-10 pt-6 border-t">
<Button
variant="ghost"
onClick={() => setOpenModal(false)}
className="text-base"
>
<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 onClick={handleSubmit} className="px-10 text-base bg-primary text-white">
{editing ? 'Save Changes' : 'Publish Now'}
</Button>
</DialogFooter>
</DialogContent>
@@ -510,30 +407,23 @@ export default function NewsPage() {
{viewData && (
<div className="space-y-6 py-4">
<div className="space-y-2">
<h2 className="text-2xl font-bold leading-tight">
{viewData.Headline}
</h2>
<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>By: {viewData.Author || 'Anonymous'}</span>
<span></span>
<span>
{viewData.Date
? new Date(viewData.Date).toLocaleDateString("en-IN", {
dateStyle: "long",
? new Date(viewData.Date).toLocaleDateString('en-IN', {
dateStyle: 'long',
})
: "No Date"}
: 'No Date'}
</span>
</div>
</div>
<div className="grid grid-cols-3 md:grid-cols-4 gap-2">
{viewData.Images?.map((img: any, i: number) => (
<img
key={i}
src={img.image}
className="w-full h-24 object-cover rounded-md border"
alt="gallery"
/>
<img key={i} src={img.image} className="w-full h-24 object-cover rounded-md border" alt="gallery" />
))}
</div>
@@ -544,19 +434,14 @@ export default function NewsPage() {
<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>
<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"
>
<Button onClick={() => setViewOpen(false)} className="w-full md:w-auto">
Close Preview
</Button>
</DialogFooter>
+2 -2
View File
@@ -1,11 +1,11 @@
import axios from "axios";
import axios from 'axios';
const api = axios.create({
baseURL: import.meta.env.VITE_API_URL,
});
api.interceptors.request.use((config) => {
const token = localStorage.getItem("token");
const token = localStorage.getItem('token');
if (token) {
config.headers.Authorization = `Bearer ${token}`;
+7 -7
View File
@@ -1,21 +1,21 @@
import * as XLSX from "xlsx";
import {saveAs} from "file-saver";
import * as XLSX from 'xlsx';
import { saveAs } from 'file-saver';
export const exportToExcel = (data: any[], fileName: string = "data") => {
export const exportToExcel = (data: any[], fileName: string = 'data') => {
if (!data || data.length === 0) return;
const worksheet = XLSX.utils.json_to_sheet(data);
const workbook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(workbook, worksheet, "Sheet1");
XLSX.utils.book_append_sheet(workbook, worksheet, 'Sheet1');
const excelBuffer = XLSX.write(workbook, {
bookType: "xlsx",
type: "array",
bookType: 'xlsx',
type: 'array',
});
const blob = new Blob([excelBuffer], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8",
type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8',
});
saveAs(blob, `${fileName}.xlsx`);