generated from AND-SOPT-ANDROID/and-sopt-android-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Week7 필수과제 구현 #12
Open
sayyyho
wants to merge
16
commits into
develop
Choose a base branch
from
week7
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Week7 필수과제 구현 #12
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b766625
[chore] #9 - 파일 구조 변경
sayyyho a346adb
[chore] #9 - 파일 구조 변경
sayyyho 7a7e46b
[feature] #9 - repository, usecase 구현
sayyyho 9e4b874
[chore] #9 - gradle 동기화
sayyyho 70cb373
[feature] #9 - myInfo 재구현
sayyyho 466c5c6
[feature] #9 - SignIn 재구현
sayyyho 35afaca
[fix] #9 - 공통 컴포넌트 수정
sayyyho bb69bad
[fix] #9 - SignUp / SignIn 구조 수정
sayyyho f7f0610
[fix] #9 - 빌드 에러 수정
sayyyho 778838d
[fix] #9 - 홈 수정
sayyyho a760cb1
[fix] #9 - AndroidManifest 수정
sayyyho 4276b73
chore #11 - hilt 사용 초기 세팅
sayyyho c7c16cf
refactor #11 - SignInScreen MVI 리팩토링
sayyyho 1b2f1c7
refactor #11 - SignUpScreen MVI 리팩토링
sayyyho 949ccfc
fix #11 - 실행 오류 해결
sayyyho 2f88fef
refactor #11 - MVI 리팩토링
sayyyho 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
package org.sopt.and | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
@Serializable | ||
sealed class Route(val route: String) { | ||
@Serializable | ||
data object Home : Route("home") | ||
|
||
@Serializable | ||
data object SignIn : Route("signIn") | ||
|
||
@Serializable | ||
data object SignUp : Route("signUp") | ||
|
||
@Serializable | ||
data object Search : Route("search") | ||
|
||
@Serializable | ||
data object MyInfo : Route("myInfo") | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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. core에 위치시키신 이유가 있나요? |
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,18 @@ | ||
package org.sopt.and.core | ||
|
||
import androidx.annotation.StringRes | ||
import org.sopt.and.R | ||
|
||
enum class ContentType( | ||
@StringRes val titleResId: Int | ||
) { | ||
NEW_CLASSIC(R.string.type_new_classic), | ||
DRAMA(R.string.type_drama), | ||
ENTERTAINMENT(R.string.type_entertainment), | ||
MOVIE(R.string.type_movie), | ||
ANIMATION(R.string.type_animation), | ||
ABROAD_SERIES(R.string.type_abroad_series), | ||
INFORMATION_CULTURE(R.string.type_information_culture), | ||
KIDS(R.string.type_kids), | ||
MOVIE_PLUS(R.string.type_movie_plus), | ||
} |
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,3 @@ | ||
package org.sopt.and.core | ||
|
||
interface Route |
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.
UI 단에서 사용되는 sealed class니 presentation 단에 위치시켜주어도 좋을 것 같아요!