mirror of
https://github.com/zadam/trilium.git
synced 2025-12-20 22:34:23 +01:00
164 lines
5.6 KiB
TypeScript
164 lines
5.6 KiB
TypeScript
import { CKTextEditor, ModelText } from "@triliumnext/ckeditor5";
|
|
import { useCallback, useEffect, useState } from "preact/hooks";
|
|
|
|
import { t } from "../../services/i18n";
|
|
import { useActiveNoteContext, useIsNoteReadOnly, useNoteProperty, useTextEditor } from "../react/hooks";
|
|
import RightPanelWidget from "./RightPanelWidget";
|
|
|
|
interface RawHighlight {
|
|
id: string;
|
|
text: string;
|
|
attrs: {
|
|
bold: boolean;
|
|
italic: boolean;
|
|
underline: boolean;
|
|
color: string | undefined;
|
|
background: string | undefined;
|
|
}
|
|
}
|
|
|
|
export default function HighlightsList() {
|
|
const { note, noteContext } = useActiveNoteContext();
|
|
const noteType = useNoteProperty(note, "type");
|
|
const { isReadOnly } = useIsNoteReadOnly(note, noteContext);
|
|
|
|
return (
|
|
<RightPanelWidget title={t("highlights_list_2.title")}>
|
|
{((noteType === "text" && isReadOnly) || (noteType === "doc")) && <ReadOnlyTextHighlightsList />}
|
|
{noteType === "text" && !isReadOnly && <EditableTextHighlightsList />}
|
|
</RightPanelWidget>
|
|
);
|
|
}
|
|
|
|
function AbstractHighlightsList<T extends RawHighlight>({ highlights, scrollToHighlight }: {
|
|
highlights: T[],
|
|
scrollToHighlight(highlight: T): void;
|
|
}) {
|
|
return (
|
|
<span className="highlights-list">
|
|
<ol>
|
|
{highlights.map(highlight => (
|
|
<li
|
|
key={highlight.id}
|
|
onClick={() => scrollToHighlight(highlight)}
|
|
>
|
|
<span
|
|
style={{
|
|
fontWeight: highlight.attrs.bold ? "700" : undefined,
|
|
fontStyle: highlight.attrs.italic ? "italic" : undefined,
|
|
textDecoration: highlight.attrs.underline ? "underline" : undefined,
|
|
color: highlight.attrs.color,
|
|
backgroundColor: highlight.attrs.background
|
|
}}
|
|
>{highlight.text}</span>
|
|
</li>
|
|
))}
|
|
</ol>
|
|
</span>
|
|
);
|
|
}
|
|
|
|
//#region Editable text (CKEditor)
|
|
interface CKHighlight extends RawHighlight {
|
|
textNode: ModelText;
|
|
offset: number | null;
|
|
}
|
|
|
|
function EditableTextHighlightsList() {
|
|
const { note, noteContext } = useActiveNoteContext();
|
|
const textEditor = useTextEditor(noteContext);
|
|
const [ highlights, setHighlights ] = useState<CKHighlight[]>([]);
|
|
|
|
useEffect(() => {
|
|
if (!textEditor) return;
|
|
setHighlights(extractHighlightsFromTextEditor(textEditor));
|
|
|
|
// React to changes.
|
|
const changeCallback = () => {
|
|
const changes = textEditor.model.document.differ.getChanges();
|
|
const affectsHighlights = changes.some(change => {
|
|
// Text inserted or removed
|
|
if (change.type === 'insert' || change.type === 'remove') {
|
|
return true;
|
|
}
|
|
|
|
// Formatting attribute changed
|
|
if (change.type === 'attribute' &&
|
|
(
|
|
change.attributeKey === 'bold' ||
|
|
change.attributeKey === 'italic' ||
|
|
change.attributeKey === 'underline' ||
|
|
change.attributeKey === 'fontColor' ||
|
|
change.attributeKey === 'fontBackgroundColor'
|
|
)
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
if (affectsHighlights) {
|
|
setHighlights(extractHighlightsFromTextEditor(textEditor));
|
|
}
|
|
};
|
|
|
|
textEditor.model.document.on("change:data", changeCallback);
|
|
return () => textEditor.model.document.off("change:data", changeCallback);
|
|
}, [ textEditor, note ]);
|
|
|
|
const scrollToHeading = useCallback((highlight: CKHighlight) => {
|
|
if (!textEditor) return;
|
|
|
|
const modelPos = textEditor.model.createPositionAt(highlight.textNode, "before");
|
|
const viewPos = textEditor.editing.mapper.toViewPosition(modelPos);
|
|
const domConverter = textEditor.editing.view.domConverter;
|
|
const domPos = domConverter.viewPositionToDom(viewPos);
|
|
|
|
if (!domPos) return;
|
|
(domPos.parent as HTMLElement).scrollIntoView();
|
|
}, [ textEditor ]);
|
|
|
|
return <AbstractHighlightsList
|
|
highlights={highlights}
|
|
scrollToHighlight={scrollToHeading}
|
|
/>;
|
|
}
|
|
|
|
function extractHighlightsFromTextEditor(editor: CKTextEditor) {
|
|
const result: CKHighlight[] = [];
|
|
const root = editor.model.document.getRoot();
|
|
if (!root) return [];
|
|
|
|
for (const { item } of editor.model.createRangeIn(root).getWalker({ ignoreElementEnd: true })) {
|
|
if (!item.is('$textProxy')) continue;
|
|
|
|
const attrs: RawHighlight["attrs"] = {
|
|
bold: item.hasAttribute('bold'),
|
|
italic: item.hasAttribute('italic'),
|
|
underline: item.hasAttribute('underline'),
|
|
color: item.getAttribute('fontColor') as string | undefined,
|
|
background: item.getAttribute('fontBackgroundColor') as string | undefined
|
|
};
|
|
|
|
if (Object.values(attrs).some(Boolean)) {
|
|
result.push({
|
|
id: crypto.randomUUID(),
|
|
text: item.data,
|
|
attrs,
|
|
textNode: item.textNode,
|
|
offset: item.startOffset
|
|
});
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
//#endregion
|
|
|
|
//#region Read-only text
|
|
function ReadOnlyTextHighlightsList() {
|
|
return "Read-only";
|
|
}
|
|
//#endregion
|