File size: 3,393 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { json } from "@sveltejs/kit";

export const prerender = true;

function removeMarkdown(markdown) {
	return markdown
		.replace(/^#{1,6}\s+/gm, "")
		.replace(/(\*\*|__)(.*?)\1/g, "$2")
		.replace(/(\*|_)(.*?)\1/g, "$2")
		.replace(/~~(.*?)~~/g, "$1")
		.replace(/`([^`]+)`/g, "$1")
		.replace(/```[\s\S]*?```/g, "")
		.replace(/!\[.*?\]\(.*?\)/g, "")
		.replace(/\[(.*?)\]\(.*?\)/g, "$1")
		.replace(/^>\s+/gm, "")
		.replace(/^---$/gm, "")
		.replace(/^\s*[-+*]\s+/gm, "")
		.replace(/^\s*\d+\.\s+/gm, "")
		.replace(/\n{2,}/g, "\n")
		.trim();
}

export async function GET() {
	const gradio_doc_paths = import.meta.glob(
		"/src/lib/templates/gradio/**/*.svx"
	);
	const gradio_doc_pages = await Promise.all(
		Object.entries(gradio_doc_paths).map(async ([path, content]) => {
			content = await content();
			content = content.default.render().html;
			let match = content.match(/<h1[^>]*>(.*?)<\/h1>/i);
			let title = "";
			if (match && match[1]) {
				title = match[1];
			}
			path = path.split("/").slice(-1)[0];
			path = path.match(/(?:\d{2}_)?(.+)/i)[1];
			path = "/main/docs/gradio/" + path.split(".svx")[0];

			return {
				title: title,
				slug: path,
				content: content.replaceAll(/<[^>]*>?/gm, ""),
				type: "DOCS"
			};
		})
	);

	const client_doc_paths = import.meta.glob(
		"/src/lib/templates/python-client/**/*.svx"
	);
	const client_doc_pages = await Promise.all(
		Object.entries(client_doc_paths).map(async ([path, content]) => {
			content = await content();
			content = content.default.render().html;
			let match = content.match(/<h1[^>]*>(.*?)<\/h1>/i);
			let title = "";
			if (match && match[1]) {
				title = match[1];
			}
			path = path.split("/").slice(-1)[0];
			path = path.match(/(?:\d{2}_)?(.+)/i)[1];
			path = "/main/docs/python-client/" + path.split(".svx")[0];

			return {
				title: title,
				slug: path,
				content: content.replaceAll(/<[^>]*>?/gm, ""),
				type: "DOCS"
			};
		})
	);

	const guide_paths = import.meta.glob("/src/lib/json/guides/*.json");
	delete guide_paths["/src/lib/json/guides/guides_by_category.json"];
	delete guide_paths["/src/lib/json/guides/guide_names.json"];
	const guide_pages = await Promise.all(
		Object.entries(guide_paths).map(async ([path, content]) => {
			content = await content();
			content = content.default.guide;
			return {
				title: content.pretty_name,
				slug: content.url,
				content: removeMarkdown(content.content.replaceAll(/<[^>]*>?/gm, "")),
				type: "GUIDE"
			};
		})
	);

	const jsons_path = import.meta.glob("/src/lib/json/docs.json");
	const jsons_content = await jsons_path["/src/lib/json/docs.json"]();

	const js_client_page = {
		title: "JavaScript Client Library",
		slug: "/docs/js-client",
		content: removeMarkdown(jsons_content.default.js_client),
		type: "DOCS"
	};

	const js_components = jsons_content.default.js;
	const js_pages = await Promise.all(
		Object.entries(js_components).map(async ([name, content]) => {
			return {
				title: name,
				slug: "/docs/js/" + name,
				content: removeMarkdown(content.replaceAll(/<[^>]*>?/gm, "")),
				type: "DOCS"
			};
		})
	);

	let all_pages = gradio_doc_pages
		.concat(client_doc_pages)
		.concat(guide_pages)
		.concat([js_client_page])
		.concat(js_pages);
	return json(all_pages);
}