-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from TripInfoWeb/dev_refactoring
Feat: 정보 페이지네이션에서 좋아요 기능 구현
- Loading branch information
Showing
3 changed files
with
95 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
"use client"; | ||
|
||
import InformationLikeCount from "@/components/informations/detail/InformationLikeCount"; | ||
import useAuthStore from "@/store/authStore"; | ||
import { fetchWithAuth } from "@/utils/fetchWithAuth"; | ||
import { useState } from "react"; | ||
|
||
interface Props { | ||
informationId: number; | ||
likeCount: number; | ||
isLike: boolean; | ||
} | ||
|
||
const InformationLikeCountContainer = ({ | ||
informationId, | ||
likeCount, | ||
isLike, | ||
}: Props) => { | ||
const userId = useAuthStore().id; | ||
const [isLiked, setIsLiked] = useState(isLike); | ||
const [currentLikeCount, setCurrentLikeCount] = useState(likeCount); | ||
const [loading, setLoading] = useState(false); | ||
|
||
const onLikesClick = async () => { | ||
if (loading) { | ||
return; | ||
} | ||
|
||
setLoading(true); | ||
const data = new URLSearchParams(); | ||
data.append("infoId", informationId.toString()); | ||
|
||
if (isLiked) { | ||
setCurrentLikeCount(currentLikeCount - 1); | ||
setIsLiked(false); | ||
|
||
const response = await fetchWithAuth("/api/informations/great", { | ||
method: "DELETE", | ||
headers: { | ||
"Content-Type": "application/x-www-form-urlencoded", | ||
}, | ||
body: data.toString(), | ||
cache: "no-store", | ||
}); | ||
|
||
if (!response.ok) { | ||
setCurrentLikeCount(currentLikeCount + 1); | ||
setIsLiked(true); | ||
setLoading(false); | ||
alert("좋아요 취소에 실패하였습니다."); | ||
throw new Error(response.statusText); | ||
} | ||
} else { | ||
setCurrentLikeCount(currentLikeCount + 1); | ||
setIsLiked(true); | ||
|
||
const response = await fetchWithAuth("/api/informations/great", { | ||
method: "POST", | ||
headers: { | ||
"Content-Type": "application/x-www-form-urlencoded", | ||
}, | ||
body: data.toString(), | ||
cache: "no-store", | ||
}); | ||
|
||
if (!response.ok) { | ||
setCurrentLikeCount(currentLikeCount - 1); | ||
setIsLiked(false); | ||
setLoading(false); | ||
alert("좋아요 등록에 실패하였습니다."); | ||
throw new Error(response.statusText); | ||
} | ||
} | ||
|
||
setLoading(false); | ||
}; | ||
|
||
return ( | ||
<InformationLikeCount | ||
clickable={userId > 0} | ||
likeCount={currentLikeCount} | ||
isLiked={isLiked} | ||
onLikesClick={onLikesClick} | ||
/> | ||
); | ||
}; | ||
|
||
export default InformationLikeCountContainer; |