100 lines
2.9 KiB
TypeScript
100 lines
2.9 KiB
TypeScript
import { commandLinkRegex, pageLinkRegex } from "../../common/parser.ts";
|
|
import { ClickEvent } from "../../plug-api/app_event.ts";
|
|
import {
|
|
Decoration,
|
|
DecorationSet,
|
|
EditorView,
|
|
ViewPlugin,
|
|
ViewUpdate,
|
|
} from "../deps.ts";
|
|
import { Editor } from "../editor.tsx";
|
|
import {
|
|
ButtonWidget,
|
|
invisibleDecoration,
|
|
isCursorInRange,
|
|
iterateTreeInVisibleRanges,
|
|
} from "./util.ts";
|
|
|
|
/**
|
|
* Plugin to hide path prefix when the cursor is not inside.
|
|
*/
|
|
export function cleanCommandLinkPlugin(editor: Editor) {
|
|
return ViewPlugin.fromClass(
|
|
class {
|
|
decorations: DecorationSet;
|
|
constructor(view: EditorView) {
|
|
this.decorations = this.compute(view);
|
|
}
|
|
update(update: ViewUpdate) {
|
|
if (
|
|
update.docChanged || update.viewportChanged || update.selectionSet
|
|
) {
|
|
this.decorations = this.compute(update.view);
|
|
}
|
|
}
|
|
compute(view: EditorView): DecorationSet {
|
|
const widgets: any[] = [];
|
|
// let parentRange: [number, number];
|
|
iterateTreeInVisibleRanges(view, {
|
|
enter: ({ type, from, to }) => {
|
|
if (type.name !== "CommandLink") {
|
|
return;
|
|
}
|
|
if (isCursorInRange(view.state, [from, to])) {
|
|
return;
|
|
}
|
|
|
|
const text = view.state.sliceDoc(from, to);
|
|
const match = commandLinkRegex.exec(text);
|
|
if (!match) return;
|
|
const [_fullMatch, command, _pipePart, alias] = match;
|
|
|
|
// Hide the whole thing
|
|
widgets.push(
|
|
invisibleDecoration.range(
|
|
from,
|
|
to,
|
|
),
|
|
);
|
|
|
|
const linkText = alias || command;
|
|
// And replace it with a widget
|
|
widgets.push(
|
|
Decoration.widget({
|
|
widget: new ButtonWidget(
|
|
linkText,
|
|
`Run command: ${command}`,
|
|
"sb-command-button",
|
|
(e) => {
|
|
if (e.altKey) {
|
|
// Move cursor into the link
|
|
return view.dispatch({
|
|
selection: { anchor: from + 2 },
|
|
});
|
|
}
|
|
// Dispatch click event to navigate there without moving the cursor
|
|
const clickEvent: ClickEvent = {
|
|
page: editor.currentPage!,
|
|
ctrlKey: e.ctrlKey,
|
|
metaKey: e.metaKey,
|
|
altKey: e.altKey,
|
|
pos: from,
|
|
};
|
|
editor.dispatchAppEvent("page:click", clickEvent).catch(
|
|
console.error,
|
|
);
|
|
},
|
|
),
|
|
}).range(from),
|
|
);
|
|
},
|
|
});
|
|
return Decoration.set(widgets, true);
|
|
}
|
|
},
|
|
{
|
|
decorations: (v) => v.decorations,
|
|
},
|
|
);
|
|
}
|