-
Notifications
You must be signed in to change notification settings - Fork 1
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
FE-27 ✨ 마이페이지 오늘의 감정 선택 main 머지 요청 #158
Merged
Merged
Changes from 23 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d24ecd3
FE-34 :sparkles: 마이페이지 프로필 수정 기능 (#53)
JeonYumin94 6d5e64b
FE-36 :sparkles: 마이페이지 캘린더 출력 함수 (#58)
JeonYumin94 74a85a3
FE-36 :sparkles: 마이페이지 감정달력 (#65)
JeonYumin94 4d3cc05
FE-27 :twisted_rightwards_arrows: 에픽 브랜치 최신화 (#81)
JeonYumin94 5996a59
FE-27 :twisted_rightwards_arrows: 마이페이지 에픽 브랜치 최신화 (#85)
JeonYumin94 10a42ad
FE-27 :twisted_rightwards_arrows: 브랜치 최신화 (#86)
JeonYumin94 569f2e0
FE-37 :sparkles: 마이페이지 감정차트 (#89)
JeonYumin94 0ac6c7f
FE-27 :twisted_rightwards_arrows: 브랜치 최신화 (#99)
JeonYumin94 cd9d59e
FE-27 :twisted_rightwards_arrows: 마이페이지 최신화 (#102)
JeonYumin94 9e4ab47
FE-27 :twisted_rightwards_arrows: 브랜치 최신화 (충돌수정) (#111)
kich555 bbdbbb2
Merge branch 'main' into epic/FE-27--my-page
JeonYumin94 37295ed
FE-27 :twisted_rightwards_arrows: 충돌에러 수정 (#113)
JeonYumin94 80cc38e
FE-27 :truck: 마이페이지 ui 관련 폴더 이동 (#114)
JeonYumin94 3685edc
FE-38 :sparkles: 마이페이지 내 에피그램 목록 조회 (#126)
JeonYumin94 11b67a0
FE-27 :twisted_rightwards_arrows: 브랜치 최신화 (#127)
JeonYumin94 dbbdf15
Merge branch 'main' into epic/FE-27--my-page
JeonYumin94 aa1a7b6
FE-27 :twisted_rightwards_arrows: 마이페이지 브랜치 최신화 (#130)
JeonYumin94 e3a8a8c
FE-27 :sparkles: 마이페이지 내 댓글목록 조회 (#137)
JeonYumin94 8e76899
FE-40 :sparkles: 내 댓글 수정 및 삭제 기능 (#141)
JeonYumin94 6f76eab
FE-27 :twisted_rightwards_arrows: 마이페이지 브랜치 최신화 (#145)
JeonYumin94 c0ff71f
Merge branch 'main' into epic/FE-27--my-page
JeonYumin94 b4b1682
FE-27 :fire: 폴더이동 후 삭제 안된 기존 파일 삭제 (#148)
JeonYumin94 003bdcf
FE-35 :sparkles: 마이페이지 오늘의 감정 컴포넌트 연동 (#149)
JeonYumin94 3009fa4
FE-35 :recycle: 마이페이지 내 에피그램/댓글 선택 버튼컴포넌트로 변경 (#177)
JeonYumin94 9e90eca
Merge branch 'main' into epic/FE-27--my-page
JeonYumin94 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
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
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,7 @@ | ||
import quries from '@/apis/queries'; | ||
import { CommentRequestType } from '@/schema/comment'; | ||
import { useQuery } from '@tanstack/react-query'; | ||
|
||
const useCommentsHook = (requset: CommentRequestType) => useQuery(quries.epigramComment.getMyComments(requset)); | ||
|
||
export default useCommentsHook; |
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,7 @@ | ||
import quries from '@/apis/queries'; | ||
import { GetUserRequestType } from '@/schema/user'; | ||
import { useQuery } from '@tanstack/react-query'; | ||
|
||
const useGetMyContentHook = (requset: GetUserRequestType) => useQuery(quries.user.getMyContentCount(requset)); | ||
|
||
export default useGetMyContentHook; |
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
Oops, something went wrong.
Oops, something went wrong.
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.
🙋♀Suggestion - Mycomment.tsx에서는 Button 컴포넌트를 사용하시는데 하나로 통일시키면 좋을거같아요!