computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.7 KiB
63 lines
1.7 KiB
import type { APIRoute } from 'astro'; |
|
import { getAllCourses, getChaptersByCourseId } from '../../../lib/course'; |
|
|
|
export async function getStaticPaths() { |
|
const courses = await getAllCourses(); |
|
const coursesWithChapters = await Promise.all( |
|
courses.map(async (course) => { |
|
const filteredCourse = course.frontmatter; |
|
const chapters = await getChaptersByCourseId(course.id); |
|
const enrichedChapters = chapters |
|
.filter((chapter) => chapter?.lessons?.length > 0) |
|
.map((chapter) => { |
|
return { |
|
...chapter.frontmatter, |
|
id: chapter.id, |
|
lessons: |
|
chapter?.lessons?.map((lesson) => { |
|
return { |
|
...lesson.frontmatter, |
|
id: lesson.id, |
|
}; |
|
}) ?? [], |
|
}; |
|
}); |
|
|
|
const lessonsCount = enrichedChapters.reduce( |
|
(acc, chapter) => acc + chapter?.lessons?.length, |
|
0, |
|
); |
|
const chaptersCount = enrichedChapters.length; |
|
|
|
return { |
|
id: course.id, |
|
...filteredCourse, |
|
lessonsCount, |
|
chaptersCount, |
|
// FIXME: let's discuss if we need to include the chapters here |
|
// or if we should just include the count |
|
// chapters: enrichedChapters, |
|
}; |
|
}), |
|
); |
|
|
|
return coursesWithChapters.map((course) => { |
|
return { |
|
params: { |
|
courseId: course.id, |
|
}, |
|
props: { |
|
course, |
|
}, |
|
}; |
|
}); |
|
} |
|
|
|
export const GET: APIRoute = async function ({ params, request, props }) { |
|
return new Response(JSON.stringify(props.course), { |
|
status: 200, |
|
headers: { |
|
'Content-Type': 'application/json', |
|
}, |
|
}); |
|
};
|
|
|