2022-04-25 08:33:38 +00:00
|
|
|
import { EventHook } from "@plugos/plugos/hooks/event";
|
|
|
|
import { Plug } from "@plugos/plugos/plug";
|
2022-04-26 18:31:31 +00:00
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
import { FileMeta } from "../types";
|
|
|
|
import { FileData, FileEncoding, SpacePrimitives } from "./space_primitives";
|
2022-04-08 15:46:09 +00:00
|
|
|
|
|
|
|
export class EventedSpacePrimitives implements SpacePrimitives {
|
|
|
|
constructor(private wrapped: SpacePrimitives, private eventHook: EventHook) {}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
fetchFileList(): Promise<FileMeta[]> {
|
|
|
|
return this.wrapped.fetchFileList();
|
2022-04-08 15:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proxySyscall(plug: Plug<any>, name: string, args: any[]): Promise<any> {
|
|
|
|
return this.wrapped.proxySyscall(plug, name, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
invokeFunction(
|
|
|
|
plug: Plug<any>,
|
|
|
|
env: string,
|
|
|
|
name: string,
|
|
|
|
args: any[]
|
|
|
|
): Promise<any> {
|
|
|
|
return this.wrapped.invokeFunction(plug, env, name, args);
|
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
readFile(
|
|
|
|
name: string,
|
|
|
|
encoding: FileEncoding
|
|
|
|
): Promise<{ data: FileData; meta: FileMeta }> {
|
|
|
|
return this.wrapped.readFile(name, encoding);
|
2022-04-08 15:46:09 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async writeFile(
|
|
|
|
name: string,
|
|
|
|
encoding: FileEncoding,
|
|
|
|
data: FileData,
|
|
|
|
selfUpdate: boolean
|
|
|
|
): Promise<FileMeta> {
|
|
|
|
const newMeta = await this.wrapped.writeFile(
|
|
|
|
name,
|
|
|
|
encoding,
|
|
|
|
data,
|
|
|
|
selfUpdate
|
2022-04-08 15:46:09 +00:00
|
|
|
);
|
|
|
|
// This can happen async
|
2022-09-12 12:50:37 +00:00
|
|
|
if (name.endsWith(".md")) {
|
|
|
|
const pageName = name.substring(0, name.length - 3);
|
|
|
|
let text = "";
|
|
|
|
switch (encoding) {
|
|
|
|
case "string":
|
|
|
|
text = data as string;
|
|
|
|
break;
|
|
|
|
case "arraybuffer":
|
|
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
text = decoder.decode(data as ArrayBuffer);
|
|
|
|
break;
|
|
|
|
case "dataurl":
|
|
|
|
throw Error("Data urls not supported in this context");
|
|
|
|
}
|
|
|
|
|
2022-04-13 12:46:52 +00:00
|
|
|
this.eventHook
|
2022-09-13 06:41:01 +00:00
|
|
|
.dispatchEvent("page:saved", pageName)
|
2022-04-13 12:46:52 +00:00
|
|
|
.then(() => {
|
2022-04-20 08:56:43 +00:00
|
|
|
return this.eventHook.dispatchEvent("page:index_text", {
|
2022-04-13 12:46:52 +00:00
|
|
|
name: pageName,
|
2022-04-20 08:56:43 +00:00
|
|
|
text,
|
2022-04-13 12:46:52 +00:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("Error dispatching page:saved event", e);
|
2022-04-08 15:46:09 +00:00
|
|
|
});
|
2022-04-13 12:46:52 +00:00
|
|
|
}
|
2022-09-12 12:50:37 +00:00
|
|
|
return newMeta;
|
2022-04-08 15:46:09 +00:00
|
|
|
}
|
2022-09-05 09:47:30 +00:00
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
getFileMeta(name: string): Promise<FileMeta> {
|
|
|
|
return this.wrapped.getFileMeta(name);
|
2022-09-05 09:47:30 +00:00
|
|
|
}
|
|
|
|
|
2022-09-12 12:50:37 +00:00
|
|
|
async deleteFile(name: string): Promise<void> {
|
|
|
|
if (name.endsWith(".md")) {
|
|
|
|
const pageName = name.substring(0, name.length - 3);
|
|
|
|
await this.eventHook.dispatchEvent("page:deleted", pageName);
|
|
|
|
}
|
|
|
|
return this.wrapped.deleteFile(name);
|
2022-09-05 09:47:30 +00:00
|
|
|
}
|
2022-04-08 15:46:09 +00:00
|
|
|
}
|