Skip to content
Snippets Groups Projects
Commit 10042991 authored by Lukas's avatar Lukas
Browse files

Update post page content

parent 0b2b19e3
No related branches found
No related tags found
1 merge request!504Lbudginas/#404 part1 create post properties on post page
Pipeline #112268 failed
import { useState } from "react";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
import Link from "next/link"; import Link from "next/link";
import usePostContent from "@/hooks/api/postPage/usePostContent"; import usePostContent from "@/hooks/api/postPage/usePostContent";
import PostContentCard from "./PostContentCard"; import PostContentCard from "./PostContentCard";
import PostPropertiesTable from "./PostPropertiesTable";
const HIVE_BLOG_URL = "https://hive.blog"; const HIVE_BLOG_URL = "https://hive.blog";
const PEAKD_URL = "https://peakd.com"; const PEAKD_URL = "https://peakd.com";
...@@ -17,6 +19,10 @@ const PostPageContent = () => { ...@@ -17,6 +19,10 @@ const PostPageContent = () => {
const { data } = usePostContent(accountName, permlink); const { data } = usePostContent(accountName, permlink);
const [isPropertiesOpen, setIsPropertiesOpen] = useState(false);
const handlePropertiesToggle = () => setIsPropertiesOpen(!isPropertiesOpen);
if (!data) return; if (!data) return;
const { title, author } = data; const { title, author } = data;
...@@ -55,7 +61,15 @@ const PostPageContent = () => { ...@@ -55,7 +61,15 @@ const PostPageContent = () => {
</div> </div>
</div> </div>
<PostContentCard data={data} /> <PostContentCard
isPropertiesOpen={isPropertiesOpen}
handlePropertiesToggle={handlePropertiesToggle}
data={data}
/>
<PostPropertiesTable
isPropertiesOpen={isPropertiesOpen}
data={data}
/>
</div> </div>
); );
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment