diff --git a/apps/client/src/widgets/collections/presentation/index.tsx b/apps/client/src/widgets/collections/presentation/index.tsx
index f912e8d2e..8fd856acd 100644
--- a/apps/client/src/widgets/collections/presentation/index.tsx
+++ b/apps/client/src/widgets/collections/presentation/index.tsx
@@ -1,16 +1,25 @@
-import { useEffect, useRef, useState } from "preact/hooks";
import { ViewModeProps } from "../interface";
-import { buildPresentation } from "./slide_builder";
+import FNote from "../../../entities/fnote";
+import { useLayoutEffect, useState } from "preact/hooks";
export default function PresentationView({ note }: ViewModeProps<{}>) {
+ return note && (
+
+ )
+}
- const containerRef = useRef(null);
+function Presentation({ note }: { note: FNote }) {
+ const [ slides, setSlides ] = useState();
- useEffect(() => {
- buildPresentation(note).then(presentationEl => {
- containerRef.current?.replaceChildren(presentationEl);
- });
+ useLayoutEffect(() => {
+ note.getChildNotes().then(setSlides);
}, [ note ]);
- return ;
+ return (slides && slides?.map(slide => (
+
+ )));
+}
+
+function Slide({ note }: { note: FNote }) {
+ return {note.title}
}
diff --git a/apps/client/src/widgets/collections/presentation/slide_builder.ts b/apps/client/src/widgets/collections/presentation/slide_builder.ts
deleted file mode 100644
index fcfdca8d0..000000000
--- a/apps/client/src/widgets/collections/presentation/slide_builder.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import FNote from "../../../entities/fnote";
-
-export async function buildPresentation(parentNote: FNote) {
- const slides = await parentNote.getChildNotes();
- const rootElement = new DocumentFragment();
-
- for (const slide of slides) {
- const slideEl = document.createElement("div");
-
- }
-
- return rootElement;
-}