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

[FEAT] 보관함 / 내가 그린 코스 수정, 삭제, 공유 기능 구현 #341

Merged
merged 61 commits into from
May 2, 2024

Conversation

leeeha
Copy link
Member

@leeeha leeeha commented Mar 22, 2024

📌 개요

✨ 작업 내용

  • 내가 그린 코스 조회 & 삭제 뷰모델 코드 수정
  • 서버 응답값 추가 : isNowUser
  • 탈퇴한 유저 id는 -1로 서버에서 보내줌 (현재 테스트 서버에만 반영되어 있음. 배포 서버에도 반영될 예정)
  • CommonToolbarLayout 구현
  • 자기 자신
    • 코스 제목 수정
    • 코스 삭제
    • 코스 공유 (파베 다이나믹 링크)
  • 타인
    • 오른쪽 상단 툴바 아예 안 보이도록

✨ PR 포인트

다른 사람이 공유한 코스 링크를 조회할 때 현재 배포 서버에서는 응답값 처리 관련 오류가 발생합니다!
따라서 배포 서버에 반영되기 전까지는 "테스트 서버"에서 확인 부탁드립니다!

CommonToolbarLayout에서 Text 메뉴 추가할 때, 기존 코드로는 resourceId만 인자로 넣을 수 있었는데
현재 화면에서는 서버의 응답값, 사용자 입력에 따라 툴바 제목이 바뀌어야 하므로
Text 데이터 클래스의 속성에 String 타입도 추가했습니다!

data class Text (
    @StringRes override val resourceId: Int = CommonToolbarLayout.MENU_ITEM_RESOURCE_NONE,
    val titleText: String? = null, // 이 부분 입니다! 
    override val padding: Int = 0,
    val textSize: Int = CommonToolbarLayout.MENU_ITEM_TEXT_SIZE,
    @FontRes val fontRes: Int = CommonToolbarLayout.TOOLBAR_TITLE_FONT_RES
): ToolbarMenu(resourceId, padding) {

    override fun createMenu(
        context: Context
    ): View {
        return if (titleText != null) {
            createBaseTextView(context, titleText, padding, textSize.toFloat(), fontRes)
        } else {
            val titleText = context.getString(resourceId)
            createBaseTextView(context, titleText, padding, textSize.toFloat(), fontRes)
        }
    }
}

📸 스크린샷/동영상

스크린샷 2024-03-22 오후 5 25 24

leeeha added 30 commits March 12, 2024 15:39
- 노드 서버, 개발 서버는 DB 운영이 중단되어서 로그인부터 불가능
- string resource id 뿐만 아니라 String 타입 인자도 받을 수 있도록
- 서버로부터 받은 문자열을 별도 리소스 없이 String으로 바로 지정하기 위해
- ui state 사용
- 도메인 레이어 dto 사용
- 상세페이지 들어갔다 나올 때마다 서버 통신을 진행하는 게 비효율적이므로
@leeeha leeeha added 하은 🐰 하은 담당 FEAT ✨ 새로운 기능 구현 labels Mar 22, 2024
@leeeha leeeha requested review from dongx0915, sxunea and unam98 March 22, 2024 08:25
@leeeha leeeha self-assigned this Mar 22, 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.

수고하셨습니다~! 하은이 최고얌
카톡으로 영상 보냈는데 아래와 같은 버그가 있습니다.

  1. 로그인한 상태에서 내가 카톡으로 공유한 링크 터치하고 들어오면 내가 그린 코스 상세페이지가 아닌 보관함으로 이동
  2. 링크를 통해 내가 그린 코스 상세페이지로 들어와서 "시작하기" 누르면 지도에 코스 마커가 싹 날아가서 아무것도 안 보이는 문제

@leeeha leeeha requested review from dongx0915 and unam98 March 29, 2024 02:30
@leeeha leeeha changed the title [feat] 보관함 / 내가 그린 코스 수정, 삭제, 공유 기능 구현 [FEAT] 보관함 / 내가 그린 코스 수정, 삭제, 공유 기능 구현 Mar 29, 2024
…into feature/feat-my-draw-course-share-edit
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.

수고하셨습니다 :)

@leeeha leeeha merged commit 474d4a1 into develop May 2, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FEAT ✨ 새로운 기능 구현 하은 🐰 하은 담당
Projects
Development

Successfully merging this pull request may close these issues.

[FEAT] 보관함 / 내가 그린 코스 공유
3 participants