mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
107 lines
No EOL
4.9 KiB
TypeScript
107 lines
No EOL
4.9 KiB
TypeScript
'use client';
|
|
import CreateCourseModal from '@components/Objects/Modals/Course/Create/CreateCourse';
|
|
import Modal from '@components/StyledElements/Modal/Modal';
|
|
import React from 'react'
|
|
import { useSearchParams } from 'next/navigation';
|
|
import GeneralWrapperStyled from '@components/StyledElements/Wrappers/GeneralWrapper';
|
|
import TypeOfContentTitle from '@components/StyledElements/Titles/TypeOfContentTitle';
|
|
import AuthenticatedClientElement from '@components/Security/AuthenticatedClientElement';
|
|
import CourseThumbnail from '@components/Objects/Other/CourseThumbnail';
|
|
import NewCourseButton from '@components/StyledElements/Buttons/NewCourseButton';
|
|
|
|
interface CourseProps {
|
|
orgslug: string;
|
|
courses: any;
|
|
org_id: string;
|
|
}
|
|
|
|
function Courses(props: CourseProps) {
|
|
const orgslug = props.orgslug;
|
|
const courses = props.courses;
|
|
const searchParams = useSearchParams();
|
|
const isCreatingCourse = searchParams.get('new') ? true : false;
|
|
const [newCourseModal, setNewCourseModal] = React.useState(isCreatingCourse);
|
|
|
|
async function closeNewCourseModal() {
|
|
setNewCourseModal(false);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<GeneralWrapperStyled>
|
|
|
|
<div className='flex flex-wrap justify-between'>
|
|
<TypeOfContentTitle title="Courses" type="cou" />
|
|
<AuthenticatedClientElement checkMethod='roles' orgId={props.org_id}>
|
|
<Modal
|
|
isDialogOpen={newCourseModal}
|
|
onOpenChange={setNewCourseModal}
|
|
minHeight="md"
|
|
dialogContent={<CreateCourseModal
|
|
closeModal={closeNewCourseModal}
|
|
orgslug={orgslug}
|
|
></CreateCourseModal>}
|
|
dialogTitle="Create Course"
|
|
dialogDescription="Create a new course"
|
|
dialogTrigger={
|
|
|
|
<button>
|
|
<NewCourseButton />
|
|
</button>}
|
|
/>
|
|
</AuthenticatedClientElement>
|
|
</div>
|
|
|
|
|
|
|
|
<div className="flex flex-wrap">
|
|
{courses.map((course: any) => (
|
|
<div className="px-3" key={course.course_id}>
|
|
<CourseThumbnail course={course} orgslug={orgslug} />
|
|
</div>
|
|
))}
|
|
{courses.length == 0 &&
|
|
<div className="flex mx-auto h-[400px]">
|
|
<div className="flex flex-col justify-center text-center items-center space-y-5">
|
|
<div className='mx-auto'>
|
|
<svg width="120" height="120" viewBox="0 0 295 295" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<rect opacity="0.51" x="10" y="10" width="275" height="275" rx="75" stroke="#4B5564" strokeOpacity="0.15" strokeWidth="20" />
|
|
<path d="M135.8 200.8V130L122.2 114.6L135.8 110.4V102.8L122.2 87.4L159.8 76V200.8L174.6 218H121L135.8 200.8Z" fill="#4B5564" fillOpacity="0.08" />
|
|
</svg>
|
|
</div>
|
|
<div className="space-y-0">
|
|
<h1 className="text-3xl font-bold text-gray-600">No courses yet</h1>
|
|
<p className="text-lg text-gray-400">Create a course to add content</p>
|
|
</div>
|
|
<AuthenticatedClientElement checkMethod='roles' orgId={props.org_id}>
|
|
<Modal
|
|
isDialogOpen={newCourseModal}
|
|
onOpenChange={setNewCourseModal}
|
|
minHeight="md"
|
|
dialogContent={<CreateCourseModal
|
|
closeModal={closeNewCourseModal}
|
|
orgslug={orgslug}
|
|
></CreateCourseModal>}
|
|
dialogTitle="Create Course"
|
|
dialogDescription="Create a new course"
|
|
dialogTrigger={
|
|
<button>
|
|
<NewCourseButton />
|
|
</button>}
|
|
/>
|
|
</AuthenticatedClientElement>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
|
|
|
|
</GeneralWrapperStyled>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Courses |