-
Notifications
You must be signed in to change notification settings - Fork 0
[FEAT] 파트너 매칭 페이지 구현 및 파트너 저장 API 연동 #13
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
08798cd
[#11]Feat: 파트너 매칭 페이지 히어로 섹션 구현
BaeSeong-min 4ad1add
[#11]Feat: AI 검색 인풋 컴포넌트 구현 및 /partners/search 연동
BaeSeong-min 950428b
[#11]Feat: PartnerTableRow 컴포넌트 구현
BaeSeong-min 1054f07
[#11]Feat: 파트너 매칭 페이지 테이블 및 검색 상태 UI 구현
BaeSeong-min ce6f184
[#11]Refactor: 파트너 테이블을 PartnerTable 컴포넌트로 분리
BaeSeong-min 1e00f4a
[#11]Fix: PartnerSearchInput 입력창 높이 조정
BaeSeong-min 5864994
[#11]Fix: 파트너 검색 결과 필드 매핑 수정 및 업체명 하이퍼링크 추가
BaeSeong-min 03b31d9
[#11]Feat: 다크 푸터 컴포넌트 구현 및 조건부 렌더링 적용
BaeSeong-min 095941e
[#11]Feat: 파트너 테이블 전체/개별 체크박스 선택 기능 추가
BaeSeong-min 82a767f
[#11]Feat: 검색 결과 rows 스태거 등장 애니메이션 추가
BaeSeong-min cc708a0
[#11]Fix: 헤더 네비게이션 to 속성값 변경
BaeSeong-min 5330bb0
[#11]Feat: 체크박스 클릭 마이크로 인터랙션 애니메이션 추가
BaeSeong-min 4525158
[#11]Refactor: usePartners 훅을 hooks/matches/ 폴더로 이동
BaeSeong-min accc0da
[#11]Feat: 파트너 추가 API 연동 및 파트너 저장 버튼 기능 구현
BaeSeong-min c8a65b9
[#11]Fix: partnerType을 tags 기반으로 동적 결정 및 웹 결과 저장 방지
BaeSeong-min 0a04ef2
[#11]Feat: 파트너 저장 후 검색 결과에서 해당 항목 숨김 처리
BaeSeong-min f8c132e
[#11]Style: 토스트 텍스트 수정
BaeSeong-min 2930cef
[#11]Fix: 체크박스 키보드/스크린리더 접근성 개선
BaeSeong-min 0fdf6d0
[#11]Fix: 공백-only 검색어 요청 방지 (normalizedQ 적용)
BaeSeong-min 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
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,12 @@ | ||
| import { http } from "@/apis/http"; | ||
| import { ENDPOINTS } from "@/apis/endpoints"; | ||
|
|
||
| export const myBusinessApi = { | ||
| getProfile: () => http.get(ENDPOINTS.myBusiness.profile), | ||
| getPartners: (params?: { page?: number; limit?: number }) => | ||
| http.get(ENDPOINTS.myBusiness.partners, { params }), | ||
| savePartner: (data: { partnerId: string; partnerType: "seller" | "buyer" }) => | ||
| http.post(ENDPOINTS.myBusiness.partners, data), | ||
| removePartner: (partnerId: string) => | ||
| http.delete(ENDPOINTS.myBusiness.partnerById(partnerId)), | ||
| }; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
partnerById의id는 URL 인코딩이 필요합니다.현재는
id를 그대로 붙여 경로를 만들기 때문에, 특수문자 포함 시 잘못된 엔드포인트로 요청될 수 있습니다.제안 수정안
📝 Committable suggestion
🤖 Prompt for AI Agents