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

[ui] 위니 피드 / 서브 플로팅 버튼 추가 및 디자인 변경 반영 #234

Merged
merged 18 commits into from
Jan 16, 2024

Conversation

sxunea
Copy link
Contributor

@sxunea sxunea commented Jan 10, 2024

📝 Work Description

  • 업로드 FAB 클릭 시 소비 / 절약 서브 버튼 구현
  • 배너 디자인 변경 반영
  • sub color 디자인 시스템 추가

📸 Screenshot

image

📣 To Reviewers

일단 UI는 완성됐는데 문제가 있습니다 위의 사진 처럼 업로드 버튼을 클릭하면 기존 뷰는 어둡게 변하고 그 위에 서브 버튼이 추가되어야 하는 상황인데, 실행시켜보면 UI는 구현이 되었지만 기존 뷰의 비활성화 처리가 되지 않았어요 !

지금 구현 방식은 FAB 를 클릭하면 fragment에 어두운 오버레이가 추가되고, 서브버튼의 visibility를 조절하는 방식인데, 서브 버튼이 나타나면서 배경은 어두워지되, 기존 뷰는 보이고, 클릭이나 스크롤은 비활성화가 되어야 합니다
근데 이게 오버레이를 추가하는 방식이다 보니 서브버튼-절약했어요 를 클릭해도 뒤 기존 뷰의 위니 피드가 클릭이 됩니다

시도 했던 방법은 이걸 framelayout으로 변경하는 거랑 / 기존 뷰 전체를 isClickable, isFocusable을 false로 관리하는 것인데 첫번째 시도는 결과가 같았구, 두번째 시도는 해당 속성을 false로 줘도 클릭리스너가 달려있으면 이를 제어할 수가 없다고 하더라구요 .. ! 딱 다이얼로그가 나타나는 방식으로 구현해야 하는데 아이디어 있으면 부탁합니다 . . .


-> 다이얼로그로 구현하면 됐었네요 .. 쓰다가 깨달았다 😿 서브버튼 자체를 다이얼로그로 구현하고 FAB 클릭 시 다이얼로그를 오른쪽 하단에 위치시키도록 했습니다 : )

@sxunea sxunea added ui 🎨 UI 관련 작업 혜선 🐱 labels Jan 10, 2024
@sxunea sxunea requested review from leeeha and Sangwook123 January 10, 2024 07:49
@sxunea sxunea self-assigned this Jan 10, 2024
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.

한가지 첨언하고 싶은 것은 다이얼로그가 뜰 때 디폴트로 아래에서 위로 올라오는 듯한 애니메이션이 있더라구요..?! 이게 없으면 조금 더 자연스럽게 업로드 버튼이 '연필 모양 -> X 버튼'으로 바뀔 거 같은데 이 부분 혹시 개선 가능할까요?? 👀

initFabClickListener()
initNotificationButtonClickListener()
addListener()
addObserver()
Copy link
Member

Choose a reason for hiding this comment

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

ㅋㅋㅋ러넥트 코드가 생각나네요!! 🤣

@@ -316,12 +322,22 @@ class WineyFeedFragment :
}

private fun initFabClickListener() {
binding.btnWineyfeedFloating.setOnSingleClickListener {
binding.fabWineyfeedUpload.setOnSingleClickListener {
Copy link
Member

Choose a reason for hiding this comment

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

네이밍 바꾼 거 좋네요! 👍

},
handleConsumeButton = {}
)
dialog.show(parentFragmentManager, TAG_CONGRATULATION_DIALOG)
Copy link
Member

Choose a reason for hiding this comment

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

parentFragmentManager는 requireActivity, requireContext와 유사하게 변수가 널인 경우에 예외를 던진다고 합니다!
nullable 타입을 반환하는 등 런타임 에러를 방지할 수 있는 다른 방법을 찾아보는 게 좋을 거 같아요!

관련 러넥트 문서: https://www.notion.so/runnectiosonboarding/f73a4433b0194225bbc764abfb8f8fd8?pvs=4

Copy link
Member

Choose a reason for hiding this comment

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

다이얼로그를 서로 구분하는 데 사용되는 tag 이름을 다른 걸로 지어주는 게 좋을 거 같아요! 현재 다이얼로그는 축하 다이얼로그가 아닌 거 같아서요 :)

@@ -507,6 +523,7 @@ class WineyFeedFragment :
private const val TAG_CONGRATULATION_DIALOG = "CONGRATULATION_DIALOG"
private const val TAG_FEED_DELETE_DIALOG = "FEED_DELETE_DIALOG"
private const val TAG_FEED_REPORT_DIALOG = "FEED_REPORT_DIALOG"
private const val TAG_UPLOAD_DIALOG = "UPLOAD_DIALOG"
Copy link
Member

Choose a reason for hiding this comment

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

여기 만들어두고 깜박하셨군요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

만들어두고 넣질 않았네요 ㅎㅎㅎ

setupDialogBehavior()
initConsumeButtonClickListener(handleConsume)
initSaveButtonClickListener(handleSave)
initCloseButtonClickListener()
Copy link
Member

Choose a reason for hiding this comment

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

여기도 addListener로 묶어주면 코드의 통일성이 더 생길 거 같습니다!

<color name="sub_red_500">#FF6271</color>
<color name="sub_red_100">#FFB0B8</color>
<color name="sub_green_500">#00CB81</color>
<color name="sub_green_100">#80E5C0</color>
Copy link
Member

Choose a reason for hiding this comment

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

서브 컬러 색깔 이쁘더라구요 역시 디팀👍

android:layout_marginEnd="9dp"
android:layout_width="95dp"
android:layout_height="56dp"
android:layout_marginEnd="10dp"
android:src="@drawable/img_insta"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
Copy link
Member

Choose a reason for hiding this comment

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

디테일한 수정 작업 고생하셨습니당~~!!

},
handleConsumeButton = {}
)
activity?.supportFragmentManager?.let { dialog.show(it, TAG_UPLOAD_DIALOG) }
Copy link
Member

Choose a reason for hiding this comment

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

nullable 타입 반환에 따라 별도 처리를 해줘야 한다는 게 다소 번거롭지만, non-null 타입이 null을 반환하여 exception이 발생하는 것은 막을 수 있을 거 같습니다!

@sxunea sxunea merged commit 3e6ed20 into develop Jan 16, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ui 🎨 UI 관련 작업 혜선 🐱
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

[ui] 위니 피드 / 플로팅 버튼 절약,낭비 서브 버튼 추가 및 간단한 디자인 변경 반영
2 participants