76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
import { handlebars, space } from "$sb/syscalls.ts";
|
|
import { handlebarHelpers } from "../../common/syscalls/handlebar_helpers.ts";
|
|
import { PageMeta } from "$sb/types.ts";
|
|
import { render } from "preact";
|
|
|
|
export function defaultJsonTransformer(_k: string, v: any) {
|
|
if (v === undefined) {
|
|
return "";
|
|
}
|
|
if (typeof v === "string") {
|
|
return v.replaceAll("\n", " ").replaceAll("|", "\\|");
|
|
}
|
|
return "" + v;
|
|
}
|
|
|
|
// Nicely format an array of JSON objects as a Markdown table
|
|
export function jsonToMDTable(
|
|
jsonArray: any[],
|
|
valueTransformer: (k: string, v: any) => string = defaultJsonTransformer,
|
|
): string {
|
|
const headers = new Set<string>();
|
|
for (const entry of jsonArray) {
|
|
for (const k of Object.keys(entry)) {
|
|
headers.add(k);
|
|
}
|
|
}
|
|
|
|
const headerList = [...headers];
|
|
const lines = [];
|
|
lines.push(
|
|
"|" +
|
|
headerList
|
|
.map(
|
|
(headerName) => headerName,
|
|
)
|
|
.join("|") +
|
|
"|",
|
|
);
|
|
lines.push(
|
|
"|" +
|
|
headerList
|
|
.map(() => "--")
|
|
.join("|") +
|
|
"|",
|
|
);
|
|
for (const val of jsonArray) {
|
|
const el = [];
|
|
for (const prop of headerList) {
|
|
const s = valueTransformer(prop, val[prop]);
|
|
el.push(s);
|
|
}
|
|
lines.push("|" + el.join("|") + "|");
|
|
}
|
|
return lines.join("\n");
|
|
}
|
|
|
|
export async function renderTemplate(
|
|
pageMeta: PageMeta,
|
|
renderTemplate: string,
|
|
data: any[],
|
|
renderAll: boolean,
|
|
): Promise<string> {
|
|
let templateText = await space.readPage(renderTemplate);
|
|
if (!renderAll) {
|
|
templateText = `{{#each .}}\n${templateText}\n{{/each}}`;
|
|
}
|
|
return handlebars.renderTemplate(templateText, data, { page: pageMeta });
|
|
}
|
|
|
|
export function buildHandebarOptions(pageMeta: PageMeta) {
|
|
return {
|
|
helpers: handlebarHelpers(),
|
|
data: { page: pageMeta },
|
|
};
|
|
}
|