mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { useEffect } from 'react';
|
|
import { useComment, useSubplebbit } from '@plebbit/plebbit-react-hooks';
|
|
import { useLocation, useParams } from 'react-router-dom';
|
|
import Post from '../../components/post/post';
|
|
import styles from './post-page.module.css';
|
|
import { DescriptionPost, RulesPost } from '../subplebbit/subplebbit';
|
|
import { isDescriptionView, isRulesView } from '../../lib/utils/view-utils';
|
|
|
|
const PostPage = () => {
|
|
const params = useParams();
|
|
const { commentCid, subplebbitAddress } = params;
|
|
|
|
const subplebbit = useSubplebbit({ subplebbitAddress });
|
|
const { createdAt, description, rules, suggested, title } = subplebbit;
|
|
|
|
const location = useLocation();
|
|
const isInDescriptionView = isDescriptionView(location.pathname, params);
|
|
const isInRulesView = isRulesView(location.pathname, params);
|
|
|
|
const post = useComment({ commentCid });
|
|
|
|
useEffect(() => {
|
|
window.scrollTo(0, 0);
|
|
}, []);
|
|
|
|
return (
|
|
<div className={styles.content}>
|
|
{isInDescriptionView ? (
|
|
<DescriptionPost avatarUrl={suggested?.avatarUrl} createdAt={createdAt} description={description} subplebbitAddress={subplebbitAddress} title={title} />
|
|
) : isInRulesView ? (
|
|
<RulesPost createdAt={createdAt} rules={rules} subplebbitAddress={subplebbitAddress} />
|
|
) : (
|
|
<Post post={post} showAllReplies={true} />
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PostPage;
|