silverbullet/web/syscalls/editor.ts

256 lines
6.6 KiB
TypeScript
Raw Normal View History

2023-07-14 22:56:20 +08:00
import { Client } from "../client.ts";
2023-06-15 01:27:18 +08:00
import {
EditorView,
foldAll,
foldCode,
2023-06-17 15:01:32 +08:00
toggleFold,
2023-06-15 01:27:18 +08:00
Transaction,
unfoldAll,
unfoldCode,
Vim,
vimGetCm,
} from "../deps.ts";
import { SysCallMapping } from "../../plugos/system.ts";
import type { FilterOption } from "../types.ts";
import { UploadFile } from "../../plug-api/types.ts";
2023-07-14 22:56:20 +08:00
export function editorSyscalls(editor: Client): SysCallMapping {
const syscalls: SysCallMapping = {
"editor.getCurrentPage": (): string => {
2022-04-04 00:12:16 +08:00
return editor.currentPage!;
},
"editor.getText": () => {
2023-07-27 17:41:44 +08:00
return editor.editorView.state.sliceDoc();
2022-04-04 00:12:16 +08:00
},
"editor.getCursor": (): number => {
2023-07-27 17:41:44 +08:00
return editor.editorView.state.selection.main.from;
2022-04-04 00:12:16 +08:00
},
"editor.getSelection": (): { from: number; to: number } => {
2023-07-27 17:41:44 +08:00
return editor.editorView.state.selection.main;
},
2022-10-16 01:02:56 +08:00
"editor.save": () => {
2022-04-04 00:12:16 +08:00
return editor.save(true);
},
"editor.navigate": async (
2022-10-16 01:02:56 +08:00
_ctx,
name: string,
2022-08-30 16:44:20 +08:00
pos: number | string,
replaceState = false,
newWindow = false,
) => {
await editor.navigate(name, pos, replaceState, newWindow);
2022-04-04 00:12:16 +08:00
},
2022-10-11 00:19:08 +08:00
"editor.reloadPage": async () => {
2022-04-04 00:12:16 +08:00
await editor.reloadPage();
},
2023-07-26 17:22:10 +08:00
"editor.reloadUI": () => {
location.reload();
},
"editor.openUrl": (_ctx, url: string, existingWindow = false) => {
if (!existingWindow) {
const win = window.open(url, "_blank");
if (win) {
win.focus();
}
} else {
location.href = url;
2022-05-09 16:45:36 +08:00
}
2022-04-04 00:12:16 +08:00
},
"editor.downloadFile": (_ctx, filename: string, dataUrl: string) => {
const link = document.createElement("a");
link.href = dataUrl;
link.download = filename;
link.click();
},
"editor.uploadFile": (
_ctx,
accept?: string,
capture?: string
): Promise<UploadFile> => {
return new Promise<UploadFile>((resolve, reject) => {
const input = document.createElement("input");
input.type = "file";
if (accept) {
input.accept = accept;
}
if (capture) {
input.capture = capture;
}
input.onchange = () => {
const file = input.files?.item(0);
if (!file) {
reject(new Error("No file found"));
} else {
var reader = new FileReader();
reader.readAsArrayBuffer(file);
reader.onloadend = async (evt) => {
if (evt.target?.readyState == FileReader.DONE) {
const arrayBuffer = evt.target.result;
resolve({
name: file.name,
content: new Uint8Array(await file.arrayBuffer())
});
}
};
reader.onabort = (e) => { reject(e) };
reader.onerror = (e) => { reject(e) };
}
}
input.onabort = (e) => { reject(e) };
input.click();
});
},
"editor.flashNotification": (
2022-10-16 01:02:56 +08:00
_ctx,
message: string,
type: "error" | "info" = "info",
) => {
editor.flashNotification(message, type);
2022-04-04 00:12:16 +08:00
},
"editor.filterBox": (
2022-10-16 01:02:56 +08:00
_ctx,
label: string,
options: FilterOption[],
2022-10-16 01:02:56 +08:00
helpText = "",
placeHolder = "",
): Promise<FilterOption | undefined> => {
return editor.filterBox(label, options, helpText, placeHolder);
},
"editor.showPanel": (
2022-10-16 01:02:56 +08:00
_ctx,
id: string,
mode: number,
html: string,
script: string,
) => {
2023-07-14 20:22:26 +08:00
editor.ui.viewDispatch({
type: "show-panel",
id: id as any,
config: { html, script, mode },
2022-04-04 00:12:16 +08:00
});
setTimeout(() => {
// Dummy dispatch to rerender the editor and toggle the panel
editor.editorView.dispatch({});
});
2022-04-04 00:12:16 +08:00
},
2022-10-16 01:02:56 +08:00
"editor.hidePanel": (_ctx, id: string) => {
2023-07-14 20:22:26 +08:00
editor.ui.viewDispatch({
type: "hide-panel",
id: id as any,
2022-04-04 21:25:07 +08:00
});
setTimeout(() => {
// Dummy dispatch to rerender the editor and toggle the panel
editor.editorView.dispatch({});
});
2022-04-04 21:25:07 +08:00
},
2022-10-16 01:02:56 +08:00
"editor.insertAtPos": (_ctx, text: string, pos: number) => {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch({
2022-04-04 00:12:16 +08:00
changes: {
insert: text,
from: pos,
},
});
},
2022-10-16 01:02:56 +08:00
"editor.replaceRange": (_ctx, from: number, to: number, text: string) => {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch({
2022-04-04 00:12:16 +08:00
changes: {
insert: text,
from: from,
to: to,
},
});
},
"editor.moveCursor": (_ctx, pos: number, center = false) => {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch({
2022-04-04 00:12:16 +08:00
selection: {
anchor: pos,
},
});
if (center) {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch({
effects: [
EditorView.scrollIntoView(
pos,
{
y: "center",
},
),
],
});
}
2022-04-04 00:12:16 +08:00
},
2022-10-16 01:02:56 +08:00
"editor.setSelection": (_ctx, from: number, to: number) => {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch({
selection: {
anchor: from,
head: to,
},
});
},
2022-10-16 01:02:56 +08:00
"editor.insertAtCursor": (_ctx, text: string) => {
2023-07-27 17:41:44 +08:00
const editorView = editor.editorView;
2022-10-16 01:02:56 +08:00
const from = editorView.state.selection.main.from;
2022-04-04 00:12:16 +08:00
editorView.dispatch({
changes: {
insert: text,
from: from,
},
selection: {
anchor: from + text.length,
},
});
},
2022-10-16 01:02:56 +08:00
"editor.dispatch": (_ctx, change: Transaction) => {
2023-07-27 17:41:44 +08:00
editor.editorView.dispatch(change);
2022-04-04 00:12:16 +08:00
},
"editor.prompt": (
2022-10-16 01:02:56 +08:00
_ctx,
message: string,
defaultValue = "",
2022-12-21 23:08:51 +08:00
): Promise<string | undefined> => {
return editor.prompt(message, defaultValue);
2022-04-04 00:12:16 +08:00
},
"editor.confirm": (
_ctx,
message: string,
2022-12-21 23:08:51 +08:00
): Promise<boolean> => {
return editor.confirm(message);
},
"editor.getUiOption": (_ctx, key: string): any => {
2023-07-14 20:22:26 +08:00
return (editor.ui.viewState.uiOptions as any)[key];
},
"editor.setUiOption": (_ctx, key: string, value: any) => {
2023-07-14 20:22:26 +08:00
editor.ui.viewDispatch({
type: "set-ui-option",
key,
value,
2022-09-16 20:26:47 +08:00
});
},
2023-01-24 01:52:17 +08:00
"editor.vimEx": (_ctx, exCommand: string) => {
2023-07-27 17:41:44 +08:00
const cm = vimGetCm(editor.editorView)!;
2023-01-24 01:52:17 +08:00
return Vim.handleEx(cm, exCommand);
},
2023-06-15 01:27:18 +08:00
// Folding
"editor.fold": () => {
2023-07-27 17:41:44 +08:00
foldCode(editor.editorView);
2023-06-15 01:27:18 +08:00
},
"editor.unfold": () => {
2023-07-27 17:41:44 +08:00
unfoldCode(editor.editorView);
2023-06-15 01:27:18 +08:00
},
2023-06-17 15:01:32 +08:00
"editor.toggleFold": () => {
2023-07-27 17:41:44 +08:00
toggleFold(editor.editorView);
2023-06-17 15:01:32 +08:00
},
2023-06-15 01:27:18 +08:00
"editor.foldAll": () => {
2023-07-27 17:41:44 +08:00
foldAll(editor.editorView);
2023-06-15 01:27:18 +08:00
},
"editor.unfoldAll": () => {
2023-07-27 17:41:44 +08:00
unfoldAll(editor.editorView);
2023-06-15 01:27:18 +08:00
},
2022-04-04 00:12:16 +08:00
};
return syscalls;
2022-04-04 00:12:16 +08:00
}