1
0
silverbullet/web/boot.ts

72 lines
1.9 KiB
TypeScript
Raw Normal View History

import { Editor } from "./editor.tsx";
import { parseYamlSettings, safeRun } from "../common/util.ts";
import { Space } from "../common/spaces/space.ts";
import { HttpSpacePrimitives } from "../common/spaces/http_space_primitives.ts";
2022-11-24 11:04:00 +00:00
import { PlugSpacePrimitives } from "../server/hooks/plug_space_primitives.ts";
import { PageNamespaceHook } from "../server/hooks/page_namespace.ts";
import { SilverBulletHooks } from "../common/manifest.ts";
import { System } from "../plugos/system.ts";
2022-12-15 12:23:49 +00:00
import { BuiltinSettings } from "./types.ts";
safeRun(async () => {
2022-12-05 11:14:21 +00:00
const httpPrimitives = new HttpSpacePrimitives("");
let settingsPageText = "";
2022-12-05 11:14:21 +00:00
try {
settingsPageText = (
await httpPrimitives.readFile("SETTINGS.md", "string")
).data as string;
} catch (e: any) {
console.error("No settings page found", e.message);
}
2022-11-24 11:04:00 +00:00
// Instantiate a PlugOS system for the client
const system = new System<SilverBulletHooks>("client");
// Attach the page namespace hook
const namespaceHook = new PageNamespaceHook();
system.addHook(namespaceHook);
const spacePrimitives = new PlugSpacePrimitives(
httpPrimitives,
namespaceHook,
"client",
);
const serverSpace = new Space(spacePrimitives);
serverSpace.watch();
console.log("Booting...");
2022-12-15 12:23:49 +00:00
const settings = parseYamlSettings(settingsPageText) as BuiltinSettings;
if (!settings.indexPage) {
settings.indexPage = "index";
}
const editor = new Editor(
serverSpace,
2022-11-24 11:04:00 +00:00
system,
document.getElementById("sb-root")!,
"",
2022-12-15 12:23:49 +00:00
settings,
);
// @ts-ignore: for convenience
window.editor = editor;
2022-10-25 16:50:07 +00:00
await editor.init();
});
if (navigator.serviceWorker) {
navigator.serviceWorker
2022-11-24 11:04:00 +00:00
.register(new URL("/service_worker.js", location.href), {
type: "module",
})
2022-11-24 15:55:30 +00:00
.then(() => {
console.log("Service worker registered...");
});
} else {
console.log(
"No launching service worker (not present, maybe because not running on localhost or over SSL)",
);
}