mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 15:49:00 +02:00
chore(client/print): render title using preact
This commit is contained in:
parent
54724b8c58
commit
62855f4bb1
@ -1,4 +1,6 @@
|
|||||||
|
import { JSX } from "preact/jsx-runtime";
|
||||||
import FNote from "./entities/fnote";
|
import FNote from "./entities/fnote";
|
||||||
|
import { render } from "preact";
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const noteId = window.location.pathname.split("/")[2];
|
const noteId = window.location.pathname.split("/")[2];
|
||||||
@ -7,13 +9,18 @@ async function main() {
|
|||||||
|
|
||||||
if (!note) return;
|
if (!note) return;
|
||||||
|
|
||||||
|
let el: JSX.Element | null = null;
|
||||||
if (note.type === "book") {
|
if (note.type === "book") {
|
||||||
handleCollection(note);
|
el = handleCollection(note);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
render(el, document.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleCollection(note: FNote) {
|
function handleCollection(note: FNote) {
|
||||||
console.log("Rendering collection.");
|
return (
|
||||||
|
<h1>{note.title}</h1>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
main();
|
main();
|
Loading…
x
Reference in New Issue
Block a user