-
Notifications
You must be signed in to change notification settings - Fork 3
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/#453] 예매자 관리 페이지 기능 구현 #454
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3e6b279
chore: api schema 업데이트
sinji2102 815a405
feat: useDebounce 구현
sinji2102 e292be6
feat: 조회 API 연결
sinji2102 4c0bc54
Merge branch 'feat/#443/TicketHolderListPublishing' of https://github…
sinji2102 a471ec5
feat: 필터링 기능 칩-바텀시트 연결
sinji2102 3ef8329
feat: 예매자 조회 필터링 api 연결
sinji2102 2d6eb93
feat: 예매자 관리 상태에 따라 필터링
sinji2102 a9e1912
feat: 체크박스 이상하게 되던 오류 수정
sinji2102 3ecd641
feat: 입금 처리 api 연결
sinji2102 a9570ec
chore: develop pull 과정에서 생긴 충돌 해결
sinji2102 fd4db62
feat: 환불 처리 api 연결
sinji2102 cf84c44
feat: 취소 처리 api 연결
sinji2102 0ce87b0
feat: 환불 계좌 복사 기능 추가
sinji2102 a0be558
fix: react-query 관련 오류 수정
sinji2102 0ea1d50
feat: 예매자 검색 api 연결
sinji2102 7ac3d72
fix: 검색어가 1자일 때 생기는 오류 수정
sinji2102 4ea1411
feat: 예매자 없을 떄 화면 구현
sinji2102 776b6fe
fix: 타입 에러 수정
sinji2102 0c53546
design: 필터 적용 시 border white 적용
sinji2102 8307204
fix: api params 이름 변경
sinji2102 77a69ff
feat: csv 버튼 재연결
sinji2102 e678ce9
chore: develop pull 과정에서 생긴 충돌 해결
sinji2102 4525501
fix: #454 PR 코드리뷰 반영
sinji2102 eed8389
feat: 선택된 내역 없을 때 비활성화 구현
sinji2102 9d72603
design: 검색 바 내 누락된 아이콘 추가
sinji2102 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIconDownload = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" {...props}> | ||
<path | ||
fill="#FB247F" | ||
d="M9.999 13.333 5.832 9.166l1.167-1.208 2.166 2.167V3.333h1.667v6.792l2.167-2.167 1.166 1.208zm-5 3.333q-.687 0-1.177-.489A1.6 1.6 0 0 1 3.332 15v-2.5h1.667V15h10v-2.5h1.666V15q0 .687-.489 1.177a1.6 1.6 0 0 1-1.177.49z" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIconDownload; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
type PaymentType = | ||
| "CHECKING_PAYMENT" | ||
| "BOOKING_CONFIRMED" | ||
| "BOOKING_CANCELLED" | ||
| "REFUND_REQUESTED"; | ||
|
||
export const convertingBookingStatus = (_bookingStatus: PaymentType): string => { | ||
switch (_bookingStatus) { | ||
case "CHECKING_PAYMENT": | ||
return "미입금"; | ||
case "BOOKING_CONFIRMED": | ||
return "입금 완료"; | ||
case "BOOKING_CANCELLED": | ||
return "취소 완료"; | ||
case "REFUND_REQUESTED": | ||
return "환불 요청"; | ||
default: | ||
throw new Error("알 수 없는 상태입니다."); | ||
} | ||
}; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3) 아 제가 사용할때는 "취소 요청"인데 여기서는 "환불 요청"으로 사용되고 있네요!! 이거 하나로 통일하는게 편하겠죠?? 기디 선생님들한테 통일해달라고 부탁드리는거 어떻게 생각하세요?