lms/resources/js/pages/dashboard/certificate/certificate.tsx
Ahmed Darrazi 368a49fb0c
All checks were successful
Build & Push Docker Image / docker (push) Successful in 1m49s
add certificate disbale function
2025-12-19 16:30:50 +01:00

132 lines
5.6 KiB
TypeScript

import { Button } from '@/components/ui/button';
import { Card } from '@/components/ui/card';
import { Label } from '@/components/ui/label';
import { Switch } from '@/components/ui/switch';
import DashboardLayout from '@/layouts/dashboard/layout';
import { SharedData } from '@/types/global';
import { Head, Link, router } from '@inertiajs/react';
import { Award, Plus } from 'lucide-react';
import { useEffect, useState } from 'react';
import CertificateCard from './partials/certificate-card';
interface CertificatePageProps extends SharedData {
templates: CertificateTemplate[];
}
const CertificateIndex = ({ templates, system }: CertificatePageProps) => {
const examTemplates = templates.filter((template) => template.type === 'exam');
const courseTemplates = templates.filter((template) => template.type === 'course');
const initialCourseCertificateEnabled = system?.fields?.show_course_certificate ?? true;
const [courseCertificateEnabled, setCourseCertificateEnabled] = useState<boolean>(initialCourseCertificateEnabled);
useEffect(() => {
setCourseCertificateEnabled(initialCourseCertificateEnabled);
}, [initialCourseCertificateEnabled]);
const handleCourseCertificateToggle = (checked: boolean) => {
const previous = courseCertificateEnabled;
setCourseCertificateEnabled(checked);
router.post(
route('certification.settings.update'),
{ show_course_certificate: checked },
{ preserveScroll: true, preserveState: true, onError: () => setCourseCertificateEnabled(previous) },
);
};
return (
<>
<Head title="Certificate Templates" />
<div className="space-y-6">
<Card className="p-4">
<div className="flex items-center justify-between gap-4">
<div>
<Label htmlFor="show_course_certificate" className="text-base font-semibold">
Course Certificate (Student)
</Label>
<p className="text-muted-foreground text-sm">Enable/disable course certificates for students.</p>
</div>
<Switch
id="show_course_certificate"
checked={courseCertificateEnabled}
onCheckedChange={handleCourseCertificateToggle}
/>
</div>
</Card>
<div className="flex items-center justify-between">
<div>
<h2 className="text-xl font-semibold">Certificate Templates</h2>
<p className="text-muted-foreground text-sm">Manage your certificate templates for course completion</p>
</div>
<Link href={route('certificate.templates.create')}>
<Button>
<Plus className="mr-2 h-4 w-4" />
Create Template
</Button>
</Link>
</div>
<div className="py-6">
<h6 className="mb-3 text-xl font-semibold">Course Certificate Templates</h6>
{courseTemplates.length === 0 ? (
<Card className="p-12">
<div className="flex flex-col items-center justify-center text-center">
<Award className="text-muted-foreground mb-4 h-16 w-16" />
<h3 className="mb-2 text-xl font-semibold">No certificate templates yet</h3>
<p className="text-muted-foreground mb-4">Create your first certificate template to get started</p>
<Link href={route('certificate.templates.create')}>
<Button>
<Plus className="mr-2 h-4 w-4" />
Create Your First Template
</Button>
</Link>
</div>
</Card>
) : (
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
{courseTemplates.map((template) => (
<CertificateCard key={template.id} type="course" template={template} />
))}
</div>
)}
</div>
<div className="py-6">
<h6 className="mb-3 text-xl font-semibold">Exam Certificate Templates</h6>
{examTemplates.length === 0 ? (
<Card className="p-12">
<div className="flex flex-col items-center justify-center text-center">
<Award className="text-muted-foreground mb-4 h-16 w-16" />
<h3 className="mb-2 text-xl font-semibold">No certificate templates yet</h3>
<p className="text-muted-foreground mb-4">Create your first certificate template to get started</p>
<Link href={route('certificate.templates.create')}>
<Button>
<Plus className="mr-2 h-4 w-4" />
Create Your First Template
</Button>
</Link>
</div>
</Card>
) : (
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
{examTemplates.map((template) => (
<CertificateCard key={template.id} type="exam" template={template} />
))}
</div>
)}
</div>
</div>
</>
);
};
CertificateIndex.layout = (page: React.ReactNode) => <DashboardLayout children={page} />;
export default CertificateIndex;