mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
95 lines
No EOL
4.5 KiB
TypeScript
95 lines
No EOL
4.5 KiB
TypeScript
import { useAssignments } from '@components/Contexts/Assignments/AssignmentContext';
|
|
import { useAssignmentsTask } from '@components/Contexts/Assignments/AssignmentsTaskContext';
|
|
import { useCourse } from '@components/Contexts/CourseContext';
|
|
import { useOrg } from '@components/Contexts/OrgContext';
|
|
import { getTaskRefFileDir } from '@services/media/media';
|
|
import TaskFileObject from 'app/orgs/[orgslug]/dash/assignments/[assignmentuuid]/_components/TaskEditor/Subs/TaskTypes/TaskFileObject';
|
|
import TaskQuizObject from 'app/orgs/[orgslug]/dash/assignments/[assignmentuuid]/_components/TaskEditor/Subs/TaskTypes/TaskQuizObject'
|
|
import { Backpack, Calendar, Download, EllipsisVertical, Info } from 'lucide-react';
|
|
import Link from 'next/link';
|
|
import React, { useEffect } from 'react'
|
|
|
|
function AssignmentStudentActivity() {
|
|
const assignments = useAssignments() as any;
|
|
const course = useCourse() as any;
|
|
const org = useOrg() as any;
|
|
|
|
useEffect(() => {
|
|
}, [assignments, org])
|
|
|
|
|
|
return (
|
|
<div className='flex flex-col space-y-6'>
|
|
<div className='flex flex-row justify-center space-x-3 items-center '>
|
|
<div className='text-xs h-fit flex space-x-3 items-center '>
|
|
<div className='flex space-x-2 py-2 px-5 h-fit text-sm text-slate-700 bg-slate-100/5 rounded-full nice-shadow'>
|
|
<Backpack size={18} />
|
|
<p className='font-semibold'>Assignment</p>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div className='flex space-x-2 items-center'>
|
|
<EllipsisVertical className='text-slate-400' size={18} />
|
|
<div className='flex space-x-2 items-center'>
|
|
<div className='flex space-x-2 text-xs items-center text-slate-400'>
|
|
<Calendar size={14} />
|
|
<p className=' font-semibold'>Due Date</p>
|
|
<p className=' font-semibold'>{assignments?.assignment_object?.due_date}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div className='w-full rounded-full bg-slate-500/5 nice-shadow h-[2px]'></div>
|
|
{assignments && assignments?.assignment_tasks?.sort((a: any, b: any) => a.id - b.id).map((task: any, index: number) => {
|
|
return (
|
|
<div className='flex flex-col space-y-2' key={task.assignment_task_uuid}>
|
|
<div className='flex justify-between py-2'>
|
|
<div className='flex space-x-2 font-semibold text-slate-800'>
|
|
<p>Task {index + 1} : </p>
|
|
<p className='text-slate-500'>{task.description}</p>
|
|
</div>
|
|
<div className='flex space-x-2'>
|
|
<div
|
|
onClick={() => alert(task.hint)}
|
|
className='px-3 py-1 flex items-center nice-shadow bg-amber-50/40 text-amber-900 rounded-full space-x-2 cursor-pointer'>
|
|
<Info size={13} />
|
|
<p className='text-xs font-semibold'>Hint</p>
|
|
</div>
|
|
<Link
|
|
href={getTaskRefFileDir(
|
|
org?.org_uuid,
|
|
assignments?.course_object.course_uuid,
|
|
assignments?.activity_object.activity_uuid,
|
|
assignments?.assignment_object.assignment_uuid,
|
|
task.assignment_task_uuid,
|
|
task.reference_file
|
|
)}
|
|
target='_blank'
|
|
download={true}
|
|
className='px-3 py-1 flex items-center nice-shadow bg-cyan-50/40 text-cyan-900 rounded-full space-x-2 cursor-pointer'>
|
|
<Download size={13} />
|
|
<div className='flex items-center space-x-2'>
|
|
{task.reference_file && (
|
|
<span className='relative'>
|
|
<span className='absolute right-0 top-0 block h-2 w-2 rounded-full ring-2 ring-white bg-green-400'></span>
|
|
</span>
|
|
)}
|
|
<p className='text-xs font-semibold'>Reference Document</p>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
{task.assignment_type === 'QUIZ' && <TaskQuizObject key={task.assignment_task_uuid} view='student' assignmentTaskUUID={task.assignment_task_uuid} />}
|
|
{task.assignment_type === 'FILE_SUBMISSION' && <TaskFileObject key={task.assignment_task_uuid} view='student' assignmentTaskUUID={task.assignment_task_uuid} />}
|
|
</div>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AssignmentStudentActivity |