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

[오다은] Week19 #492

Merged
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ee5719b
feat: 모달 버튼 클릭 시 함수 실행되도록 prop 추가
O-daeun Jun 26, 2024
dad1a40
chore: React Query, devtools 설치
O-daeun Jun 26, 2024
82c04c6
feat: Query 세팅
O-daeun Jun 26, 2024
eaa7b83
refactor: 모달을 하나의 컴포넌트에서 다루던 부분을 모달 공통 레이아웃을 가지는 컴포넌트로 수정
O-daeun Jun 26, 2024
66e0388
feat: addFolder 함수 추가 및 폴더추가 로직 구현
O-daeun Jun 26, 2024
0eba22c
feat: 폴더 추가 기능 구현
O-daeun Jun 26, 2024
a08abf9
fix: api 호출 리턴값에 맞게 코드 수정
O-daeun Jun 26, 2024
8fb4227
fix: 폴더 이동 시 링크 새로 받아오게 수정
O-daeun Jun 26, 2024
a14edb6
style: eslint-disable-next-line react-hooks/exhaustive-deps 작성
O-daeun Jun 26, 2024
b0f0413
feat: 폴더에 추가하기 모달에 연결
O-daeun Jun 26, 2024
b757528
feat: 링크를 폴더에 추가하는 기능 구현
O-daeun Jun 27, 2024
32238d7
feat: FolderId param Context API로 구현
O-daeun Jun 28, 2024
75e4cb1
feat: 링크 삭제 모달 기능 구현
O-daeun Jun 28, 2024
f36b180
feat: 폴더 삭제 모달 기능 구현
O-daeun Jun 28, 2024
8b22898
feat: 폴더 이름 변경 구현
O-daeun Jun 29, 2024
1fee61b
feat: 폴더 공유 모달 기능 구현
O-daeun Jun 29, 2024
f0a65e4
feat: getFolders에 useQuery 적용
O-daeun Jun 30, 2024
79e7909
feat: folder 페이지 getLinks, getFolder 및 전체 useQuery 구현 완료
O-daeun Jun 30, 2024
ba6af43
refactor: shared페이지일 때 props folders 전달 안 하도록 선택사항으로 수정
O-daeun Jun 30, 2024
aeeaa26
feat: shared 페이지 api 요청 부분 react Query로 구현
O-daeun Jun 30, 2024
8ef9805
feat: 모달에서 api 요청 시 query.invalidateQueries 구현
O-daeun Jun 30, 2024
9d85f08
test: test코드 삭제
O-daeun Jun 30, 2024
1748b66
fix: type 에러 수정
O-daeun Jun 30, 2024
01a57ac
feat: ModalContext 구현
O-daeun Jul 1, 2024
1f6607a
refactor: folder페이지 모달 context로 적용 구현
O-daeun Jul 1, 2024
d14d83e
refactor: 모든 모달에 context API 적용
O-daeun Jul 1, 2024
24f48c8
fix: card kebab 버튼의 삭제/폴더에추가 클릭 시 여러 개 모달 띄워지는 오류 해결
O-daeun Jul 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: api 호출 리턴값에 맞게 코드 수정
  • Loading branch information
O-daeun committed Jun 26, 2024
commit a08abf9b3cdbd6dadccc5b45784e3a64f1a206b4
2 changes: 1 addition & 1 deletion apis/api.ts
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

api 주소 변경으로 인해 기존 GET 함수를 조금씩 수정하였고,
POST, PUT, DELETE 요청을 추가 구현하였습니다.

Copy link
Collaborator

Choose a reason for hiding this comment

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

넵 ! 설명 감사드립니다. 한 번 꼼꼼히 봐볼게염

Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ export async function getUser() {

export async function getFolderUser(id: number) {
const response = await axios.get(`${BASIC_URL}/users/${id}`);
const result = response.data.data[0];
const result = response.data[0];
return result;
}