File size: 715 Bytes
db39944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { json } from '@sveltejs/kit'
import type { Snippet } from '$lib/types'

async function getSnippets() {
	const snippets: Snippet[] = []

	const paths = import.meta.glob('/src/snippets/*.md', { eager: true })

	for (const path in paths) {
		const file = paths[path]
		const slug = path.split('/').at(-1)?.replace('.md', '')

		if (file && typeof file === 'object' && 'metadata' in file && slug) {
			const metadata = file.metadata as Omit<Snippet, 'slug'>
			const snippet = { ...metadata, slug } satisfies Snippet
			snippets.push(snippet)
		}
	}

	return snippets.sort((a, b) => a.title.localeCompare(b.title))
}

export async function GET() {
	const snippets = await getSnippets()
	return json(snippets)
}