Add chapter page

pull/8127/head
Kamran Ahmed 5 months ago
parent de3c9b66fe
commit 13212c2f50
  1. 44
      src/components/Course/Chapter.tsx
  2. 37
      src/components/Course/CircularProgress.tsx

@ -6,6 +6,7 @@ import { useCourseProgress } from '../../hooks/use-course';
import { CheckIcon } from '../ReactIcons/CheckIcon'; import { CheckIcon } from '../ReactIcons/CheckIcon';
import { getPercentage } from '../../helper/number'; import { getPercentage } from '../../helper/number';
import { useIsMounted } from '../../hooks/use-is-mounted'; import { useIsMounted } from '../../hooks/use-is-mounted';
import { CircularProgress } from './CircularProgress';
function LeftBorder({ hasCompleted }: { hasCompleted?: boolean }) { function LeftBorder({ hasCompleted }: { hasCompleted?: boolean }) {
return ( return (
@ -55,9 +56,11 @@ export function Chapter(props: ChapterProps) {
[courseProgress], [courseProgress],
); );
const isChapterCompleted = lessons.every((lesson) => const isChapterCompleted =
completeLessonSet.has(`${chapterId}/${lesson.id}`), lessons.length > 0 &&
); lessons.every((lesson) =>
completeLessonSet.has(`${chapterId}/${lesson.id}`),
);
const completedPercentage = useMemo(() => { const completedPercentage = useMemo(() => {
const completedCount = lessons.filter((lesson) => const completedCount = lessons.filter((lesson) =>
@ -93,25 +96,30 @@ export function Chapter(props: ChapterProps) {
)} )}
onClick={onChapterClick} onClick={onChapterClick}
> >
<div className="text-400 flex h-[21px] w-[21px] flex-shrink-0 items-center justify-center rounded-full bg-gray-400/70 text-xs text-white"> <CircularProgress
{index} isVisible={!isChapterCompleted}
</div> percentage={Number(completedPercentage) || 5}
>
<div
className={cn(
'text-400 flex h-[21px] w-[21px] flex-shrink-0 items-center justify-center rounded-full bg-gray-400/70 text-xs text-white',
{
'bg-black': isActive,
'bg-green-600': isChapterCompleted,
},
)}
>
{!isChapterCompleted && index}
{isChapterCompleted && (
<Check className="h-3 w-3 stroke-[3] text-white" />
)}
</div>
</CircularProgress>
<span className="truncate text-left">{title}</span> <span className="truncate text-left">{title}</span>
{/*Right check of completion*/}
{isChapterCompleted && lessons.length > 0 && (
<CheckIcon additionalClasses="h-4 w-4 ml-auto flex-shrink-0" />
)}
{/*/!* active background indicator *!/*/}
{/*<div*/}
{/* className="absolute inset-0 -z-10 bg-gray-100"*/}
{/* style={{*/}
{/* width: `${completedPercentage}%`,*/}
{/* }}*/}
{/*/>*/}
</button> </button>
{isActive && ( {isActive && (
<div className="flex flex-col border-b bg-gray-100"> <div className="flex flex-col border-b bg-gray-100 pl-[5px]">
{lessons.length > 0 && ( {lessons.length > 0 && (
<> <>
<LessonList <LessonList

@ -0,0 +1,37 @@
export function CircularProgress({
percentage,
children,
isVisible = true,
}: {
percentage: number;
children: React.ReactNode;
isVisible?: boolean;
}) {
const circumference = 2 * Math.PI * 13;
const strokeDasharray = `${circumference}`;
const strokeDashoffset = circumference - (percentage / 100) * circumference;
return (
<div className="relative flex h-[28px] w-[28px] items-center justify-center">
{isVisible && (
<svg className="absolute h-full w-full -rotate-90">
<circle
cx="14"
cy="14"
r="13"
stroke="currentColor"
strokeWidth="1.75"
fill="none"
className="text-green-600"
style={{
strokeDasharray,
strokeDashoffset,
transition: 'stroke-dashoffset 0.3s ease',
}}
/>
</svg>
)}
{children}
</div>
);
}
Loading…
Cancel
Save