Skip to content
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

Feature/#74 사용자 등록 기능 #95

Conversation

tmdgh1592
Copy link
Member

@tmdgh1592 tmdgh1592 commented Jul 25, 2023

#️⃣연관된 이슈

ex) #74

📝작업 내용

온보딩 화면에서 활동 내용과, 서버

스크린샷 (선택)

스크린샷 2023-07-25 오후 8 39 37

예상 소요 시간 및 실제 소요 시간

이슈의 예상 소요 시간과 실제 소요된 시간을 분 or 시간 or 일 단위로 작성해주세요.
2일
ex) 예상시간/걸린시간 => 2시간/3시간

💬리뷰 요구사항(선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요

tmdgh1592 and others added 30 commits July 18, 2023 16:36
- 서버 API 미구현으로 아직 온전한 기능 구현 상태는 아님
- 동아리가 클럽으로 되어 있어서 데이터를 변환하지 못하는 버그였음.
@tmdgh1592 tmdgh1592 added the Android 안드로이드 관련 이슈 label Jul 25, 2023
@tmdgh1592 tmdgh1592 self-assigned this Jul 25, 2023
Copy link
Collaborator

@ki960213 ki960213 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

xml 쪽은 리뷰하지 않았습니다.

val activities: List<Activity>
) {
companion object {
fun from(activitiesApiModels: List<ActivitiesApiModel>): List<Activities> =
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

데이터 모델이 ApiModel에 의존해서는 안된다고 생각합니다. apiModel.toExternal() 혹은 apiModel.toDomain()이런 식으로 바꾸는 게 좋을 것 같습니다. 만약 로컬 데이터 저장소에서 로그인 데이터를 불러온다면 Login.from(entity: LoginEntity) 이렇게 새로 만들어줘야 하기 때문입니다. 즉, 데이터 소스 모델에 의해 데이터 모델이 변경되면 안된다고 생각합니다.

정적 팩토리 메서드는 해당 클래스 혹은 그 하위 타입을 반환하는 것이 좋다고 생각합니다! 리스트처럼 다른 타입으로 변환하는 일은 다른 Activities 외부에서 하는 것이 좋지 않을까요? 이처럼 다른 타입으로 변환하는 일을 Activities에 포함한다면 Activities 클래스가 하는 일이 많아질 거라고 생각합니다.

Copy link
Member Author

@tmdgh1592 tmdgh1592 Jul 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

정리하자면,
이후에 같은 데이터 모델에 대해 여러 타입으로 변환될 일이 생길 수 있기 때문에,
변환을 모두 데이터 모델에 맡기면 한 클래스가 하는 일이 많아질 수 있고, 기존 클래스의 변경을 최소화하자는 말씀으로 이해하고 리뷰 반영하겠습니다.

val name: String,
) {
companion object {
fun from(activitiesApiModel: List<ActivityApiModel>): List<Activity> =
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

위의 ApiModel 및 정적 팩토리 메서드 리뷰와 마찬가지입니다.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

동일하게 반영 완료하였습니다 : )

val isRegistered: Boolean,
) {
companion object {
fun from(apiModel: LoginApiModel): Login = Login(
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

위의 ApiModel 리뷰와 마찬가지입니다.

@SerialName("activityIds")
val activityIds: List<Int>,
) {
companion object {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이것처럼 ApiModel이 데이터 모델에 의존해야 한다고 생각합니다.

}

private fun fetchActivities(): Job = viewModelScope.launch {
when (val activitiesApiModel = activityRepository.getActivities()) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

리포지터리에서 ApiModel을 반환하나요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apiResult를 apiModel로 잘못 작성하였네요..!
activitiesResult로 변경하였습니다.

var isSelected: Boolean = false,
) {
companion object {
fun from(activities: List<Activity>): List<ActivityUiState> =
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

위의 정적 팩토리 메서드 리뷰와 동일합니다.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

List는 T가 아니기 때문에 적절한 정적 팩토리 메서드 패턴이 아니라는 의미로 이해했습니다.
코드 수정 완료하였습니다.

val activities: List<ActivityUiState>,
) {
companion object {
fun from(tags: List<Activities>): List<ActivitiesUiState> = tags.map(::from)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

위의 정적 팩토리 메서드와 동일합니다.

tmdgh1592

This comment was marked as spam.

@tmdgh1592 tmdgh1592 added the High Priority 리뷰 우선순위가 높은 PR label Jul 26, 2023

class TokenRepositoryImpl(context: Context) : TokenRepository {
private val preference: SharedPreferences =
context.getSharedPreferences("kerdy", Context.MODE_PRIVATE)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SharedPreference 도 싱글톤으로 만들어서 의존성으로 사용하면 어떨까요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SharedPreferenceContainer를 만들어서 주입받도록 변경하였습니다.
앞으로는 다른 곳에서도 Preference를 공통으로 사용할 수 있습니다.

setOnCheckedChangeListener { _, _ -> viewModel.toggleTagSelection(jobTag) }
}

override fun onClick(view: View) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

그냥 buttonClickListener 에 한번에 구현하는 것이 개인적으로 가독성이 좋아보여요

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

현재 클릭할 뷰가 하나이므로, 스캇 말씀처럼 View.OnClickListener를 구현하는 것보다 바로 setOnClickListener에 구현하는 것이 가독성이 좋아 보입니다!
수정 완료하였습니다 : )

private val activityRepository: ActivityRepository,
private val memberRepository: MemberRepository,
) : ViewModel() {
val nameUiState: MutableLiveData<String> = MutableLiveData()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 변수는 naeUiState 로 하고, 나머지는 UiState 안붙인게 통일성에 안맞는 것 같아요. 이것도 그냥 name 으로 하는것이 좋을 것 같네요.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

감사합니다! nameUiState는 깜빡하고 프리픽스를 제거하지 않았었네요 😭
수정 완료하였습니다~

Copy link
Collaborator

@chws0508 chws0508 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^^

block: ActivityTag.() -> Unit
): ActivityTag = requireContext().chipOf(block)

fun Context.chipOf(
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이건 안쓰이는것 같은데 지워도 될 것 같아요!

@chws0508 chws0508 merged commit 2d81b8e into woowacourse-teams:android-main Jul 27, 2023
1 check failed
@tmdgh1592 tmdgh1592 deleted the Feature/#74-사용자_등록_기능 branch July 30, 2024 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Android 안드로이드 관련 이슈 High Priority 리뷰 우선순위가 높은 PR
Projects
Status: Archive
Development

Successfully merging this pull request may close these issues.

6 participants