1
0
silverbullet/web/syscalls/editor.ts

207 lines
5.1 KiB
TypeScript
Raw Normal View History

2023-07-14 14:56:20 +00:00
import { Client } from "../client.ts";
2023-06-14 17:27:18 +00:00
import {
EditorView,
foldAll,
foldCode,
2023-06-17 07:01:32 +00:00
toggleFold,
2023-06-14 17:27:18 +00:00
Transaction,
unfoldAll,
unfoldCode,
Vim,
vimGetCm,
} from "../deps.ts";
import { SysCallMapping } from "../../plugos/system.ts";
import type { FilterOption } from "../types.ts";
2023-07-14 14:56:20 +00:00
export function editorSyscalls(editor: Client): SysCallMapping {
const syscalls: SysCallMapping = {
"editor.getCurrentPage": (): string => {
2022-04-03 16:12:16 +00:00
return editor.currentPage!;
},
"editor.getText": () => {
2023-07-27 09:41:44 +00:00
return editor.editorView.state.sliceDoc();
2022-04-03 16:12:16 +00:00
},
"editor.getCursor": (): number => {
2023-07-27 09:41:44 +00:00
return editor.editorView.state.selection.main.from;
2022-04-03 16:12:16 +00:00
},
"editor.getSelection": (): { from: number; to: number } => {
2023-07-27 09:41:44 +00:00
return editor.editorView.state.selection.main;
},
2022-10-15 17:02:56 +00:00
"editor.save": () => {
2022-04-03 16:12:16 +00:00
return editor.save(true);
},
"editor.navigate": async (
2022-10-15 17:02:56 +00:00
_ctx,
name: string,
2022-08-30 08:44:20 +00:00
pos: number | string,
replaceState = false,
newWindow = false,
) => {
await editor.navigate(name, pos, replaceState, newWindow);
2022-04-03 16:12:16 +00:00
},
2022-10-10 16:19:08 +00:00
"editor.reloadPage": async () => {
2022-04-03 16:12:16 +00:00
await editor.reloadPage();
},
2023-07-26 09:22:10 +00: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 08:45:36 +00:00
}
2022-04-03 16:12:16 +00:00
},
"editor.downloadFile": (_ctx, filename: string, dataUrl: string) => {
const link = document.createElement("a");
link.href = dataUrl;
link.download = filename;
link.click();
},
"editor.flashNotification": (
2022-10-15 17:02:56 +00:00
_ctx,
message: string,
type: "error" | "info" = "info",
) => {
editor.flashNotification(message, type);
2022-04-03 16:12:16 +00:00
},
"editor.filterBox": (
2022-10-15 17:02:56 +00:00
_ctx,
label: string,
options: FilterOption[],
2022-10-15 17:02:56 +00:00
helpText = "",
placeHolder = "",
): Promise<FilterOption | undefined> => {
return editor.filterBox(label, options, helpText, placeHolder);
},
"editor.showPanel": (
2022-10-15 17:02:56 +00:00
_ctx,
id: string,
mode: number,
html: string,
script: string,
) => {
2023-07-14 12:22:26 +00:00
editor.ui.viewDispatch({
type: "show-panel",
id: id as any,
config: { html, script, mode },
2022-04-03 16:12:16 +00:00
});
},
2022-10-15 17:02:56 +00:00
"editor.hidePanel": (_ctx, id: string) => {
2023-07-14 12:22:26 +00:00
editor.ui.viewDispatch({
type: "hide-panel",
id: id as any,
2022-04-04 13:25:07 +00:00
});
},
2022-10-15 17:02:56 +00:00
"editor.insertAtPos": (_ctx, text: string, pos: number) => {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch({
2022-04-03 16:12:16 +00:00
changes: {
insert: text,
from: pos,
},
});
},
2022-10-15 17:02:56 +00:00
"editor.replaceRange": (_ctx, from: number, to: number, text: string) => {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch({
2022-04-03 16:12:16 +00:00
changes: {
insert: text,
from: from,
to: to,
},
});
},
"editor.moveCursor": (_ctx, pos: number, center = false) => {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch({
2022-04-03 16:12:16 +00:00
selection: {
anchor: pos,
},
});
if (center) {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch({
effects: [
EditorView.scrollIntoView(
pos,
{
y: "center",
},
),
],
});
}
2022-04-03 16:12:16 +00:00
},
2022-10-15 17:02:56 +00:00
"editor.setSelection": (_ctx, from: number, to: number) => {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch({
selection: {
anchor: from,
head: to,
},
});
},
2022-10-15 17:02:56 +00:00
"editor.insertAtCursor": (_ctx, text: string) => {
2023-07-27 09:41:44 +00:00
const editorView = editor.editorView;
2022-10-15 17:02:56 +00:00
const from = editorView.state.selection.main.from;
2022-04-03 16:12:16 +00:00
editorView.dispatch({
changes: {
insert: text,
from: from,
},
selection: {
anchor: from + text.length,
},
});
},
2022-10-15 17:02:56 +00:00
"editor.dispatch": (_ctx, change: Transaction) => {
2023-07-27 09:41:44 +00:00
editor.editorView.dispatch(change);
2022-04-03 16:12:16 +00:00
},
"editor.prompt": (
2022-10-15 17:02:56 +00:00
_ctx,
message: string,
defaultValue = "",
2022-12-21 15:08:51 +00:00
): Promise<string | undefined> => {
return editor.prompt(message, defaultValue);
2022-04-03 16:12:16 +00:00
},
"editor.confirm": (
_ctx,
message: string,
2022-12-21 15:08:51 +00:00
): Promise<boolean> => {
return editor.confirm(message);
},
"editor.getUiOption": (_ctx, key: string): any => {
2023-07-14 12:22:26 +00:00
return (editor.ui.viewState.uiOptions as any)[key];
},
"editor.setUiOption": (_ctx, key: string, value: any) => {
2023-07-14 12:22:26 +00:00
editor.ui.viewDispatch({
type: "set-ui-option",
key,
value,
2022-09-16 12:26:47 +00:00
});
},
2023-01-23 17:52:17 +00:00
"editor.vimEx": (_ctx, exCommand: string) => {
2023-07-27 09:41:44 +00:00
const cm = vimGetCm(editor.editorView)!;
2023-01-23 17:52:17 +00:00
return Vim.handleEx(cm, exCommand);
},
2023-06-14 17:27:18 +00:00
// Folding
"editor.fold": () => {
2023-07-27 09:41:44 +00:00
foldCode(editor.editorView);
2023-06-14 17:27:18 +00:00
},
"editor.unfold": () => {
2023-07-27 09:41:44 +00:00
unfoldCode(editor.editorView);
2023-06-14 17:27:18 +00:00
},
2023-06-17 07:01:32 +00:00
"editor.toggleFold": () => {
2023-07-27 09:41:44 +00:00
toggleFold(editor.editorView);
2023-06-17 07:01:32 +00:00
},
2023-06-14 17:27:18 +00:00
"editor.foldAll": () => {
2023-07-27 09:41:44 +00:00
foldAll(editor.editorView);
2023-06-14 17:27:18 +00:00
},
"editor.unfoldAll": () => {
2023-07-27 09:41:44 +00:00
unfoldAll(editor.editorView);
2023-06-14 17:27:18 +00:00
},
2022-04-03 16:12:16 +00:00
};
return syscalls;
2022-04-03 16:12:16 +00:00
}