import { createSignal, Show } from "solid-js"; import PostList from "../components/PostList.tsx"; import PostPublish from "../components/PostPublish.tsx"; import { createStore } from "solid-js/store"; export default function DashboardPage() { const [error, setError] = createSignal(null); const [page, setPage] = createSignal(0); const [info, setInfo] = createSignal(null); async function readPosts(pn?: number) { if (pn) setPage(pn); const res = await fetch("/api/posts?" + new URLSearchParams({ take: (10).toString(), offset: ((page() - 1) * 10).toString() })); if (res.status !== 200) { setError(await res.text()); } else { setError(null); setInfo(await res.json()); } } function setMeta(data: any, field: string, scroll = true) { const meta: { [id: string]: any } = { reposting: null, replying: null, editing: null }; meta[field] = data; setPublishMeta(meta); if (scroll) window.scroll({ top: 0, behavior: "smooth" }); } const [publishMeta, setPublishMeta] = createStore({ replying: null, reposting: null, editing: null }); return ( <>
setMeta(null, "none", false)} onPost={() => readPosts()} onError={setError} /> setMeta(item, "reposting")} onReply={(item) => setMeta(item, "replying")} onEdit={(item) => setMeta(item, "editing")} /> ); }