import { asset } from "$sb/plugos-syscall/mod.ts"; import { clientStore, editor } from "$sb/silverbullet-syscall/mod.ts"; import { queryObjects } from "./api.ts"; import { LinkObject } from "./page_links.ts"; const hideMentionsKey = "hideMentions"; export async function toggleMentions() { let hideMentions = await clientStore.get(hideMentionsKey); hideMentions = !hideMentions; await clientStore.set(hideMentionsKey, hideMentions); if (!hideMentions) { await renderMentions(); } else { await editor.hidePanel("ps"); } } // Triggered when switching pages or upon first load export async function updateMentions() { if (await clientStore.get(hideMentionsKey)) { return; } await renderMentions(); } // use internal navigation via syscall to prevent reloading the full page. export async function navigate(ref: string) { const [page, pos] = ref.split(/[@$]/); await editor.navigate(page, +pos); } function escapeHtml(unsafe: string) { return unsafe.replace(/&/g, "&").replace(//g, ">", ); } export async function renderMentions() { const page = await editor.getCurrentPage(); const linksResult = await queryObjects("link", { // Query all links that point to this page, excluding those that are inside directives and self pointers. filter: ["and", ["!=", ["attr", "page"], ["string", page]], ["and", ["=", [ "attr", "toPage", ], ["string", page]], ["=", ["attr", "inDirective"], ["boolean", false]]]], }); if (linksResult.length === 0) { // Don't show the panel if there are no links here. await editor.hidePanel("ps"); } else { const css = await asset.readAsset("asset/style.css"); const js = await asset.readAsset("asset/linked_mentions.js"); await editor.showPanel( "ps", 1, `
Linked Mentions
`, js, ); } }