1
0
silverbullet/common/util.ts

76 lines
1.8 KiB
TypeScript
Raw Normal View History

import { SETTINGS_TEMPLATE } from "./settings_template.ts";
import { YAML } from "./deps.ts";
import { SpacePrimitives } from "./spaces/space_primitives.ts";
2022-08-02 10:43:39 +00:00
export function safeRun(fn: () => Promise<void>) {
fn().catch((e) => {
console.error(e);
});
}
export function isMacLike() {
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
}
2022-08-02 10:43:39 +00:00
// TODO: This is naive, may be better to use a proper parser
const yamlSettingsRegex = /```yaml([^`]+)```/;
export function parseYamlSettings(settingsMarkdown: string): {
[key: string]: any;
} {
const match = yamlSettingsRegex.exec(settingsMarkdown);
if (!match) {
return {};
}
const yaml = match[1];
2022-12-15 12:23:49 +00:00
try {
return YAML.parse(yaml) as {
[key: string]: any;
};
} catch (e: any) {
console.error("Error parsing SETTINGS as YAML", e.message);
return {};
}
2022-08-02 10:43:39 +00:00
}
export async function ensureSettingsAndIndex(
space: SpacePrimitives,
2023-01-13 14:41:29 +00:00
): Promise<any> {
2023-05-29 07:53:49 +00:00
let settingsText: string | undefined;
try {
2023-05-29 07:53:49 +00:00
settingsText = new TextDecoder().decode(
(await space.readFile("SETTINGS.md")).data,
);
} catch (e: any) {
if (e.message === "Not found") {
await space.writeFile(
"SETTINGS.md",
new TextEncoder().encode(SETTINGS_TEMPLATE),
true,
);
} else {
console.error("Error reading settings", e.message);
console.error("Falling back to default settings");
}
2023-05-29 07:53:49 +00:00
settingsText = SETTINGS_TEMPLATE;
// Ok, then let's also check the index page
try {
await space.getFileMeta("index.md");
} catch {
await space.writeFile(
"index.md",
new TextEncoder().encode(
`Hello! And welcome to your brand new SilverBullet space!
2023-01-16 11:06:37 +00:00
2023-10-03 16:16:07 +00:00
\`\`\`template
page: "[[!silverbullet.md/Getting Started]]"
\`\`\`
`,
),
);
}
}
2023-05-29 07:53:49 +00:00
return parseYamlSettings(settingsText);
}