-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [wip] learning objective completion
- Loading branch information
1 parent
5dc4e00
commit 34d72a0
Showing
17 changed files
with
404 additions
and
198 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import PageHeader from "@/components/PageHeader"; | ||
import GenericPageContainer from "@/components/GenericPageContainer"; | ||
import VisualizationContainer from "@/components/VisualizationContainer"; | ||
import NoData from "@/components/NoData"; | ||
|
||
export default async function LearningCurves() { | ||
return ( | ||
<GenericPageContainer> | ||
<PageHeader | ||
title="Learning Curves" | ||
subtitle="Understand how students are performing over time." | ||
/> | ||
<VisualizationContainer | ||
title="Learning Curve" | ||
description="Performance vs. opportunity for each student" | ||
> | ||
<NoData width={1200} height={400} /> | ||
</VisualizationContainer> | ||
</GenericPageContainer> | ||
); | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import PageHeader from "@/components/PageHeader"; | ||
import GenericPageContainer from "@/components/GenericPageContainer"; | ||
import LearningObjectiveCompletion from "@/components/Visualizations/LearningObjectiveCompletion"; | ||
import { getLearningObjectiveCompletion } from "@/lib/analytics-functions"; | ||
|
||
export default async function LearningObjectives() { | ||
return ( | ||
<GenericPageContainer> | ||
<PageHeader | ||
title="Learning Objective Completion" | ||
subtitle="Understand student grasp of learning objectives based on their performance." | ||
/> | ||
<LearningObjectiveCompletion getData={getLearningObjectiveCompletion} /> | ||
</GenericPageContainer> | ||
); | ||
} |
This file contains 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 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 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 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 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 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 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
Oops, something went wrong.