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/#72] 예매 조회 페이지 추가 #87

Merged
merged 17 commits into from
Jul 12, 2024
Merged

Conversation

sinji2102
Copy link
Contributor

@sinji2102 sinji2102 commented Jul 10, 2024

📌 관련 이슈번호

🎟️ PR 유형

어떤 변경 사항이 있나요?

  • 새 기능 추가
  • 버그 수정
  • CSS 등 사용자 UI 디자인 변경
  • 리팩토링

✅ Key Changes

  • 빈 배열일 시 빈 화면 분기
  • 예매 공연 card 컴포넌트 생성
  • 계좌번호 버튼 선택 시 계좌번호 복사 팝업 생성 -> 도영 오빠 modal 수정해 주면 복사까지 넣겠습니다!
  • 취소 버튼 선택 시 대표자 연락처 바텀 시트 생성

📢 To Reviewers

Lookup.tsx에 import된 dummyData가 있고, 빈 배열의 dummyData가 있는데 이는 분기 처리를 테스트하기 위함입니다!
-> 예매한 공연 없는 경우 경우 빈 배열 주석 풀고 import 주석
-> 예매한 공연 있는 경우 import 주석 풀고 빈 배열 주석
-> 이 부분은 API 연결하면 삭제하도록 하겠습니다!
-> 현재 dummyData가 lookup 폴더 내에 있는데 API 연결하면 지울 예정이라 임시로 두었습니다.

📸 스크린샷

예매한 공연 있을 때 취소 버튼 눌렀을 때 계좌 확인 눌렀을 때 때 예매한 공연 없을 때
image image image image

🔗 참고 자료

@sinji2102 sinji2102 linked an issue Jul 10, 2024 that may be closed by this pull request
5 tasks
@github-actions github-actions bot requested review from imddoy, ocahs9 and pepperdad July 10, 2024 17:06
@github-actions github-actions bot added the ✨ FEAT 기능 구현 label Jul 10, 2024
Copy link

PR 작성하느라 고생 많았어요!! 라벨 잘 지정되었는지 확인 한 번 해 주기 🫶

Copy link

@sinji2102 sinji2102 changed the title [Feat/#72] 예매 조회 화면 추가 [Feat/#72] 예매 조회 페이지 추가 Jul 11, 2024
Copy link
Member

@pepperdad pepperdad left a comment

Choose a reason for hiding this comment

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

고생했또
코멘트만 확인하고 머지해줘 ~

src/pages/lookup/Lookup.tsx Outdated Show resolved Hide resolved
src/pages/lookup/Lookup.tsx Outdated Show resolved Hide resolved

import { LookupProps } from "../types/lookupType";

const LookupWrapper = ({ handleBtn, ...item }: LookupProps) => {
Copy link
Member

Choose a reason for hiding this comment

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

p4) 저번 코드에서는 ...rest였는데, 이번엔 왜 item 인가요? rest로 통일 되었으면 좋겠습니다!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

일반적으로 넘겨주는 props들은 ...rest로 넘기고 API를 받아오는 부분은 ...item으로 넘기고 있습니다!

Copy link
Contributor

Choose a reason for hiding this comment

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

이유가 다 있었네요 굿굿~

src/pages/lookup/Lookup.tsx Outdated Show resolved Hide resolved
Copy link
Contributor

@ocahs9 ocahs9 left a comment

Choose a reason for hiding this comment

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

LGTM~ 코드 상 문제점 없어보여서 Approve 하도록 하겠습니다.
고생하셨어요 !


import { LookupProps } from "../types/lookupType";

const LookupWrapper = ({ handleBtn, ...item }: LookupProps) => {
Copy link
Contributor

Choose a reason for hiding this comment

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

이유가 다 있었네요 굿굿~

{lookUpList.length ? (
<>
{lookUpList.map((item) => (
<React.Fragment key={item.bookingId}>
Copy link
Contributor

Choose a reason for hiding this comment

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

<></> 가 아닌 fragment를 직접 사용한 이유가 있나요?
<> 안에는 key prop을 줄 수 없어서인가요?

Copy link
Contributor Author

@sinji2102 sinji2102 Jul 12, 2024

Choose a reason for hiding this comment

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

맞습니다!! map을 돌려서 key prop를 주고 싶었는데 빈 태그에는 줄 수 없어서 이렇게 작성했어요!

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

@imddoy imddoy left a comment

Choose a reason for hiding this comment

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

체고신지

Copy link

@sinji2102 sinji2102 linked an issue Jul 12, 2024 that may be closed by this pull request
1 task
@sinji2102 sinji2102 merged commit 6986d50 into develop Jul 12, 2024
1 of 2 checks passed
@sinji2102 sinji2102 deleted the feat/#72/Lookup branch December 16, 2024 10:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ FEAT 기능 구현
Projects
Status: 🎉Done
Development

Successfully merging this pull request may close these issues.

[ Feat ] 예매 조회 페이지 추가
4 participants