Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/web/src/routes/about/[page]/+page.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (21 sloc)
954 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { ComponentType, SvelteComponent } from 'svelte'; | |
import { get } from 'svelte/store'; | |
import { error } from '@sveltejs/kit'; | |
import type { PageLoad } from './$types'; | |
import locale from '$lib/i18n/locale'; | |
import type { DefaultImport } from '$lib/types/generic'; | |
import { defaultLocale } from '$lib/i18n/translations'; | |
const pages = import.meta.glob('$i18n/*/about/*.md'); | |
export const load: PageLoad = async ({ params }) => { | |
const getPage = (locale: string) => Object.keys(pages).find( | |
file => file.endsWith(`${locale}/about/${params.page}.md`) | |
); | |
const componentPath = getPage(get(locale)) || getPage(defaultLocale); | |
if (componentPath) { | |
type Component = ComponentType<SvelteComponent>; | |
const componentImport = pages[componentPath] as DefaultImport<Component>; | |
return { component: (await componentImport()).default } | |
} | |
error(404, 'Not found'); | |
}; | |
export const prerender = true; |