"use client" import styles from "./post-list.module.css" import ListItemSkeleton from "./list-item-skeleton" import ListItem from "./list-item" import { ChangeEvent, useCallback, useEffect, useState } from "react" import useDebounce from "@lib/hooks/use-debounce" import Link from "@components/link" import type { PostWithFiles } from "@lib/server/prisma" import Input from "@components/input" import Button from "@components/button" type Props = { initialPosts: string | PostWithFiles[] morePosts: boolean userId?: string } const PostList = ({ morePosts, initialPosts: initialPostsMaybeJSON, userId }: Props) => { const initialPosts = typeof initialPostsMaybeJSON === "string" ? JSON.parse(initialPostsMaybeJSON) : initialPostsMaybeJSON const [search, setSearchValue] = useState("") const [posts, setPosts] = useState(initialPosts) const [searching, setSearching] = useState(false) const [hasMorePosts, setHasMorePosts] = useState(morePosts) const debouncedSearchValue = useDebounce(search, 200) const loadMoreClick = useCallback( (e: React.MouseEvent) => { e.preventDefault() if (hasMorePosts) { async function fetchPosts() { const res = await fetch(`/server-api/posts/mine`, { method: "GET", headers: { "Content-Type": "application/json", "x-page": `${posts.length / 10 + 1}` } }) const json = await res.json() setPosts([...posts, ...json.posts]) setHasMorePosts(json.morePosts) } fetchPosts() } }, [posts, hasMorePosts] ) // update posts on search useEffect(() => { if (debouncedSearchValue) { setSearching(true) async function fetchPosts() { const res = await fetch( `/api/post/search?q=${encodeURIComponent( debouncedSearchValue )}&userId=${userId}`, { method: "GET", headers: { "Content-Type": "application/json" } } ) const json = await res.json() setPosts(json.posts) setSearching(false) } fetchPosts() } else { setPosts(initialPosts) } // TODO: fix cyclical dependency issue // eslint-disable-next-line react-hooks/exhaustive-deps }, [debouncedSearchValue, userId]) const handleSearchChange = (e: ChangeEvent) => { setSearchValue(e.target.value) } const deletePost = useCallback( (postId: string) => async () => { const res = await fetch(`/api/post/${postId}`, { method: "DELETE", }) if (!res.ok) { console.error(res) return } else { setPosts((posts) => posts.filter((post) => post.id !== postId)) } }, [] ) return (
{!posts &&

Failed to load.

} {!posts?.length && searching && (
)} {posts?.length === 0 && posts && (

No posts found. Create one{" "} here .

)} {posts?.length > 0 && (
    {posts.map((post) => { return ( ) })}
)} {hasMorePosts && !setSearchValue && (
)}
) } export default PostList