1
0
silverbullet/web/cm_plugins/link.ts

67 lines
1.9 KiB
TypeScript
Raw Normal View History

import { Decoration, syntaxTree } from "../deps.ts";
import {
decoratorStateField,
invisibleDecoration,
isCursorInRange,
} from "./util.ts";
export function linkPlugin() {
return decoratorStateField((state) => {
const widgets: any[] = [];
syntaxTree(state).iterate({
enter: ({ type, from, to }) => {
if (type.name !== "Link") {
return;
}
// Adding 2 on each side due to [[ and ]] that are outside the WikiLinkPage node
if (isCursorInRange(state, [from, to])) {
return;
}
2022-11-29 08:17:40 +00:00
const text = state.sliceDoc(from, to);
// Links are of the form [hell](https://example.com)
const [anchorPart, linkPart] = text.split("]("); // Not pretty
2022-12-29 11:53:42 +00:00
if (anchorPart.substring(1).trim() === "") {
// Empty link text, let's not do live preview (because it would make it disappear)
return;
}
if (!linkPart) {
// Invalid link
return;
}
const cleanAnchor = anchorPart.substring(1); // cut off the initial [
const cleanLink = linkPart.substring(0, linkPart.length - 1); // cut off the final )
2022-11-29 08:17:40 +00:00
2023-01-13 15:33:36 +00:00
// Hide the start [
widgets.push(
invisibleDecoration.range(
from,
2023-01-13 15:33:36 +00:00
from + 1,
),
);
2023-01-13 15:33:36 +00:00
// Wrap the link in a href
widgets.push(
Decoration.mark({
tagName: "a",
class: "sb-link",
attributes: {
href: cleanLink,
title: `Click to visit ${cleanLink}`,
},
}).range(from + 1, from + cleanAnchor.length + 1),
);
// Hide the tail end of the link
widgets.push(
2023-01-13 15:33:36 +00:00
invisibleDecoration.range(
from + cleanAnchor.length + 1,
to,
),
);
},
});
return Decoration.set(widgets, true);
});
}