Files
OpenCut/apps/web/src/lib/blog-query.ts
T

65 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-07-24 14:41:34 -07:00
import type {
MarbleAuthorList,
MarbleCategoryList,
MarblePost,
MarblePostList,
MarbleTagList,
} from "@/types/post";
2025-07-21 23:18:07 +02:00
import { unified } from "unified";
import rehypeParse from "rehype-parse";
import rehypeStringify from "rehype-stringify";
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
2025-07-21 23:45:02 +02:00
import rehypeSanitize from "rehype-sanitize";
2025-07-21 23:18:07 +02:00
2025-07-24 14:41:34 -07:00
const url =
process.env.NEXT_PUBLIC_MARBLE_API_URL ?? "https://api.marblecms.com";
2025-07-22 00:43:27 +02:00
const key = process.env.MARBLE_WORKSPACE_KEY ?? "cmd4iw9mm0006l804kwqv0k46";
2025-07-21 23:18:07 +02:00
2025-07-21 23:45:02 +02:00
async function fetchFromMarble<T>(endpoint: string): Promise<T> {
2025-07-24 14:41:34 -07:00
try {
const response = await fetch(`${url}/${key}/${endpoint}`);
if (!response.ok) {
throw new Error(
`Failed to fetch ${endpoint}: ${response.status} ${response.statusText}`
);
2025-07-21 23:45:02 +02:00
}
2025-07-24 14:41:34 -07:00
return (await response.json()) as T;
} catch (error) {
console.error(`Error fetching ${endpoint}:`, error);
throw error;
2025-07-21 23:18:07 +02:00
}
2025-07-24 14:41:34 -07:00
}
export async function getPosts() {
return fetchFromMarble<MarblePostList>("posts");
}
export async function getTags() {
return fetchFromMarble<MarbleTagList>("tags");
}
export async function getSinglePost(slug: string) {
return fetchFromMarble<MarblePost>(`posts/${slug}`);
}
export async function getCategories() {
return fetchFromMarble<MarbleCategoryList>("categories");
}
export async function getAuthors() {
return fetchFromMarble<MarbleAuthorList>("authors");
}
2025-07-21 23:18:07 +02:00
export async function processHtmlContent(html: string): Promise<string> {
2025-07-24 14:41:34 -07:00
const processor = unified()
.use(rehypeSanitize)
.use(rehypeParse, { fragment: true })
.use(rehypeSlug)
.use(rehypeAutolinkHeadings, { behavior: "append" })
.use(rehypeStringify);
2025-07-21 23:18:07 +02:00
2025-07-24 14:41:34 -07:00
const file = await processor.process(html);
return String(file);
2025-07-22 00:43:27 +02:00
}