2022-10-10 12:50:21 +00:00
|
|
|
import { YAML } from "./deps.ts";
|
2022-08-02 10:43:39 +00:00
|
|
|
|
2022-03-20 08:56:28 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function throttle(func: () => void, limit: number) {
|
|
|
|
let timer: any = null;
|
|
|
|
return function () {
|
|
|
|
if (!timer) {
|
|
|
|
timer = setTimeout(() => {
|
|
|
|
func();
|
|
|
|
timer = null;
|
|
|
|
}, limit);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
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
|
|
|
}
|