-
Notifications
You must be signed in to change notification settings - Fork 2
feat: 댓글 전체 공개 상태 조회 구현 #323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
frontend/app/(WithNavbar)/admin/[generation]/comments-disclosure/page.tsx
This file contains hidden or 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,65 @@ | ||
| "use client"; | ||
|
|
||
| import { | ||
| getCommentsDisclosure, | ||
| postCommentsDisclosure, | ||
| } from "@/src/apis/comment"; | ||
| import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query"; | ||
|
|
||
| const QUERY_KEY = ["comments-disclosure"]; | ||
|
|
||
| export default function CommentsDisclosurePage() { | ||
| const queryClient = useQueryClient(); | ||
| const { data, isLoading, isError } = useQuery( | ||
| QUERY_KEY, | ||
| getCommentsDisclosure | ||
| ); | ||
|
|
||
| const { mutate: updateDisclosure, isLoading: isUpdating } = useMutation( | ||
| postCommentsDisclosure, | ||
| { | ||
| onSuccess: () => { | ||
| queryClient.invalidateQueries({ queryKey: QUERY_KEY }); | ||
| }, | ||
| onError: () => { | ||
| alert("댓글 공개 상태 변경에 실패했습니다. 잠시 후 다시 시도해주세요."); | ||
| }, | ||
| } | ||
| ); | ||
|
Comment on lines
+18
to
+28
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| if (isLoading) { | ||
| return <div className="mt-10">로딩중...</div>; | ||
| } | ||
|
|
||
| if (isError || data === undefined) { | ||
| return <div className="mt-10">에러 발생</div>; | ||
| } | ||
|
|
||
| const nextDisclosure = !data; | ||
|
|
||
| return ( | ||
| <section className="mt-10 flex flex-col gap-4 max-w-xl"> | ||
| <h2 className="text-xl font-semibold">댓글 전체 공개 상태 관리</h2> | ||
| <div className="rounded-lg border p-6 flex items-center justify-between"> | ||
| <div className="text-lg font-medium"> | ||
| 현재 상태:{" "} | ||
| <span className={data ? "text-primary" : "text-gray-500"}> | ||
| {data ? "활성화" : "비활성화"} | ||
| </span> | ||
| </div> | ||
| <button | ||
| type="button" | ||
| className={`rounded-md text-white px-4 py-2 disabled:bg-gray-300 ${ | ||
| nextDisclosure | ||
| ? "bg-blue-500 hover:bg-blue-600" | ||
| : "bg-gray-500 hover:bg-gray-600" | ||
| }`} | ||
| onClick={() => updateDisclosure(nextDisclosure)} | ||
| disabled={isUpdating} | ||
| > | ||
| {nextDisclosure ? "활성화" : "비활성화"} | ||
| </button> | ||
| </div> | ||
| </section> | ||
| ); | ||
| } | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -107,3 +107,16 @@ export const getCommentsIsLike = async (commentId: string) => { | |
|
|
||
| return data; | ||
| }; | ||
|
|
||
| export const getCommentsDisclosure = async () => { | ||
| const { data } = await https.get<boolean | string>(`/comments/disclosure`); | ||
| return data === true || data === "true"; | ||
| }; | ||
|
|
||
| export const postCommentsDisclosure = async (isDisclosure: boolean) => { | ||
| const { data } = await https.post<boolean | string>( | ||
| `/comments/disclosure`, | ||
| `${isDisclosure}` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ); | ||
| return data === true || data === "true"; | ||
| }; | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TanStack Query v5 이상을 사용 중이라면
useQuery의 인자를 객체 형태({ queryKey, queryFn })로 전달해야 합니다. 현재의 방식은 v4 이하의 문법이므로, 프로젝트의 라이브러리 버전에 맞춰 최신 문법을 적용하는 것을 권장합니다.