-
Notifications
You must be signed in to change notification settings - Fork 0
feat: 도서 상세 화면 개편 #269
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
feat: 도서 상세 화면 개편 #269
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
25c7ecd
[BOOK-499] feat: “내 기록 모음” 부분 텍스트 색상 수정
doyeonk429 f198b07
[BOOK-499] feat: 도서 상세 헤더 간격 수정
doyeonk429 c348d2e
[BOOK-499] feat: “내 기록 모음” 상단 간격 수정
doyeonk429 1009109
[BOOK-499] feat: BookDetailItem page -> Int?로 변경
doyeonk429 e89a389
[BOOK-499] feat: BookDetailViewCell 디자인 수정
doyeonk429 f6c138d
[BOOK-499] feat: Colorsystem 수정사항 반영
doyeonk429 91c05ae
[BOOK-499] feat: SeedGraphView(progress bar) 개발
doyeonk429 c9fe268
[BOOK-499] feat: SeedItemView 개발
doyeonk429 fbd54e3
[BOOK-499] feat: SeedReportView 내부 뷰 수정
doyeonk429 3aaa798
[BOOK-499] feat: add api-v2 base url
doyeonk429 d26e95c
[BOOK-499] feat: etc emotion case 추가
doyeonk429 8ef8f5e
[BOOK-499] feat: api-v2 적용하는 케이스만 따로 분류
doyeonk429 f27f584
[BOOK-499] feat: fetch, seed v2 responseDTO 추가
doyeonk429 38d0ce3
[BOOK-499] feat: fetch in RecordRepo 수정 및 RecordFetchResult Entity 생성
doyeonk429 7644789
[BOOK-499] feat: FetchRecordsUseCase 수정
doyeonk429 124cf2a
[BOOK-499] feat: 대표감정 api 연결
doyeonk429 ad31bd2
[BOOK-499] fix: Emotion 추가 케이스 관련한 예외 처리
doyeonk429 79bf7a9
[BOOK-499] fix: 불필요한 출력문 제거
doyeonk429 415d021
[BOOK-499] feat: 설명 텍스트 EmotionSeed case에 따라 분리
doyeonk429 ca5ce5d
[BOOK-499] fix: codeRabbit review 반영
doyeonk429 131c1ac
[BOOK-499] fix: peer Review 반영
doyeonk429 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| // Copyright © 2026 Booket. All rights reserved | ||
|
|
||
| import UIKit | ||
|
|
||
| public extension Optional where Wrapped == Int { | ||
| /// Int? 값을 "123p" 또는 값이 없을 경우 "-p" 문자열로 반환합니다. | ||
| var toPageString: String { | ||
| return self.map { "\($0)p" } ?? "-p" | ||
| } | ||
| } |
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
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
13 changes: 13 additions & 0 deletions
13
src/Projects/BKData/Sources/DTO/Response/PrimaryEmotionResponseDTO.swift
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,13 @@ | ||
| // Copyright © 2026 Booket. All rights reserved | ||
|
|
||
| import BKDomain | ||
|
|
||
| public struct PrimaryEmotionResponseDTO: Decodable { | ||
| let code: String | ||
| let displayName: Emotion | ||
| } | ||
doyeonk429 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| public struct DetailEmotionResponseDTO: Decodable { | ||
| let id: String | ||
| let name: String | ||
| } | ||
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
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
22 changes: 22 additions & 0 deletions
22
src/Projects/BKDomain/Sources/Entity/RecordFetchResult.swift
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,22 @@ | ||
| // Copyright © 2026 Booket. All rights reserved | ||
|
|
||
| import Foundation | ||
|
|
||
| public struct RecordFetchResult { | ||
| public let infos: [RecordInfo] | ||
| public let hasMore: Bool | ||
| public let totalCount: Int | ||
| public let mainEmotion: Emotion? | ||
|
|
||
| public init( | ||
| infos: [RecordInfo], | ||
| hasMore: Bool, | ||
| totalCount: Int, | ||
| mainEmotion: Emotion? | ||
| ) { | ||
| self.infos = infos | ||
| self.hasMore = hasMore | ||
| self.totalCount = totalCount | ||
| self.mainEmotion = mainEmotion | ||
| } | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.