1
0
silverbullet/plugs/core/navigate.ts

85 lines
2.4 KiB
TypeScript
Raw Normal View History

import type { ClickEvent } from "../../web/app_event.ts";
import {
2022-08-29 13:40:38 +00:00
flashNotification,
2022-08-30 08:44:20 +00:00
getCurrentPage,
getCursor,
getText,
navigate as navigateTo,
2022-04-25 08:33:38 +00:00
openUrl,
} from "../../syscall/silverbullet-syscall/editor.ts";
import { parseMarkdown } from "../../syscall/silverbullet-syscall/markdown.ts";
import { nodeAtPos, ParseTree } from "../../common/tree.ts";
import { invokeCommand } from "../../syscall/silverbullet-syscall/system.ts";
2022-03-29 15:02:28 +00:00
2022-09-06 12:36:06 +00:00
// Checks if the URL contains a protocol, if so keeps it, otherwise assumes an attachment
function patchUrl(url: string): string {
if (url.indexOf("://") === -1) {
2022-09-12 12:50:37 +00:00
return `fs/${url}`;
2022-09-06 12:36:06 +00:00
}
return url;
}
2022-04-11 18:34:09 +00:00
async function actionClickOrActionEnter(mdTree: ParseTree | null) {
if (!mdTree) {
return;
}
2022-05-13 12:36:26 +00:00
// console.log("Attempting to navigate based on syntax node", mdTree);
switch (mdTree.type) {
case "WikiLinkPage": {
let pageLink = mdTree.children![0].text!;
2022-08-30 08:44:20 +00:00
let pos;
2022-03-28 13:25:05 +00:00
if (pageLink.includes("@")) {
[pageLink, pos] = pageLink.split("@");
2022-08-30 08:44:20 +00:00
if (pos.match(/^\d+$/)) {
pos = +pos;
}
2022-03-28 13:25:05 +00:00
}
2022-08-30 08:44:20 +00:00
if (!pageLink) {
pageLink = await getCurrentPage();
}
await navigateTo(pageLink, pos);
break;
}
case "URL":
case "NakedURL":
2022-09-06 12:36:06 +00:00
await openUrl(patchUrl(mdTree.children![0].text!));
break;
case "Link": {
2022-09-06 12:36:06 +00:00
const url = patchUrl(mdTree.children![4].children![0].text!);
2022-08-29 13:40:38 +00:00
if (url.length <= 1) {
return flashNotification("Empty link, ignoring", "error");
}
await openUrl(url);
2022-03-07 09:21:02 +00:00
break;
}
case "CommandLink": {
const command = mdTree
.children![0].text!.substring(2, mdTree.children![0].text!.length - 2)
.trim();
console.log("Got command link", command);
await invokeCommand(command);
break;
}
2022-02-26 16:50:50 +00:00
}
}
export async function linkNavigate() {
const mdTree = await parseMarkdown(await getText());
const newNode = nodeAtPos(mdTree, await getCursor());
await actionClickOrActionEnter(newNode);
}
2022-02-26 16:50:50 +00:00
export async function clickNavigate(event: ClickEvent) {
2022-04-11 18:34:09 +00:00
// Navigate by default, don't navigate when Ctrl or Cmd is held
2022-02-26 16:50:50 +00:00
if (event.ctrlKey || event.metaKey) {
2022-04-11 18:34:09 +00:00
return;
2022-02-26 16:50:50 +00:00
}
const mdTree = await parseMarkdown(await getText());
const newNode = nodeAtPos(mdTree, event.pos);
2022-04-11 18:34:09 +00:00
await actionClickOrActionEnter(newNode);
2022-02-26 16:50:50 +00:00
}
export async function navigateCommand(cmdDef: any) {
await navigateTo(cmdDef.page);
}