feat: add reply editor to post page

This commit is contained in:
Stevan Freeborn
2023-09-12 16:56:07 -05:00
parent 230d4b8b47
commit b441b781a0
4 changed files with 60 additions and 13 deletions
+38 -7
View File
@@ -1,12 +1,22 @@
'use client';
import Editor from '@/components/Editor';
import Post from '@/components/Post';
import SpinningLoader from '@/components/SpinningLoader';
import { useUser } from '@clerk/nextjs';
import { useQuery } from 'convex/react';
import Image from 'next/image';
import { api } from '../../../../convex/_generated/api';
import { Id } from '../../../../convex/_generated/dataModel';
export default function PostPage({ params }: { params: { id: string } }) {
export default function PostPage({
params,
searchParams,
}: {
params: { id: string };
searchParams: { reply?: boolean };
}) {
const user = useUser();
const post = useQuery(api.posts.getPostById, {
id: params.id as Id<'posts'>,
});
@@ -18,14 +28,35 @@ export default function PostPage({ params }: { params: { id: string } }) {
return (
<main className='flex flex-col flex-1 w-full items-center'>
<div className='w-full max-w-4xl'>
<div className='flex flex-col items-center w-full max-w-4xl gap-4'>
{post === undefined ? (
<SpinningLoader className='animate-spin w-5 h-5' />
<div className='flex items-center gap-2'>
<SpinningLoader className='animate-spin w-5 h-5' /> Loading post...
</div>
) : (
<Post
post={post}
limit={false}
/>
<>
<div className='p-1 rounded-md border border-gray-600'>
<Post
post={post}
limit={false}
showReply={false}
/>
</div>
<div className='flex w-full h-80 gap-4'>
{user.isSignedIn !== true ? null : (
<div>
<Image
alt='user profile image'
src={user.user.imageUrl}
width={40}
height={40}
className='rounded-full object-cover border-4 border-primary-accent'
/>
</div>
)}
<Editor />
</div>
</>
)}
</div>
</main>