import { ApiError } from '$lib/api/client'; import { listMyBookmarks } from '$lib/api/bookmarks'; import { listMyCollections } from '$lib/api/collections'; import { listMyReadProgress } from '$lib/api/read_progress'; import { listMyPageTags, listMyDistinctPageTags } from '$lib/api/page_tags'; import type { PageLoad } from './$types'; export const ssr = false; /** * Loads bookmarks + collections + history + page-tags in one shot so * the Library segmented control can swap between sub-tabs without * firing a second round trip per tap. 401 → unauthenticated path; the * page surfaces a sign-in prompt and renders empty lists. */ export const load: PageLoad = async () => { const empty = { authenticated: true, bookmarks: [] as Awaited>['items'], collections: [] as Awaited>['items'], history: [] as Awaited>['items'], pageTags: [] as Awaited>['items'], distinctPageTags: [] as Awaited>, error: null as string | null }; // Streamed so the active sub-tab shows a skeleton while the one-shot fetch // (also the auth gate) is in flight. return { result: (async () => { try { const [bookmarks, collections, history, pageTags, distinctPageTags] = await Promise.all([ listMyBookmarks(), listMyCollections({ limit: 200 }), listMyReadProgress({ limit: 100 }), listMyPageTags({ limit: 100 }), listMyDistinctPageTags(undefined, 100) ]); return { ...empty, bookmarks: bookmarks.items, collections: collections.items, history: history.items, pageTags: pageTags.items, distinctPageTags }; } catch (e) { if (e instanceof ApiError && e.status === 401) { return { ...empty, authenticated: false }; } // An HTTP error or a raw network failure (a non-ApiError // TypeError) renders inline rather than escaping to the // framework error page for a transient API blip. const message = e instanceof ApiError ? e.message : 'Something went wrong.'; return { ...empty, error: message }; } })() }; };