-
Notifications
You must be signed in to change notification settings - Fork 301
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
General
: Display recently accessed courses on top
#7827
Changes from all commits
c41bac1
66f035b
313ec0d
634feb5
ddc194d
40d30ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { Injectable } from '@angular/core'; | ||
import { LocalStorageService } from 'ngx-webstorage'; | ||
|
||
@Injectable({ | ||
providedIn: 'root', | ||
}) | ||
export class CourseAccessStorageService { | ||
private static readonly STORAGE_KEY = 'artemis.courseAccess'; | ||
|
||
constructor(private localStorage: LocalStorageService) {} | ||
|
||
onCourseAccessed(courseId: number): void { | ||
const courseAccessMap: { [key: number]: number } = this.localStorage.retrieve(CourseAccessStorageService.STORAGE_KEY) || {}; | ||
|
||
courseAccessMap[courseId] = Date.now(); | ||
|
||
if (Object.keys(courseAccessMap).length > 3) { | ||
const oldestEntry = Object.entries(courseAccessMap).reduce((prev, curr) => (prev[1] < curr[1] ? prev : curr)); | ||
delete courseAccessMap[oldestEntry[0]]; | ||
} | ||
|
||
this.localStorage.store(CourseAccessStorageService.STORAGE_KEY, courseAccessMap); | ||
} | ||
|
||
getLastAccessedCourses(): number[] { | ||
const courseAccessMap: { [key: number]: number } = this.localStorage.retrieve(CourseAccessStorageService.STORAGE_KEY) || {}; | ||
|
||
return Object.entries(courseAccessMap) | ||
.sort((a, b) => b[1] - a[1]) | ||
.map((entry) => Number(entry[0])); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -49,8 +49,24 @@ <h3 class="fw-medium" jhiTranslate="artemisApp.studentDashboard.title">Your curr | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<a class="btn btn-primary" [routerLink]="['/courses/enroll']">{{ 'artemisApp.studentDashboard.enroll.title' | artemisTranslate }}</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@if (recentlyAccessedCourses.length > 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="row"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<h4 class="col mb-3 fw-medium" jhiTranslate="artemisApp.studentDashboard.recentlyAccessed">Recently Accessed Courses</h4> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="row"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@for (course of recentlyAccessedCourses; track course) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<jhi-overview-course-card class="col-12 col-lg-6 col-xl-4 pe-2 ps-2 mb-3" [course]="course" [hasGuidedTour]="course === courseForGuidedTour"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</jhi-overview-course-card> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@if (regularCourses.length > 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="row"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<h4 class="col mb-3 fw-medium" jhiTranslate="artemisApp.studentDashboard.otherCourses">Other Courses</h4> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+52
to
+67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The conditional rendering for 'Recently Accessed Courses' and 'Other Courses' is implemented correctly using Angular's structural directives. Ensure that the - @for (course of recentlyAccessedCourses; track course) {
+ @for (course of recentlyAccessedCourses; trackBy: trackCourse) { Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="row"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@for (course of courses; track course) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@for (course of regularCourses; track course) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<jhi-overview-course-card class="col-12 col-lg-6 col-xl-4 pe-2 ps-2 mb-3" [course]="course" [hasGuidedTour]="course === courseForGuidedTour"> </jhi-overview-course-card> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -14,18 +14,23 @@ import dayjs from 'dayjs/esm'; | |||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Exam } from 'app/entities/exam.model'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { Router } from '@angular/router'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { faPenAlt } from '@fortawesome/free-solid-svg-icons'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { CourseAccessStorageService } from 'app/course/course-access-storage.service'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import { CourseForDashboardDTO } from 'app/course/manage/course-for-dashboard-dto'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Component({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
selector: 'jhi-overview', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
templateUrl: './courses.component.html', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
styleUrls: ['./courses.component.scss'], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
export class CoursesComponent implements OnInit, OnChanges, OnDestroy { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
public courses: Course[]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
courses: Course[]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
public nextRelevantCourse?: Course; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
nextRelevantCourseForExam?: Course; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
nextRelevantExams?: Exam[]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
public recentlyAccessedCourses: Course[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
public regularCourses: Course[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
courseForGuidedTour?: Course; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
quizExercisesChannels: string[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -41,6 +46,7 @@ export class CoursesComponent implements OnInit, OnChanges, OnDestroy { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
private teamService: TeamService, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
private jhiWebsocketService: JhiWebsocketService, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
private router: Router, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
private courseAccessStorageService: CourseAccessStorageService, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
) {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
async ngOnInit() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -66,14 +72,15 @@ export class CoursesComponent implements OnInit, OnChanges, OnDestroy { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
next: (res: HttpResponse<CoursesForDashboardDTO>) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (res.body) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
const courses: Course[] = []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
res.body.courses.forEach((courseDto) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
res.body.courses.forEach((courseDto: CourseForDashboardDTO) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
courses.push(courseDto.course); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.courses = courses.sort((a, b) => (a.title ?? '').localeCompare(b.title ?? '')); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.courseForGuidedTour = this.guidedTourService.enableTourForCourseOverview(this.courses, courseOverviewTour, true); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.nextRelevantExams = res.body.activeExams ?? []; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.nextRelevantExercise = this.findNextRelevantExercise(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.sortCoursesInRecentlyAccessedAndRegularCourses(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -113,6 +120,20 @@ export class CoursesComponent implements OnInit, OnChanges, OnDestroy { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Sorts the courses into recently accessed and regular courses. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
* If there are less than 5 courses, all courses are displayed in the regular courses section. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
sortCoursesInRecentlyAccessedAndRegularCourses() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (this.courses.length <= 5) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.regularCourses = this.courses; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
const lastAccessedCourseIds = this.courseAccessStorageService.getLastAccessedCourses(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.recentlyAccessedCourses = this.courses.filter((course) => lastAccessedCourseIds.includes(course.id!)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
this.regularCourses = this.courses.filter((course) => !lastAccessedCourseIds.includes(course.id!)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+123
to
+135
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The method - this.recentlyAccessedCourses = this.courses.filter((course) => lastAccessedCourseIds.includes(course.id!));
+ this.recentlyAccessedCourses = this.courses.filter((course) => course.id && lastAccessedCourseIds.includes(course.id)); Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Sets the course for the next upcoming exam and returns the next upcoming exam or undefined | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
The method
onCourseAccessed
correctly updates the timestamp for the accessed course. However, the logic to limit the stored courses to 3 is not scalable if the requirements change to store more or fewer courses. Consider making the limit a configurable property of the service.Committable suggestion