-
-
Notifications
You must be signed in to change notification settings - Fork 68
feat: implement automatic course completion tracking with dashboard i… #851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,11 +1,23 @@ | ||||||||||||||||||||
| import React from "react"; | ||||||||||||||||||||
| import React, { useEffect, useState } from "react"; | ||||||||||||||||||||
| import Link from "next/link"; | ||||||||||||||||||||
| import { useSession } from "next-auth/react"; | ||||||||||||||||||||
| import Layout01 from "@layout/layout-01"; | ||||||||||||||||||||
| import type { GetStaticProps, NextPage } from "next"; | ||||||||||||||||||||
| import SEO from "@components/seo/page-seo"; | ||||||||||||||||||||
| import Breadcrumb from "@components/breadcrumb"; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| type Enrollment = { | ||||||||||||||||||||
| id: string; | ||||||||||||||||||||
| progress: number; | ||||||||||||||||||||
| status: string; | ||||||||||||||||||||
| completedAt: string | null; | ||||||||||||||||||||
| course: { | ||||||||||||||||||||
| id: string; | ||||||||||||||||||||
| title: string; | ||||||||||||||||||||
| estimatedHours: number | null; | ||||||||||||||||||||
| }; | ||||||||||||||||||||
| }; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| type PageProps = { | ||||||||||||||||||||
| layout?: { | ||||||||||||||||||||
| headerShadow: boolean; | ||||||||||||||||||||
|
|
@@ -20,8 +32,42 @@ type PageWithLayout = NextPage<PageProps> & { | |||||||||||||||||||
|
|
||||||||||||||||||||
| const Dashboard: PageWithLayout = () => { | ||||||||||||||||||||
| const { data: session, status } = useSession(); | ||||||||||||||||||||
| const [enrollments, setEnrollments] = useState<Enrollment[]>([]); | ||||||||||||||||||||
| const [loading, setLoading] = useState(true); | ||||||||||||||||||||
|
|
||||||||||||||||||||
| useEffect(() => { | ||||||||||||||||||||
| if (status === "authenticated") { | ||||||||||||||||||||
| fetchEnrollments(); | ||||||||||||||||||||
| } | ||||||||||||||||||||
| }, [status]); | ||||||||||||||||||||
|
|
||||||||||||||||||||
| const fetchEnrollments = async () => { | ||||||||||||||||||||
| try { | ||||||||||||||||||||
| setLoading(true); | ||||||||||||||||||||
| const response = await fetch("/api/enrollment/enroll"); | ||||||||||||||||||||
| const data = await response.json(); | ||||||||||||||||||||
|
|
||||||||||||||||||||
| if (response.ok) { | ||||||||||||||||||||
| setEnrollments(data.enrollments); | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } catch (error) { | ||||||||||||||||||||
| console.error("Error fetching enrollments:", error); | ||||||||||||||||||||
| } finally { | ||||||||||||||||||||
| setLoading(false); | ||||||||||||||||||||
| } | ||||||||||||||||||||
| }; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| if (status === "loading") { | ||||||||||||||||||||
| // Calculate stats from enrollments | ||||||||||||||||||||
| const stats = { | ||||||||||||||||||||
| enrolled: enrollments.filter((e) => e.status === "ACTIVE" || e.status === "COMPLETED").length, | ||||||||||||||||||||
|
Comment on lines
+60
to
+62
|
||||||||||||||||||||
| // Calculate stats from enrollments | |
| const stats = { | |
| enrolled: enrollments.filter((e) => e.status === "ACTIVE" || e.status === "COMPLETED").length, | |
| const isActiveOrCompleted = (e: Enrollment) => | |
| e.status === "ACTIVE" || e.status === "COMPLETED"; | |
| // Calculate stats from enrollments | |
| const stats = { | |
| enrolled: enrollments.filter(isActiveOrCompleted).length, |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting completedAt to null when a course is not complete will overwrite any existing completion date if a user uncompletes a lesson after finishing a course. Consider only setting completedAt when isComplete is true, without explicitly setting it to null.