-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: 콜라보레이터 20명 제한 정책 반영 * Fix: 1차QA 반영 - 페이지 이동시 카테고리 선택 풀림 해결 * Fix: 1차QA 반영 - 이메일로 콜라보레이터 검색이 불가능함을 반영 * Design: 1차QA 반영 - 리스트 생성페이지 헤더를 sticky하게 변경 * Design: 1차QA 반영 - IOS 15이상에서 button text가 blue인 이슈 해결 * Design: 1차QA 반영 - 카테고리 버튼들이 space-between이 아닌 고정간격 가지도록 수정 * Chore: 리스트 수정 경로를 위한 폴더 생성 * Chore: 팔로잉, 팔로워 목록 조회를 위한 폴더구조 만들기 * Feat: 팔로잉,팔로워 조회 페이지 공용 헤더 * Feat: 유저 프로필이미지 컴포넌트를 공용 컴포넌트로 변경 * Feat: 팔로잉, 팔로워 페이지 - 유저목록 컴포넌트 구현 * Feat: 팔로잉, 팔로워 조회 페이지 웹 퍼블리싱 완료 * Feat: 팔로잉,팔로우 페이지 - 헤더 뒤로가기 버튼 클릭시 마이피드로 이동 * Feat: 리스트 수정 페이지 - 아이템 타이틀 수정불가 정책 구현 * Feat: 헤더를 공용 컴포넌트로 분리 * Feat: 리스트 상세 조회 API * Feat: 리스트 수정 페이지 - 리스트 수정 API 보내기 전까지 (리스트 상세조회 API로 default value와 form 채워놓기) 완료 * Style: api 함수 코드 컨벤션 반영 * Fix: 리스트 상세조회 관련 타입 충돌 해결
- Loading branch information
1 parent
62cc789
commit 6fd4773
Showing
37 changed files
with
834 additions
and
120 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import axiosInstance from '@/lib/axios/axiosInstance'; | ||
import { CategoryType } from '@/lib/types/categoriesType'; | ||
|
||
export const getCategories = async () => { | ||
const getCategories = async () => { | ||
const response = await axiosInstance.get<CategoryType[]>('/categories'); | ||
|
||
return response.data; | ||
}; | ||
|
||
export default getCategories; |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import axiosInstance from '@/lib/axios/axiosInstance'; | ||
import { ListCreateType, ListIdType } from '@/lib/types/listType'; | ||
|
||
export const createList = async (data: ListCreateType) => { | ||
const createList = async (data: ListCreateType) => { | ||
const response = await axiosInstance.post<ListIdType>('/lists', data); | ||
|
||
return response.data; | ||
}; | ||
|
||
export default createList; |
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 @@ | ||
// 리스트 조회 api | ||
import axiosInstance from '@/lib/axios/axiosInstance'; | ||
import { ListDetailType } from '@/lib/types/listType'; | ||
|
||
//리스트 상세 페이지 리스트 조회 api | ||
const getListDetail = async (listId?: number | undefined) => { | ||
const response = await axiosInstance.get<ListDetailType>(`/lists/${listId}`); | ||
return response.data; | ||
}; | ||
|
||
export default getListDetail; |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import axiosInstance from '@/lib/axios/axiosInstance'; | ||
import { UserProfilesType } from '@/lib/types/userProfileType'; | ||
|
||
export const getUsers = async () => { | ||
const getUsers = async () => { | ||
const response = await axiosInstance.get<UserProfilesType>('/users'); | ||
|
||
return response.data; | ||
}; | ||
|
||
export default getUsers; |
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
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
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
Oops, something went wrong.