mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 12:09:02 +01:00
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { useEffect, useRef, useState } from "preact/hooks";
|
|
import link from "../../services/link";
|
|
import { useImperativeSearchHighlighlighting } from "./hooks";
|
|
|
|
interface NoteLinkOpts {
|
|
className?: string;
|
|
notePath: string | string[];
|
|
showNotePath?: boolean;
|
|
showNoteIcon?: boolean;
|
|
style?: Record<string, string | number>;
|
|
noPreview?: boolean;
|
|
noTnLink?: boolean;
|
|
highlightedTokens?: string[] | null | undefined;
|
|
}
|
|
|
|
export default function NoteLink({ className, notePath, showNotePath, showNoteIcon, style, noPreview, noTnLink, highlightedTokens }: NoteLinkOpts) {
|
|
const stringifiedNotePath = Array.isArray(notePath) ? notePath.join("/") : notePath;
|
|
const ref = useRef<HTMLSpanElement>(null);
|
|
const [ jqueryEl, setJqueryEl ] = useState<JQuery<HTMLElement>>();
|
|
const highlightSearch = useImperativeSearchHighlighlighting(highlightedTokens);
|
|
|
|
useEffect(() => {
|
|
link.createLink(stringifiedNotePath, { showNotePath, showNoteIcon })
|
|
.then(setJqueryEl);
|
|
}, [ stringifiedNotePath, showNotePath ]);
|
|
|
|
useEffect(() => {
|
|
if (!ref.current || !jqueryEl) return;
|
|
ref.current.replaceChildren(jqueryEl[0]);
|
|
highlightSearch(ref.current);
|
|
}, [ jqueryEl ]);
|
|
|
|
if (style) {
|
|
jqueryEl?.css(style);
|
|
}
|
|
|
|
const $linkEl = jqueryEl?.find("a");
|
|
if (noPreview) {
|
|
$linkEl?.addClass("no-tooltip-preview");
|
|
}
|
|
|
|
if (!noTnLink) {
|
|
$linkEl?.addClass("tn-link");
|
|
}
|
|
|
|
if (className) {
|
|
$linkEl?.addClass(className);
|
|
}
|
|
|
|
return <span ref={ref} />
|
|
|
|
}
|