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] 마이페이지 > 프로필 편집 기능 구현 #266

Merged
merged 13 commits into from
Apr 8, 2023

Conversation

soobin-k
Copy link
Contributor

@soobin-k soobin-k commented Apr 8, 2023

📌 PR 요약

마이페이지 > 프로필 편집 기능을 구현 하였습니다.

🌱 작업한 내용

  • 프로필 편집 화면 UI 작업
  • 프로필 편집 API 연동
  • 이미지 편집 API 연동
  • 이미지 업로드 API 연동

🌱 PR 포인트

프로필 편집 로직 간단 정리

✔️ updateButton 눌렀을 때

  1. 닉네임이 이전과 동일할 때
    : updateMyInfo 함수 호출
  2. 닉네임이 이전과 다를때
    : 닉네임 변경 Alert -> updateMyInfo 함수 호출

✔️ updateMyInfo 함수 내부 로직

  1. 변경된 이미지 있을 때
    1-1) 이전 이미지 존재하는 경우 : 이미지 업데이트 API -> 프로필 편집 API
    1-2) 처음 이미지 올리는 경우: 이미지 업로드 API -> 프로필 편집 API
  2. 변경된 이미지 없는 경우
    : 프로필 편집 API
  private func updateMyInfo(
    nickName: String,
    introduce: String,
    image: UIImage?
  ) {
    if let image = image { // 변경된 이미지 있을 때
      if let prevImageURL = myInfoData.profileImage { // 이전 이미지 존재하는 경우
        updateImage(
          nickName: nickName,
          introduce: introduce,
          deleteURL: prevImageURL,
          image: image
        )
      } else { // 처음 이미지 올리는 경우
        uploadImage(
          nickName: nickName,
          introduce: introduce,
          image: image
        )
      }
    } else { // 변경된 이미지 없을 때
      updateMyInfo(
        request: MyInfoRequest(
          nickname: nickName,
          introduce: introduce,
          profileImage: nil
        )
      )
    }
  }

📸 스크린샷

RPReplay_Final1680967387.mov

📮 관련 이슈

@soobin-k soobin-k requested review from dlrjswns and WhiteHyun and removed request for dlrjswns April 8, 2023 15:25
@soobin-k soobin-k self-assigned this Apr 8, 2023
@soobin-k soobin-k requested a review from dlrjswns April 8, 2023 15:25
@soobin-k soobin-k added 🍎 ConfigureUI 화면 프로토타입 UI 구현 D+1 PR올린 다음날 까지는 리뷰 부탁드립니다 👤 MyPage labels Apr 8, 2023
Copy link
Member

@WhiteHyun WhiteHyun left a comment

Choose a reason for hiding this comment

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

고생하셨습니다☺️ 👍

@soobin-k soobin-k merged commit d0779cc into develop Apr 8, 2023
@soobin-k soobin-k deleted the feat/130-MyPage/ProfileEdit branch April 8, 2023 15:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🍎 ConfigureUI 화면 프로토타입 UI 구현 D+1 PR올린 다음날 까지는 리뷰 부탁드립니다 👤 MyPage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants