-
Notifications
You must be signed in to change notification settings - Fork 51
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 #552
The head ref may contain hidden characters: "part3-\uC815\uC9C4\uD638-week19"
[정진호] week19 #552
Conversation
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.
+3,211 은 멘토님한테 가혹한듯
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.
복붙의 향기가 느껴진다.. 여기 taskify인가요?
folderData.data.forEach(async (data) => { | ||
const folder_Id = data.id; | ||
|
||
await queryClient.prefetchQuery({ | ||
queryKey: ["Links", folder_Id], | ||
queryFn: () => | ||
fetcher<Link[]>({ | ||
method: "get", | ||
url: `/folders/${folder_Id}/links`, | ||
headers: { Authorization: accessToken }, | ||
}), | ||
}); | ||
}); | ||
} |
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.
ㅋㅋㅋㅋ SSR을 국물 한 모금도 안 남기고 사용하려는 거 같아서 웃겨요
forEach로 폴더별 링크까지 싸그리싹싹 가져온다..
link.url?.toLowerCase().includes(searchValue.toLowerCase()) || | ||
link.title?.toLowerCase().includes(searchValue.toLowerCase()) || | ||
link.description?.toLowerCase().includes(searchValue.toLowerCase()) |
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.
이거 배열로 처리하면 코드 중복 줄어요~
[link.url, link.title, link,description]
.map(value => value.toLowerCase())
.some(value => value.includes(searchValue.toLowerCase()))
참고로 배열 메서드도 Promise .then 체이닝처럼 엔터키 치고 줄마다 메서드 써도 됩니당
import styles from "./ServiceExplainer.module.css"; | ||
import { ReactNode } from "react"; | ||
|
||
class ExplainerSection { |
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.
갑자기 여기서 클래스를 쓴다고여
function ServiceExplainer() { | ||
return ( | ||
<main> | ||
{ExplainerList.map((Item) => { |
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.
taskify 할때도 useInputControler
에서 지독했었는데,
이 남자의 객체 사랑 미쳣다
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.
이 파일도 taskify의 향기가 난다..
늦어서 죄송합니다 !! 속결로 꼼꼼하게 쏙쏙 파내서 코드리뷰 진행하겠습니다 ! |
기본적으로 진호님께서 특정 pages 내부에서만 사용되는 건 로컬 |
export const request = (config: AxiosRequestConfig) => { | ||
const client = instance; | ||
return client(config); | ||
}; |
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.
현재 코드에서 client
를 선언하는 것은 의미가 없어보입니다 !
export const request = (config: AxiosRequestConfig) => { | |
const client = instance; | |
return client(config); | |
}; | |
export const request = (config: AxiosRequestConfig) => { | |
return instance(config); | |
}; |
}); | ||
|
||
folderData.data.forEach(async (data) => { | ||
const folder_Id = data.id; |
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.
일관된 코드 컨벤션을 사용하시는게 좋을 것 같아요 !
const folder_Id = data.id; | |
const folderId = data.id; |
|
||
const instance = axios.create({ | ||
baseURL: "https://bootcamp-api.codeit.kr/api/linkbrary/v1", | ||
timeout: 10000, |
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.
ㅗㅜㅑ 타임아웃까지 설정하시는 디테일 ~ 좋습니다 👍
export const queryClientProvider = async (context: GetServerSidePropsContext) => { | ||
const queryClient = new QueryClient(); | ||
|
||
const accessToken = getAccessToken(context) as string; |
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.
타입 어설션을 사용하지 않고 반환 타입을 명시하는게 어떨까요?
const accessToken = getAccessToken(context) as string; | |
const accessToken = getAccessToken(context); |
// getAccessToken.ts
import { GetServerSidePropsContext } from "next";
export const getAccessToken = (context: GetServerSidePropsContext): string => {
const accessToken = context.req.cookies["accessToken"];
return accessToken ?? "";
};
진호님이라면 아실 수 있지만 타입스크립트에서는 흔히 도는 말이 있습니다!
any
타입을 사용하지 말 것.- 타입 어설션을 사용하지 말 것.
물론 생산성을 위해서 사용될 수도 있지만 사용 안하는걸 인지하고 있는 것도 좋을 것 같아서 제안드립니다 =)
만약 앞으로 타입 어설션을 사용하지 않으려 할 때 문제가 생긴다면 타입 가드가 유용한 대체가 될 수 있습니다.
const errorText = { | ||
email: { | ||
null: "이메일을 입력해주세요", | ||
wrong: "올바른 이메일 주소가 아닙니다", | ||
dup: "이미 사용 중인 이메일입니다", | ||
}, | ||
password: { | ||
null: "비밀번호를 입력해주세요", | ||
wrong: "비밀번호는 영문, 숫자 조합 8자 이상 입력해 주세요", | ||
}, | ||
passwordCheck: { | ||
wrong: "비밀번호가 일치하지 않아요", | ||
}, | ||
}; |
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.
밸리데이션 문구를 따로 빼놓으셨군요 👍 가독성 측면에서 매우 좋습니다.
다음에는 유효성 검사 툴인 joi를 사용해보는 것도 추천드려요 !
setEyesValue((current) => !current); | ||
}; | ||
|
||
const typeChanger = (type: string | undefined) => { |
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.
함수 명은 동사로 짓는게 좋습니다 !
changeType
으로 바꾸는 것이 어떨까요?
name?: string; | ||
initialvalue?: string; | ||
eyeButton?: boolean; | ||
placeholder?: string | undefined; |
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.
타입에 ?
가 있으면 undefined
가 유니언 타입(|
)과 같은 문법입니다.
placeholder?: string | undefined; | |
placeholder?: string; |
|
||
function useToggle() { | ||
const [state, setState] = useState(false); | ||
|
||
const handleToggle = (e: MouseEvent) => { | ||
e.preventDefault(); | ||
setState((state) => !state); | ||
}; | ||
|
||
return { state, handleToggle }; | ||
} |
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.
심플하고 깔끔한 유틸 훅 😊
import styles from "./HeroSec.module.css"; | ||
import TextGradiant from "@/components/TextGradiant/TextGradiant"; | ||
|
||
function HeroSec() { |
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.
약어 보다는 풀네임을 사용하시는걸 권장드립니다 !
자칫 닌자 코드이 될 수 있습니다 ! 👺👺
reactStrictMode: true, | ||
|
||
module.exports = { | ||
reactStrictMode: false, |
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.
혹시 스트릭트 모드 해제한 이유가 있으실까요?
요구사항
[프로젝트 전반] https://bootcamp-api.codeit.kr/docs/linkbrary/v1 문서를 참고해 https://bootcamp-api.codeit.kr/api/linkbrary/v1 api를 활용했나요?
[프로젝트 전반] api 요청에 TanStack React Query를 활용했나요?
[로그인, 회원가입 페이지] 로그인은 POST ‘/auth/sign-in’ 을 활용했나요?
[로그인, 회원가입 페이지] 회원가입은 POST ‘/auth/sign-up’ 을 활용했나요?
[로그인, 회원가입 페이지] 이메일 중복확인은 POST ‘/users/check-email’ 을 활용했나요?
[링크 공유 페이지] 폴더의 정보는 GET ‘/folders/{folderId}’, 폴더 소유자의 정보는 GET ‘/users/{userId}’를 활용했나요?
[링크 공유 페이지] 폴더의 링크 데이터는 GET ‘/folders/{folderId}/links’ 를 활용했나요?
[링크 공유 페이지] 유효한 access token이 있는 경우 GET ‘/users’ 로 현재 로그인한 유저 정보를 받아 상단 네비게이션 유저 프로필을 보여 주나요?
[링크 공유 페이지] 유효한 access token이 없는 경우 “로그인” 버튼을 보여 주나요?
[폴더 페이지] 폴더 페이지에서 현재 유저의 폴더 목록 데이터는 GET ‘/folders’ 를 활용했나요?
[폴더 페이지] 폴더 페이지에서 전체 링크 데이터를 받아올 때 GET ‘/links’, 특정 폴더의 링크를 받아올 때 GET ‘/folders/{folderId}/links’를 활용했나요?
[모달] 폴더 이름 변경은 ‘PUT /folders/{folderId}’를 활용했나요?
[모달] 폴더 생성은 ‘POST /folders’를 활용했나요?
[모달] 폴더 삭제는 ‘DELETE /folders/{folderId}’를 활용했나요?
[모달] 링크 삭제는 ‘DELETE /links/{linkId}’를 활용했나요?
[모달] 링크 생성은 ‘POST /links’를 활용했나요?