mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-25 17:42:53 +00:00
27 lines
808 B
TypeScript
27 lines
808 B
TypeScript
import { get } from 'svelte/store'
|
|
|
|
import type { LayoutLoad } from './$types'
|
|
|
|
import { getParentForSpecial } from '$lib/modules/anilist'
|
|
import { asyncStore } from '$lib/modules/anilist/client'
|
|
import { IDMedia } from '$lib/modules/anilist/queries'
|
|
import { episodes } from '$lib/modules/anizip'
|
|
|
|
export const load: LayoutLoad = async ({ params, fetch }) => {
|
|
const store = asyncStore(IDMedia, { id: Number(params.id) }, { requestPolicy: 'cache-first' })
|
|
|
|
let eps = await episodes(Number(params.id), fetch)
|
|
|
|
if (!eps?.mappings?.anidb_id) {
|
|
const anime = await store
|
|
const parentID = getParentForSpecial(get(anime).Media!)
|
|
if (!parentID) return { eps, anime }
|
|
eps = await episodes(parentID, fetch)
|
|
}
|
|
|
|
return {
|
|
eps,
|
|
// mappings: await mappings,
|
|
anime: await store
|
|
}
|
|
}
|