2022-10-10 12:50:21 +00:00
|
|
|
import { findNodeOfType, traverseTree } from "../../common/tree.ts";
|
|
|
|
import { parseMarkdown } from "../../syscall/silverbullet-syscall/markdown.ts";
|
2022-09-01 08:17:20 +00:00
|
|
|
import {
|
|
|
|
readPage,
|
|
|
|
writePage,
|
2022-10-10 12:50:21 +00:00
|
|
|
} from "../../syscall/silverbullet-syscall/space.ts";
|
|
|
|
import * as YAML from "yaml";
|
2022-07-15 09:17:02 +00:00
|
|
|
|
|
|
|
export async function readYamlPage(
|
|
|
|
pageName: string,
|
2022-10-10 12:50:21 +00:00
|
|
|
allowedLanguages = ["yaml"],
|
2022-07-15 09:17:02 +00:00
|
|
|
): Promise<any> {
|
|
|
|
const { text } = await readPage(pageName);
|
|
|
|
let tree = await parseMarkdown(text);
|
|
|
|
let data: any = {};
|
|
|
|
|
|
|
|
traverseTree(tree, (t): boolean => {
|
|
|
|
// Find a fenced code block
|
|
|
|
if (t.type !== "FencedCode") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let codeInfoNode = findNodeOfType(t, "CodeInfo");
|
|
|
|
if (!codeInfoNode) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!allowedLanguages.includes(codeInfoNode.children![0].text!)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let codeTextNode = findNodeOfType(t, "CodeText");
|
|
|
|
if (!codeTextNode) {
|
|
|
|
// Honestly, this shouldn't happen
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let codeText = codeTextNode.children![0].text!;
|
|
|
|
try {
|
|
|
|
data = YAML.parse(codeText);
|
|
|
|
} catch (e: any) {
|
|
|
|
console.error("YAML Page parser error", e);
|
|
|
|
throw new Error(`YAML Error: ${e.message}`);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2022-09-01 08:17:20 +00:00
|
|
|
|
|
|
|
export async function writeYamlPage(
|
|
|
|
pageName: string,
|
2022-10-10 12:50:21 +00:00
|
|
|
data: any,
|
2022-09-01 08:17:20 +00:00
|
|
|
): Promise<void> {
|
|
|
|
const text = YAML.stringify(data);
|
|
|
|
await writePage(pageName, "```yaml\n" + text + "\n```");
|
|
|
|
}
|