-
Notifications
You must be signed in to change notification settings - Fork 117
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
[박기범] Week20 #1087
Merged
kiJu2
merged 24 commits into
codeit-bootcamp-frontend:part3-박기범
from
gibeom0218:part4-박기범-week20
May 15, 2024
The head ref may contain hidden characters: "part4-\uBC15\uAE30\uBC94-week20"
+697
−187
Merged
[박기범] Week20 #1087
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
766a0f8
feat : 리액트 쿼리 설치
gibeom0218 7a48590
feat : 로그인 로그아웃 api 변경 (BaseUrl 이름 추후 변경예정)
gibeom0218 e9664e9
feat : 이메일 중복 api 수정 및 shared, folder 페이지 접근 권한 설정
gibeom0218 02cd63a
feat : 네비게이션바 api 수정 및 코드 수정
gibeom0218 d417acc
feat : 폴더 페이지 폴더 버튼 api 수정
gibeom0218 8f8c1d6
feat : 전체 폴더링크 가져오기 api 수정 및 코드 수정
gibeom0218 2b21a2f
feat : 개별 폴더의 링크 데이터에 대한 api 및 코드 수정
gibeom0218 6f8eea8
feat : shard 페이지에서 폴더 id별로 렌더링 api수정 및 코드 수정
gibeom0218 aa31f01
refactor : '저장된 링크가 없습니다.' 뜨도록 수정
gibeom0218 afc170e
refactor : 주석 수정
gibeom0218 f03bf11
refactor : 불필요한 코드 제거 및 주석 수정
gibeom0218 812e73c
feat : 공유 모달창에서 shared페이지로 이동 (쿼리 키로 가져오기 위한 임시 기능)
gibeom0218 6fcd2b8
feat : 실시간 폴더이름과 소유자 변경
gibeom0218 e582d68
feat : 페이지 이동 코드 수정
gibeom0218 ed738b2
feat : [추가 구현사항] 링크 추가 기능을 위한 쿼리 저장 및 api 구현 및 코드 수정
gibeom0218 35a8485
feat : [추가 구현사항] 실시간 링크 데이터 추가 기능
gibeom0218 21c0711
feat : 불필요한 코드 제거
gibeom0218 2d52220
feat : 폴더 이름변경 구현
gibeom0218 85721b6
feat : 폴더 이름이 폴더 페이지 내부에서도 변경되도록
gibeom0218 f0f3991
feat : 폴더 추가 기능 구현
gibeom0218 0fbacff
feat : 폴더 삭제 기능 구현
gibeom0218 24445a3
feat : 링크 데이터 삭제하기 기능 구현
gibeom0218 747091f
feat : 기능 성공시 모달창 닫기
gibeom0218 abe6eee
feat : 전체 링크 데이터가 바뀌지 않는 문제 해결
gibeom0218 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
feat : [추가 구현사항] 링크 추가 기능을 위한 쿼리 저장 및 api 구현 및 코드 수정
commit ed738b2248a4f359b5a932afeef201aaffb76d82
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
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,9 +1,37 @@ | ||||||
import React from "react"; | ||||||
import React, { useState } from "react"; | ||||||
import Image from "next/image"; | ||||||
import { addLink } from "@/pages/api/api"; | ||||||
import styles from "@/styles/LinkAdd.module.css"; | ||||||
import linkIcon from "@/public/images/link.svg"; | ||||||
import { useMutation, useQuery } from "@tanstack/react-query"; | ||||||
|
||||||
interface LinkData { | ||||||
url: string; | ||||||
folderId: {} | undefined; | ||||||
} | ||||||
|
||||||
export default function LinkAdd() { | ||||||
const [url, setUrl] = useState(""); // input 값에 대한 상태 | ||||||
const folderId = useQuery({ queryKey: ["folderId"] }); | ||||||
|
||||||
const addLinkMutation = useMutation<void, Error, LinkData>({ | ||||||
mutationFn: (linkData) => addLink(linkData.url, Number(linkData.folderId)), | ||||||
}); | ||||||
|
||||||
// input 값이 변경될 때마다 상태 업데이트 | ||||||
const handleInputChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||||||
setUrl(event.target.value); | ||||||
}; | ||||||
|
||||||
// 추가하기 버튼 클릭 시 실행되는 함수 | ||||||
const handleAddClick = (e: any) => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이벤트의
|
const handleAddClick = (e: any) => { | |
const handleAddClick = (e: React.MouseEvent<HTMLButtonElement>) => { |
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
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.
의도적으로 캐싱을 하신 것으로 보입니다.
필요한 부분에서
folderId
를 사용하면 되지 않을까요?useQuery
를 사용하지 않아도 되보입니다 😊