-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* refactor(repository): Default 가 접두사가 되도록 변경 * refactor(FestivalSearch): 축제 검색 객체 재생성 * refactor(response): API 명세에 맞게 이름 수정 * refactor(Module): 검색 원격 저장소 주입 * fest(Module): 아티스트 저장소 주입 * fest(Festival): 축제는 학교를 가지지 않을 수 있다 * fest(artist): 아티스트 상세 응답 받기 객체 정의 * fest(festival): 7 이하는 분홍색으로 표시한다 * fest(ArtistDetailViewModel): 데이터를 비동기로 요청한다 * fest(FestivalResponse): 학교를 가지지 않을 수 있다 * refactor(ArtistDetailViewModel): 아티스트 상세 비동기 호출 코드 정리 * refactor(ArtistSearchViewHolder): 공연 개수 길이에 따라 색깔이 바뀐다 * feat: 학교 상세 화면 다른 화면과 연결 --------- Co-authored-by: vrexpert <[email protected]>
- Loading branch information
1 parent
3543535
commit 8b5ca75
Showing
8 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...ation/src/main/java/com/festago/festago/presentation/ui/schooldetail/SchoolDetailEvent.kt
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 @@ | ||
package com.festago.festago.presentation.ui.schooldetail | ||
|
||
sealed interface SchoolDetailEvent { | ||
class ShowArtistDetail(val artistId: Long) : SchoolDetailEvent | ||
|
||
class ShowFestivalDetail(val festivalId: Long) : SchoolDetailEvent | ||
} |
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
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