-
Notifications
You must be signed in to change notification settings - Fork 3
[API] 피드 댓글 구현 #98
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
Nico1eKim
merged 11 commits into
THIP-TextHip:develop
from
Nico1eKim:api/#97-feed_comments
Aug 18, 2025
Merged
[API] 피드 댓글 구현 #98
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
44456ee
[feat]: 댓글 작성 낙관적 업데이트 적용 (#97)
Nico1eKim 22af505
[feat]: 피드 댓글 조회 적용 (#97)
Nico1eKim 8bb54c2
[feat]: 피드 댓글 작성 로직 수정 (#97)
Nico1eKim 34a4db8
[refactor]: 답글 작성 로직 수정 (#97)
Nico1eKim cb26a6f
[refactor]: 댓글 삭제 피드에서는 모달이, 기록에서는 바텀시트 뜨도록 수정 (#97)
Nico1eKim e9ad790
[refactor]: 오늘의 한마디 생성 response, request 이름 수정 (#97)
Nico1eKim 2f2027b
[feat]: 오늘의 한마디 조회 response, service, repository 작성 (#97)
Nico1eKim 1cb7a57
[feat]: 오늘의 한마디 조회 viewmodel 작성, 화면에 적용 (#97)
Nico1eKim 35277b9
[refactor]: 오늘의 한마디 작성하면 스크롤 아래로 내려가도록 수정 (#97)
Nico1eKim 1e8fcca
[refactor]: 오늘의 한마디 작성 횟수에 따라 toast message 뜨도록 수정 (#97)
Nico1eKim 082d953
Merge branch 'develop' of https://github.com/THIP-TextHip/THIP-Androi…
Nico1eKim 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 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
10 changes: 10 additions & 0 deletions
10
.../main/java/com/texthip/thip/data/model/rooms/response/RoomsCreateDailyGreetingResponse.kt
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,10 @@ | ||
| package com.texthip.thip.data.model.rooms.response | ||
|
|
||
| import kotlinx.serialization.Serializable | ||
|
|
||
| @Serializable | ||
| data class RoomsCreateDailyGreetingResponse( | ||
| val attendanceCheckId: Long, | ||
| val roomId: Long, | ||
| val isFirstWrite: Boolean, | ||
| ) |
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
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
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/texthip/thip/ui/common/CommentActionMode.kt
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,6 @@ | ||
| package com.texthip.thip.ui.common | ||
|
|
||
| enum class CommentActionMode { | ||
| POPUP, | ||
| BOTTOM_SHEET | ||
| } |
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
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
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.
Composable 기본 파라미터에서 stringResource 사용은 컴파일 에러를 유발합니다
@composable 컨텍스트가 아닌 기본 인자(default argument)에서 stringResource를 호출하면 Compose 컴파일러가 허용하지 않습니다. 메시지는 null 허용으로 바꾸고, 함수 본문에서 stringResource로 대체값을 적용하세요.
Also applies to: 47-51