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

[REFACTOR] kotlin-android-extensions 제거 후 viewBinding, kotlinx-parcelize 도입 #358

Merged
merged 7 commits into from
Jul 4, 2024

Conversation

sxunea
Copy link
Collaborator

@sxunea sxunea commented Jul 3, 2024

📌 개요

✨ 작업 내용

  • kotlin-android-extensions 를 제거하고 parcelize 플러그인 추가
  • viewBinding으로 기존의 익스텐션 대체

✨ PR 포인트

이제 컴포즈 버전업하면 될 것 같습니다 ~! 기존 다이얼로그 동작 잘되나 다 확인하긴 했는데 그래도 한번씩 실행부탁드려요

그리고 기존 contextExt 로직을 유지하는 선에서 딱 제거작업만 해서 findViewById와 같은 개선할만한 사항이 남아있긴 합니다 컴포즈로 이전할 예정이라서 개선없이 그냥 두었어요 : )

@sxunea sxunea added REFACTOR 🧹 코드 리팩토링 혜선 🐱 혜선 담당 labels Jul 3, 2024
@sxunea sxunea requested review from dongx0915, leeeha and unam98 July 3, 2024 11:25
@sxunea sxunea self-assigned this Jul 3, 2024
Copy link
Contributor

@unam98 unam98 left a comment

Choose a reason for hiding this comment

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

수고 많으셨습니다 최고야

@@ -502,15 +501,14 @@ class DrawActivity : BindingActivity<ActivityDrawBinding>(R.layout.activity_draw
* 코스 완성 시 뜨는 팝업 (보관함 가기 / 바로 달리기)
*/
private fun notifyCreateFinish() { //todo dialogFragment로 리팩토링
Copy link
Contributor

Choose a reason for hiding this comment

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

dialog를 만들 수 있는 이유는 다양한데 dialogFragment를 써야 하는 이유가 있을까요?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

일단 저 주석이 제가 작성한게 아니긴한데 .. 😅 아마 setActivityDialog()가 alertDialog를 만드는 함수여서 BindingDialogFragment도 만든김에 dialogFragment로 리팩토링하려고 하지 않았을까 싶습니다 !!

Copy link
Contributor

Choose a reason for hiding this comment

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

dialog를 쓰면 activity가 파괴될 때 같이 없애주지 않으면 window leak 에러가 뜹니다.
dialogFragment를 쓰면 fragment의 생명주기를 활용해 activity가 파괴될 때 하위로 속해있는 fragment들까지 자동으로 파괴되므로 memory leak 문제를 편리하게 예방할 수 있습니당. 👍🏻

https://bb-library.tistory.com/258

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

아아 주석에 대한 질문이 아니라 공부의 목적이었군요 ㅎㅎㅎ 맞아요 dialogFragment는 생명주기 관리의 이점이 있죠 덕분에 한 번 더 짚고 넘어갑니다 감사해용 😊

Copy link
Member

@leeeha leeeha left a comment

Choose a reason for hiding this comment

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

이슈 파두고 계속 미루고 있었는데 😂
대신 마이그레이션 해줘서 고맙습니다!! 👍

@sxunea sxunea merged commit 7fa655c into develop Jul 4, 2024
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
REFACTOR 🧹 코드 리팩토링 혜선 🐱 혜선 담당
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[REFACTOR] kotlin-android-extensions -> 뷰 바인딩
3 participants