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: 1.0.6베타 QA 반영 #168

Merged
merged 14 commits into from
Dec 12, 2024
Merged

feat: 1.0.6베타 QA 반영 #168

merged 14 commits into from
Dec 12, 2024

Conversation

ShapeKim98
Copy link
Contributor

@ShapeKim98 ShapeKim98 commented Dec 10, 2024

#️⃣연관된 이슈

#167

📝작업 내용

  • 미분류 페이지에서 컨텐츠가 비어있을 경우 정렬버튼 숨기기
  • 링크 추가 페이지에서 링크 텍스트 지우기 버튼 눌렀을 때 제목도 함께 지우기
  • 링크 추가 페이지에서 리마인드 선택 영역 삭제
  • 링크 저장 완료 팝업 눌렀을 시에 해당 링크의 포킷(미분류) 페이지로 이동
  • 메모 수정 시 키보드 툴바(취소, 완료 버튼) 추가
  • 링크 추가 페이지에서 텍스트 필드 placeholder 문구 수정
  • 포킷 선택 바텀 시트 디자인 수정
  • 링크 미리보기에서 스켈레톤에 그림자 제거
  • 'PokitLinkCard' 디자인 변경 사항 반영
  • 컨텐츠 상세 페이지에서 포킷명 뱃지 위치 수정
  • 'PokitListButton' 디자인 수정

이번 PR에서 작업한 내용을 간략히 설명해주세요(이미지 첨부 가능)

스크린샷 (선택)

Simulator Screen Recording - iPhone 16 Pro - 2024-12-10 at 15 50 57 Simulator Screen Recording - iPhone 16 Pro - 2024-12-10 at 15 51 13 Simulator Screen Recording - iPhone 16 Pro - 2024-12-10 at 15 52 03

💬리뷰 요구사항(선택)

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

ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요?

case let .카테고리상세_이동(category):
  if category.categoryName == "미분류" {
      state.selectedTab = .pokit
      state.path.removeAll()
      return .send(.pokit(.delegate(.미분류_카테고리_활성화)))
  }
  state.path.append(.카테고리상세(.init(category: category)))
  return .none
  • 링크 저장 팝업 클릭 시 알맞는 포킷 페이지로 이동하기 위해 미분류 포킷과 일반 포킷을 단순히 categoryName을 비교하여 분기하고 있습니다.(단순 이름 비교라 좀 맘에 안들기도 함...)
    사용자 별로 미분류 포킷 id가 다르기 때문에 이렇게 하였고, 저번 pr 처럼 "미분류"라는 문자열을 Constant로 넣으면 좋을지..? 궁금합니다

close #167

@ShapeKim98 ShapeKim98 added Design 🎨 디자인 작업 Fix 기능 수정 labels Dec 10, 2024
@ShapeKim98 ShapeKim98 requested a review from stealmh December 10, 2024 07:05
@ShapeKim98 ShapeKim98 self-assigned this Dec 10, 2024
Comment on lines +226 to +233
case let .카테고리상세_이동(category):
if category.categoryName == "미분류" {
state.selectedTab = .pokit
state.path.removeAll()
return .send(.pokit(.delegate(.미분류_카테고리_활성화)))
}
state.path.append(.카테고리상세(.init(category: category)))
return .none
Copy link
Contributor

@stealmh stealmh Dec 10, 2024

Choose a reason for hiding this comment

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

유저마다 미분류 id값이 다르다면 저희가 할 수 있는 최선은 Constants로 빼내는것이긴 한데 ...
단순 문자열로 비교는 좀 별로긴하네요 서버쪽에서 해결해줘야 할 것 같아요..😂

Copy link
Contributor Author

Choose a reason for hiding this comment

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

일단 어떻게 하면 좋을까여

Copy link
Contributor

Choose a reason for hiding this comment

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

일단 스테이..

listSheet
.presentationDragIndicator(.visible)
.pokitPresentationCornerRadius()
.presentationDetents([.height(564)])
Copy link
Contributor

Choose a reason for hiding this comment

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

요거 se는 사이즈 괜찮았나요??

Copy link
Contributor Author

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.

Simulator Screenshot - iPhone SE (3rd generation) - 2024-12-12 at 15 53 14

괜찮은 것 같습니다!

Comment on lines +376 to +382
guard
let contentId = state.domain.contentId,
let categoryId = state.selectedPokit?.id,
let category = state.domain.categoryListInQuiry.data?.first(where: {
$0.id == categoryId
})
else { return .none }
Copy link
Contributor

Choose a reason for hiding this comment

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

이런 컨벤션 좋긴한데 적용하실거면 통일성을 위해서 모든 guard let에 적용하는게 맞다고 생각함
아니라면 이전 컨벤션 적용하고 나중에 전체수정하는걸루

Copy link
Contributor Author

Choose a reason for hiding this comment

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

그럼 괜찮으시다면 다 적용해도 될까요..?

Copy link
Contributor

Choose a reason for hiding this comment

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

물론~~

@stealmh
Copy link
Contributor

stealmh commented Dec 10, 2024

고생많으셨습니다~~! 2버전을 향해서 으쌰

@stealmh stealmh linked an issue Dec 10, 2024 that may be closed by this pull request
11 tasks
@ShapeKim98 ShapeKim98 merged commit e843c11 into develop Dec 12, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Design 🎨 디자인 작업 Fix 기능 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1.0.6 베타에 따른 PM, 디자이너 QA(241207)
2 participants