-
Notifications
You must be signed in to change notification settings - Fork 4
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
๐ญ ๋ฉํ ๋ ๋ฆฌ๋ทฐ #83
base: review-branch
Are you sure you want to change the base?
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.
๐ ์๋ ์
- ๊ท๋ชจ ๋ง์ถฐ์ ์ ์ ํ ๋๋ ํด๋ ๊ตฌ์กฐ
- axios ์ธํฐ์ ํฐ๋ฅผ ํตํ ๋ชจ๋ํ
- ๊ณตํต ์ปดํฌ๋ํธ ๋ถ๋ฆฌ, ์ ํธ ํจ์ ์ฌ์ฌ์ฉ
๐ ๏ธ ๊ฐ์ ํ ์
- ์๋ฌ์ฒ๋ฆฌ ๊ฐํ, ๊ณตํต ์๋ฌ์ ๊ฐ๋ณ ์๋ฌ๋ฅผ ์ฌ์ฉํ ์ ์๋ ๊ตฌ์กฐ๋ก ๋ณ๊ฒฝ(์ฝ๋ ์ฝ๋ฉํธ 1-n ์ฐธ๊ณ )
- ๋๋ถ๋ถ์ ์๋ฌ๋ ๊ณตํต ์ฒ๋ฆฌ๋ก ํด๊ฒฐ
- ํน๋ณํ ์ฒ๋ฆฌ๊ฐ ํ์ํ ๊ฒฝ์ฐ๋ง ๊ฐ๋ณ API์์ ์ฒ๋ฆฌ
- ์ฝ๋ ์ค๋ณต์ ์ต์ํํ๋ฉด์๋ ์ ์ฐํ ์๋ฌ ์ฒ๋ฆฌ ๊ฐ๋ฅ
- ์ปค์คํ ํ ์ ํตํ ๋ฐ์ดํฐ ์ฒ๋ฆฌ ๋ก์ง ๋ถ๋ฆฌ(์ฝ๋ ์ฝ๋ฉํธ 2-n ์ฐธ๊ณ )
๋ฐ์ดํฐ ํ๋ฆ์ด ๋ช ํํด์ง
- API โ ์ปค์คํ ํ โ ์ปดํฌ๋ํธ
- undefined ์ฒ๋ฆฌ๊ฐ ์ปค์คํ ํ ์์ ์ด๋ฃจ์ด์ง
์ปดํฌ๋ํธ ์ฑ ์์ด ๋ถ๋ฆฌ๋จ
- ๋ฐ์ดํฐ fetching์ ์ปค์คํ ํ ์์
- UI ๋ ๋๋ง์ ์ปดํฌ๋ํธ์์
์๋ฌ ์ฒ๋ฆฌ๊ฐ ์ฒด๊ณ์
- ๋ก๋ฉ/์๋ฌ/๋น ์ํ ์ฒ๋ฆฌ๊ฐ ๋ช ํํจ
- ์ฌ์ฉ์์๊ฒ ์ ์ ํ ํผ๋๋ฐฑ ์ ๊ณต
ํ์ ์์ ์ฑ ํ๋ณด
- ์ปดํฌ๋ํธ์์๋ ์ด๋ฏธ ํ์ ์ด ๋ณด์ฅ๋ ๋ฐ์ดํฐ ์ฌ์ฉ
- undefined ์ฒดํฌ ๋ถํ์
์ด๋ฐ ๋ฐฉ์์ผ๋ก ๊ตฌํํ๋ฉด ์ฝ๋๊ฐ ๋ ์์ ์ ์ด๊ณ ์ ์ง๋ณด์ํ๊ธฐ ์ฌ์์ง ๊ฒ ๊ฐ์ต๋๋ค.
์ถ๊ฐ์ ์ธ ์ถ์ฒ
-
.prettierrc ์ค์ ํ์ผ๊ณผ ์๋ํฐ autosave ๋ฅผ ํตํ ์ฝ๋ ์ปจ๋ฒค์ ์๋ ์ ์ฉ
์ฐธ๊ณ
https://velog.io/@kcs0702/VSC-%EC%9E%90%EB%8F%99%EC%A0%95%EB%A0%AC-auto-save-prettier-%EC%84%A4%EC%A0%95%EB%B2%95 -
API ํ์ ์ถ๊ฐ
export interface ApiResponse<T> {
data: T;
status: number;
message: string;
}
export interface ApiError {
code: string;
message: string;
status: number;
}
// API ์ํ ์ฝ๋ ์์ํ
export const API_STATUS = {
SUCCESS: 200,
UNAUTHORIZED: 401,
FORBIDDEN: 403,
NOT_FOUND: 404,
SERVER_ERROR: 500,
} as const;
// ์๋ฌ์ฒ๋ฆฌ ์์ํค์๋ ์ด์ฉ
switch (status) {
case API_STATUS.UNAUTHORIZED:
return '๋ก๊ทธ์ธ์ด ํ์ํฉ๋๋ค.';
case API_STATUS.FORBIDDEN:
return '์ ๊ทผ ๊ถํ์ด ์์ต๋๋ค.';
case API_STATUS.NOT_FOUND:
return '์์ฒญํ์ ์ ๋ณด๋ฅผ ์ฐพ์ ์ ์์ต๋๋ค.';
case API_STATUS.SERVER_ERROR:
return '์๋ฒ ์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค.';
default:
return '์ ์ ์๋ ์ค๋ฅ๊ฐ ๋ฐ์ํ์ต๋๋ค.';
ํด๋๊ตฌ์กฐ ์ฐธ๊ณ ์๋ฃ
- FSD ๋ผ๋ ๊ตฌ์กฐ๊ฐ ์๋ค๋ ๊ฒ๋ ์ฐธ๊ณ , ํ์ฌ ์ ๋ช
ํ ๋๋ ํ ๋ฆฌ ๋ถ๋ฅ ๊ธฐ์ค์ด๋ผ ์ฐธ๊ณ ์ ๋ ํด๋ณด๋ฉด ์ข์. ์์์๋ ๋์ค์ง๋ง ๋๋ ํ ๋ฆฌ ๊ตฌ์กฐ ๋ถ๋ฅ์ ์ ๋ต์ ์์. ๋ถํธํ ๋ ๊ฐ์ ์ ์ํด ๋๋๋๊ฒ ์ ๋ต.
https://www.youtube.com/watch?v=64Fx5Y1gEOA
return response.data; | ||
}; | ||
|
||
// ๋ฆฌ๋ทฐ ์์ฑ |
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.
- 1-2 ๊ฐ๋ณ ์๋ฌ ์ฒ๋ฆฌ์ ๊ฒฝ์ฐ ์๋์ ๊ฐ์ด ์ฒ๋ฆฌํ๋ฉด ๋ฉ๋๋ค.
export const postReview = async (data: ReviewData): Promise<Review> => {
try {
const response = await authInstance.post('/api/v1/review', data);
return response.data;
} catch (error) {
// ๋ฆฌ๋ทฐ ์์ฑ ์ ํน๋ณํ ์ฒ๋ฆฌํด์ผ ํ๋ ์๋ฌ๋ง ์ฌ๊ธฐ์ ์ฒ๋ฆฌ
if (error.response?.status === 400) {
throw new Error('๋ฆฌ๋ทฐ ๋ด์ฉ์ ํ์ธํด์ฃผ์ธ์.');
}
// ๋๋จธ์ง๋ ๊ณตํต ์๋ฌ ์ฒ๋ฆฌ๋ก ์ ํ
throw error;
}
};
createdAt: '2024-11-12T14:00:00', | ||
}, | ||
]; | ||
|
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.
- data undefined ์๋ฌ ์ฒ๋ฆฌ
2-1 ์ปค์คํ hooks ๋์
- src/hooks/useWorkplaceReview.ts ์์ฑ
import { useQuery } from '@tanstack/react-query';
import { ReviewData } from '../types';
export const useWorkplaceReview = (workplaceId: string) => {
const { data, isLoading, error } = useQuery({
queryKey: ['workplaceReview', workplaceId],
queryFn: () => getWorkplaceReview(workplaceId),
retry: 1,
});
return {
reviews: data ?? [], // undefined์ผ ๊ฒฝ์ฐ ๋น ๋ฐฐ์ด ๋ฐํ
isLoading,
error: error as Error | null,
};
};
- 2-2 hooks ๋์ ํ WorkPlaceReview ์์
import { useWorkplaceReview } from '@/hooks/useWorkplaceReview';
const WorkPlaceReview = ({ workplaceId }: { workplaceId: string }) => {
const { reviews, isLoading, error } = useWorkplaceReview(workplaceId);
if (isLoading) {
return (
<div className='w-custom flex justify-center'>
<p>๋ฆฌ๋ทฐ๋ฅผ ๋ถ๋ฌ์ค๋ ์ค...</p>
</div>
);
}
if (error) {
return (
<div className='w-custom flex justify-center'>
<p className='text-subfont'>๋ฆฌ๋ทฐ๋ฅผ ๋ถ๋ฌ์ฌ ์ ์์ต๋๋ค.</p>
</div>
);
}
if (reviews.length === 0) {
return (
<div className='w-custom flex justify-center'>
<p className='text-subfont'>์์ฑ๋ ๋ฆฌ๋ทฐ๊ฐ ์์ต๋๋ค.</p>
</div>
);
}
return (
<div className='w-custom'>
{reviews.map((item) => (
<div
key={item.reviewId}
className='border-b border-subfont py-[16px] last:border-none'
>
<ReviewComponent review={item} />
</div>
))}
</div>
);
};
createdAt: 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.
- 2-3 ReviewComponent์์์ ๋ฐ์ดํฐ ์ฒ๋ฆฌ
interface ReviewComponentProps {
review: ReviewData;
}
const ReviewComponent = ({ review }: ReviewComponentProps) => {
// review๋ ์ด๋ฏธ ํ์
์ด ๋ณด์ฅ๋ ์ํ
const { userName, reviewRating, content, createdAt } = review;
return (
<div>
<h3>{userName}</h3>
<div>{reviewRating}</div>
<p>{content}</p>
<span>{createdAt}</span>
</div>
);
};
์ฌ์ง ๋๋ฌ์ ์์ธํ์ด์ง๋ก ์ด๋ํ๋ ๊ฑด ์ถ๊ฐ ์ ํ๊ธฐ๋ก
โจ Feat : ์ฌ์ ์ ์์ฝ์ ์กฐํ, ๋ฆฌ๋ทฐ ์์ฑ ์๋ฃ๋ ์์ฝ ๋ฌธ๊ตฌ ํ์ ๋ฐ ๋ฆฌ๋ทฐ ํ์ด์ง๋ก ์ด๋
โจ Feat : ๋ก๊ทธ์ธ ํ์ด์ง ๋ฐ ์์ธ ํ์ด์ง ๊ตฌํ ์๋ฃ
โจ Feat, โป๏ธ Refactor : ๊ฒ์ ํ์ด์ง ๊ธฐ๋ฅ ๊ตฌํ ๋ฐ ์์ฝ ๊ฒฐ์ ํ์ด์ง ๊ฐ์
โจ Feat : ์์ฝ ๋ด์ญ ํ์ด์ง ๊ฒฐ์ ์ทจ์ ๊ธฐ๋ฅ ๊ตฌํ
โป๏ธ Refactor : ์์ฝ ๊ธฐ๋ฅ ๊ฐ์
โจ Feat : ๋ฆฌ๋ทฐ ์์ ๋ฐ ์ญ์ ๊ธฐ๋ฅ ์ถ๊ฐ
โจ Feat, ๐ง Fix, โป๏ธ Refactor : ๊ฒฐ์ ํ์ด์ง ๋ฐ ๊ฒ์ ๊ฒฐ๊ณผ ๊ฐ์
โป๏ธ Refactor : ์ต๊ทผ 7์ผ ์ด๋ด ์๋ฆผ ๊ตฌ๋ถ์ ์ถ๊ฐ
๐ ๏ธ ์๋น์ค ์์ฝ
๐ ์๊ตฌ ์ฌํญ๊ณผ ๊ตฌํ ๋ด์ฉ
์ต์ฑ๋ น
์ด์์
์กฐํ์ง
๐ ์์ ํํฉ
ํ๋ก ํธ์ธก ํ์ด์ง๋ณ ๋งํฌ์ ์ ๋ง๋ฌด๋ฆฌ๋ ์ํ์ ๋๋ค. api ์ฐ๊ฒฐํ๋ฉด์ ์์ํ ๋ถ๋ถ๋ง ์์ ์ด ์ด๋ฃจ์ด์ง๋ฉด ๋ ๊ฒ ๊ฐ์ต๋๋ค.
๋ฐฑ์๋์ชฝ ์๋ฒ ๋ฐฐํฌ๊ฐ ๋ผ์ ํ์ฌ ๊ฐ๋ฅํ api๋ฅผ ์ฐ๊ฒฐํด์ ํ ์คํธํด๋ณด๊ณ ์์ต๋๋ค. ๋ค๋ง ์๋ฒฝํ ๋ฐฐํฌ๋ ๊ฒ์ ์๋์ด์ ํ ์คํธ์ ์๊ฐ์ด ์กฐ๊ธ ์์๋๊ณ ์์ต๋๋ค.
์ง๊ธ ํ ์คํธํด๋ณด๊ณ ์๋ ํ์ด์ง๋
์ ๋์ ๋๋ค. ์ค๊ฐ๋ฐํ๋๊น์ง ํด๋น ํ์ด์ง๋ค์ ์ต๋ํ ๊ตฌํ์ ๋๋ผ ์์ ์ ๋๋ค.
๐ฌ ๋ฆฌ๋ทฐ ์์ ์ฐธ๊ณ ์ฌํญ
npm install
์คํํ์ ์ผ ํฉ๋๋ค.๐ฌย ์์ ๋ด์ญ์ ๋ํ ์ค๋ช & ๊ถ๊ธํ ์
์ง๋ ํ๋ก์ ํธ์์ axios ๊ด๋ จ ์ฝ๋๋ฅผ ์์ฑํ ๋, ๋์ผํ ์ญํ ์ ํ๋ ์ธ์คํด์ค๋ฅผ ๊ฐ๊ฐ ๋ฐ๋ก ๋ง๋ค๊ณ ์ธ์ฆ์ด ํ์ํ ์์ฒญ์๋ ํค๋์ ํ ํฐ ๋ฃ๋ ์ฝ๋๋ฅผ ๋งค๋ฒ ์์ฑํ๋ ๋ฑ ์ค๋ณต ์ฝ๋๊ฐ ๋ง์ด ๋ฐ์ํ์ต๋๋ค. ๊ทธ๋์ ์ด๋ฒ์ ๋ชจ๋ํ๋ฅผ ์๋ํด๋ดค์ต๋๋ค!
AxiosInstance๋ฅผ ์์ฑํ์ฌ ๊ฐ์ด ์ฌ์ฉ
์ธ์ฆ์ด ํ์ ์๋ ๊ฒฝ์ฐ์๋
defaultInstance
๋ฅผ ์ฌ์ฉํ๊ณ , ์ธ์ฆ์ด ํ์ํ ๊ฒฝ์ฐ์authInstance
๋ฅผ ์ฌ์ฉํฉ๋๋ค.authInstance
์๋ต ์ธํฐ์ ํฐ์์๋ 401์๋ฌ๊ฐ ๋ฐ์ํ ๊ฒฝ์ฐ refresh ํ ํฐ์ ๊ฐฑ์ ํ๋ ์์ฒญ์ ๋ณด๋ ๋๋ค.refresh ํ ํฐ์ด ์ ํจํ๋ฉด(200) ์๋ก ๋ฐ๊ธ๋ accessToken์ ๋ค์ localStorage์ ์ ์ฅํ๊ณ ๊ธฐ์กด ์์ฒญ์ ์ฌ์๋ํฉ๋๋ค.
์ ํจํ์ง ์์ผ๋ฉด ๋ก๊ทธ์์ ์ฒ๋ฆฌ๋ฉ๋๋ค.
authInstance
์์ฒญ ์ธํฐ์ ํฐ์๋ ์์ฒญ์ด ์๋ฒ์ ์ ์ก๋๊ธฐ ์ ์ accessToken์ ๊ฐ์ ธ์ ํค๋์ ์ธ์ฆ ๊ถํ์ ์ถ๊ฐํฉ๋๋ค. ์ดํ ์์ ๋ config๋ฅผ ๋ฐํํด์ ์ด ์ค์ ๋๋ก ์์ฒญ์ด ์ด๋ฃจ์ด์ง๋๋ค.errorInterceptor
๋ฅผ ํตํด ์๋ฌ๋ฅผ ์ฝ๊ฒ ๊ด๋ฆฌํ ์ ์๋๋ก ํ์ต๋๋ค. api ์์ฒญ ํจ์์ ์ ํ try-catch๋ฌธ์ ์๋ตํ ์ ์์ด api ํจ์๋ ๊ฐ๊ฒฐํ๊ฒ ์์ฑํ ์ ์์์ต๋๋ค.๊ฐ์ธ์ ์ผ๋ก ๊ถ๊ธํ ์
data๊ฐ undefined์ผ ์ ์๋ค๋ ์๋ฌ๊ฐ ๋ฐ ๋ ๊ทธ๊ฑธ ์ด๋ค ์์ผ๋ก ํด๊ฒฐํด์ผ ์ข์์ง ์ ๋ชจ๋ฅด๊ฒ ์ต๋๋ค.
์ ๋ HostInfo.tsx, UserInfo.tsx ๋ฑ์ ํ์ผ์์ undefined์ผ ์ ์๋ค๋ ์๋ฌ๊ฐ ๋ฐ์ํ๋ฉด ์ฒซ ๋ฒ์งธ ๋ฐฉ์์ด๋ ์ธ ๋ฒ์งธ ๋ฐฉ์์ ์ฃผ๋ก ์ฌ์ฉํ์ต๋๋ค.
undefined๋ฅผ ์ ๊ฑฐํ ์ ์๋ ๋ฐฉ๋ฒ์ด ์ฌ๋ฌ ๊ฐ๊ฐ ์๋๋ฐ ์ด๋ค ๋ฐฉ์์ด ๊ฐ์ฅ ์ ์ ํ์ง,
๊ทธ๋ฆฌ๊ณ undefined๋ฅผ ๋ณดํต ์ปดํฌ๋ํธ์ชฝ์์ ๊ฑธ๋ฌ๋ด๋์ง, ์๋๋ฉด api ํจ์๋ hook์์ ๋จผ์ ๊ฑธ๋ฌ๋ธ ๋ฐ์ดํฐ๋ฅผ ์ปดํฌ๋ํธ์์ ์ฌ์ฉํ๋์ง ๊ถ๊ธํฉ๋๋ค!
API ํต์ ์, ์๋ฒ์์ ๋ณด๋ด์ฃผ๋ ์๋ฌ status code๋ฅผ ๊ธฐ๋ฐ์ผ๋ก errorInterceptor์์ ๋ถ๋ฆฌํด ์ฒ๋ฆฌํ๊ณ ์๋๋ฐ, ๊ฐ ์๋ฌ๋ฅผ ์ด๋ป๊ฒ ์ฒ๋ฆฌํด์ผ ํ ์ง ์์ง ๊ฐ์ด ์ ์ต๋๋ค. ๊ณตํต์ผ๋ก ์๋ฌ ์ฒ๋ฆฌ๋ฅผ ํ ๋ฒ์ ํ๋ ๋ฐฉ์์ด ๋์์ง, ์๋๋ฉด ๊ฐ API ์์ฒญ ๋ก์ง์์ ์๋ฌ๋ฅผ ๊ฐ๋ณ์ ์ผ๋ก ํธ๋ค๋งํ๋ ๊ฒ ๋ ๋์ ๋ฐฉ๋ฒ์ธ์ง ๊ณ ๋ฏผ์ ๋๋ค!