mirror of
https://github.com/zadam/trilium.git
synced 2025-10-28 10:08:52 +01:00
99 lines
4.0 KiB
TypeScript
99 lines
4.0 KiB
TypeScript
import { useEffect, useMemo, useRef, useState } from "preact/hooks";
|
|
import FNote from "../../../entities/fnote";
|
|
import Icon from "../../react/Icon";
|
|
import { ViewModeProps } from "../interface";
|
|
import { useNoteLabelBoolean, useNoteProperty } from "../../react/hooks";
|
|
import NoteLink from "../../react/NoteLink";
|
|
import "./ListOrGridView.css";
|
|
import content_renderer from "../../../services/content_renderer";
|
|
import { Pager, usePagination } from "../Pagination";
|
|
|
|
export default function ListView({ note, noteIds }: ViewModeProps) {
|
|
const [ isExpanded ] = useNoteLabelBoolean(note, "expanded");
|
|
const filteredNoteIds = useMemo(() => {
|
|
// Filters the note IDs for the legacy view to filter out subnotes that are already included in the note content such as images, included notes.
|
|
const includedLinks = note ? note.getRelations().filter((rel) => rel.name === "imageLink" || rel.name === "includeNoteLink") : [];
|
|
const includedNoteIds = new Set(includedLinks.map((rel) => rel.value));
|
|
return noteIds.filter((noteId) => !includedNoteIds.has(noteId) && noteId !== "_hidden");
|
|
}, noteIds);
|
|
const { pageNotes, ...pagination } = usePagination(note, filteredNoteIds);
|
|
|
|
return (
|
|
<div class="note-list">
|
|
<div class="note-list-wrapper">
|
|
<Pager {...pagination} />
|
|
|
|
<div class="note-list-container use-tn-links">
|
|
{pageNotes?.map(note => (
|
|
<NoteCard note={note} expand={isExpanded} />
|
|
))}
|
|
</div>
|
|
|
|
<Pager {...pagination} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function NoteCard({ note, expand }: { note: FNote, expand?: boolean }) {
|
|
const [ isExpanded, setExpanded ] = useState(expand);
|
|
const isSearch = note.type === "search";
|
|
const notePath = isSearch
|
|
? note.noteId // for search note parent, we want to display a non-search path
|
|
: `${note.noteId}/${note.noteId}`;
|
|
|
|
return (
|
|
<div
|
|
className={`note-book-card no-tooltip-preview ${isExpanded ? "expanded" : ""}`}
|
|
data-note-id={note.noteId}
|
|
>
|
|
<h5 className="note-book-header">
|
|
<span
|
|
className={`note-expander ${isExpanded ? "bx bx-chevron-down" : "bx bx-chevron-right"}`}
|
|
onClick={() => setExpanded(!isExpanded)}
|
|
/>
|
|
|
|
<Icon className="note-icon" icon={note.getIcon()} />
|
|
<NoteLink className="note-book-title" notePath={notePath} noPreview showNotePath={isSearch} />
|
|
{isExpanded && <>
|
|
<NoteContent note={note} />
|
|
<NoteChildren note={note} />
|
|
</>}
|
|
</h5>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function NoteContent({ note, trim }: { note: FNote, trim?: boolean }) {
|
|
const contentRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
content_renderer.getRenderedContent(note, { trim })
|
|
.then(({ $renderedContent, type }) => {
|
|
contentRef.current?.replaceChildren(...$renderedContent);
|
|
contentRef.current?.classList.add(`type-${type}`);
|
|
})
|
|
.catch(e => {
|
|
console.warn(`Caught error while rendering note '${note.noteId}' of type '${note.type}'`);
|
|
console.error(e);
|
|
contentRef.current?.replaceChildren("rendering error");
|
|
})
|
|
}, [ note ]);
|
|
|
|
return <div ref={contentRef} className="note-book-content" />;
|
|
}
|
|
|
|
function NoteChildren({ note }: { note: FNote}) {
|
|
const imageLinks = note.getRelations("imageLink");
|
|
const [ childNotes, setChildNotes ] = useState<FNote[]>();
|
|
|
|
useEffect(() => {
|
|
note.getChildNotes().then(childNotes => {
|
|
const filteredChildNotes = childNotes.filter((childNote) => !imageLinks.find((rel) => rel.value === childNote.noteId));
|
|
setChildNotes(filteredChildNotes);
|
|
});
|
|
}, [ note ]);
|
|
|
|
return childNotes?.map(childNote => <NoteCard note={childNote} />)
|
|
}
|