Move fetch logic to server file. Fix status 500 when reload

This commit is contained in:
lukas
2026-04-15 23:33:53 +02:00
parent adb81b2c0f
commit cccf88230e
2 changed files with 14 additions and 24 deletions
+6 -24
View File
@@ -2,16 +2,16 @@
import { page } from '$app/state';
import { Button } from 'bits-ui';
import CoursePie from '$lib/components/CoursePie.svelte';
import { getCourseStatistic, type DataCourseStatistic } from 'liu-tentor-package';
import type { DataCourseStatistic } from 'liu-tentor-package';
import { locale, getTranslation } from '$lib/i18n';
import type { Locale } from '$lib/i18n/translations';
import type { LanguageContent } from 'liu-tentor-package';
import type { PageData } from './$types';
let { data }: { data: PageData } = $props();
let course = page.params.course;
let loading = $state(true);
let error: null | Error = $state(null);
let courseStats: DataCourseStatistic = $state({} as DataCourseStatistic);
let courseStats: DataCourseStatistic = $derived(data.courseStats ?? ({} as DataCourseStatistic));
let currentPage = $state(0);
let selectedModuleCode = $state<string | undefined>(undefined);
let currentLocale = $state<Locale>('en');
@@ -19,20 +19,6 @@
locale.subscribe((l) => (currentLocale = l));
$effect(() => {
getCourseStats();
});
async function getCourseStats() {
if (!course) {
error = new Error('Course not found');
loading = false;
return;
}
courseStats = (await getCourseStatistic(course)) ?? ({} as DataCourseStatistic);
loading = false;
}
function next() {
currentPage++;
}
@@ -68,11 +54,7 @@
<p>{getLocalizedTitle(courseStats.courseTitle)}</p>
</div>
{#if loading}
<p>{getTranslation('loading', currentLocale)}</p>
{:else if error}
<p>{error.message}</p>
{:else if courseStats?.modules}
{#if courseStats?.modules}
<div class="mx-auto mt-8 flex max-w-5xl items-center justify-between px-4">
<select
bind:value={selectedModuleCode}
+8
View File
@@ -0,0 +1,8 @@
import { getCourseStatistic } from 'liu-tentor-package';
import type { PageLoad } from './$types';
export const load: PageLoad = async ({ params }) => {
const course = params.course;
const courseStats = await getCourseStatistic(course);
return { courseStats };
};