-
Notifications
You must be signed in to change notification settings - Fork 2
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
Gmmq 72 feat 라우터 설정하기 #2
The head ref may contain hidden characters: "GMMQ-72-feat-\uB77C\uC6B0\uD130-\uC124\uC815\uD558\uAE30"
Conversation
9958723
to
d8967c0
Compare
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.
페이지 다 만드시느라 고생 많으셨습니다 👍
화살표 함수를 사용하셨는데, 관련해서 좀 더 찾아보니까 화살표 함수랑 함수 표현식은 호이스팅이 되지 않아서, 코드 짤 때 메인 로직이 담긴 함수 외에 추가 함수가 필요할 때 추가 함수를 메인 함수 위에 작성해줘야 한다고 하더라고요! 그렇게 되면 메인 로직이 담긴 함수가 가장 위에 있는 게 아니라 밑에 있게 돼서 보기가 불편해진다는 단점이 있다고 합니다.
근데 화살표함수로 작성하면 return을 더 간결하게 할 수 있다.. 이런 장점이 또 있다고 해서 이건 취향 차이일 수도 있을 것 같아요!
스크럼 시간에 같이 얘기해봐요
src/routes/router.tsx
Outdated
{ path: 'resume/create', element: <CreateResumePage /> }, | ||
{ path: 'resume/edit/:id', element: <EditResumePage /> }, | ||
{ path: 'resume/review/:id', element: <ReviewResumePage /> }, | ||
{ path: 'resume/detail/:id', element: <ResumeDetailPage /> }, |
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.
id가 더 상위 개념이니까 :id가 url에서 먼저 오고 edit, review 같은 것들이 뒤에 오는 게 더 자연스러울 것 같은데 어떠신가요? 이렇게 되면 detail은 생략해도 될 것 같습니다!
ex. resume/:id
, resume/:id/edit
, resume/:id/correction
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.
오... :id를 중간에 넣을 생각을 못했네요 가운데로 변경하겠습니다!
src/routes/router.tsx
Outdated
|
||
{ path: 'resume/create', element: <CreateResumePage /> }, | ||
{ path: 'resume/edit/:id', element: <EditResumePage /> }, | ||
{ path: 'resume/review/:id', element: <ReviewResumePage /> }, |
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.
review는 첨삭의 의미로 쓰신 건가요? 맞다면 첨삭 '후기'랑 겹치는 것 같아서 워딩을 다른 걸로 가져가는 게 좋을 것 같아요! (correction이나 comment? 어떨까요)
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.
아 넵 첨삭의 의미로 사용했는데 comment가 더 어울리는 것 같네요! 추천 감사합니다!
{ path: 'resume/edit/:id', element: <EditResumePage /> }, | ||
{ path: 'resume/review/:id', element: <ReviewResumePage /> }, | ||
{ path: 'resume/detail/:id', element: <ResumeDetailPage /> }, | ||
{ path: 'write-review', element: <WriteReviewPage /> }, |
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.
이 페이지가 멘토 첨삭에 대한 멘티의 후기 작성 페이지인거죠 ?!
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.
넵 맞습니다!
{ path: 'event/create', element: <CreateEventPage /> }, | ||
{ path: 'event/view', element: <EventListPage /> }, | ||
{ path: 'event/view/:eventId', element: <EventDetailPage /> }, | ||
{ path: 'event/apply', element: <ApplyEventPage /> }, |
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.
어떤 이벤트 신청 페이지인지 이벤트 아이디가 path 중간에 있어야 할 것 같아요!
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.
넵! view를 없애는 것도 좋겠네요
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.
넵 좋습니다
src/pages/AdminPage/index.ts
Outdated
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.
컴포넌트에서는 인덱스를 안 만들기로 했었는데, 페이지 폴더는 index를 생성하는 건가요? 저번에 지호님이 말씀하셨던 이유와 같은 이유인가요!
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.
아하 인덱스 파일이 전체적으로 없는거였군요! 바로 없애도록 하겠습니다
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.
앗 그때 전체적으로 없애자 했던 건 아니긴 한데, 저는 없어도 크게 상관 없을 것 같다는 의견입니다!
* feat: 라우터 적용을 위한 페이지 생성 * feat: 레이아웃 생성 * feat: 라우터 설정 * chore: index 파일 수정 * feat: Page 폴더 구조 정리 * feat: 라우터 설정 * chore: 사용하지 않는 파일 제거 * fix: 경로 수정 * chore: index 파일 삭제 * fix: 라우팅 변경, 파일 이름 변경
* feat: baseUrl env 상수 추가, gitignore * feat: axios 인스턴스 추가 * feat: 401, 404, 5xx axios 인터셉터 추가 * Gmmq 72 feat: 라우터 설정하기 (#2) * feat: 라우터 적용을 위한 페이지 생성 * feat: 레이아웃 생성 * feat: 라우터 설정 * chore: index 파일 수정 * feat: Page 폴더 구조 정리 * feat: 라우터 설정 * chore: 사용하지 않는 파일 제거 * fix: 경로 수정 * chore: index 파일 삭제 * fix: 라우팅 변경, 파일 이름 변경 * fix: 환경변수 prefix 수정 --------- Co-authored-by: backward99 <86753969+backward99@users.noreply.github.com>
* feat: baseUrl env 상수 추가, gitignore * feat: axios 인스턴스 추가 * feat: 401, 404, 5xx axios 인터셉터 추가 * Gmmq 72 feat: 라우터 설정하기 (#2) * feat: 라우터 적용을 위한 페이지 생성 * feat: 레이아웃 생성 * feat: 라우터 설정 * chore: index 파일 수정 * feat: Page 폴더 구조 정리 * feat: 라우터 설정 * chore: 사용하지 않는 파일 제거 * fix: 경로 수정 * chore: index 파일 삭제 * fix: 라우팅 변경, 파일 이름 변경 * fix: 환경변수 prefix 수정 --------- Co-authored-by: backward99 <86753969+backward99@users.noreply.github.com>
* chore: meta title 수정 * feat: 카카오 소셜 로그인 key, redirect uri 환경변수 추가 * feat: 로그인 페이지 마크업 + 카카오 로그인 페이지 리다이렉션 * feat: 로그인 페이지 마크업 추가 * GMMQ-79 feat: axios interceptor (#4) * feat: baseUrl env 상수 추가, gitignore * feat: axios 인스턴스 추가 * feat: 401, 404, 5xx axios 인터셉터 추가 * Gmmq 72 feat: 라우터 설정하기 (#2) * feat: 라우터 적용을 위한 페이지 생성 * feat: 레이아웃 생성 * feat: 라우터 설정 * chore: index 파일 수정 * feat: Page 폴더 구조 정리 * feat: 라우터 설정 * chore: 사용하지 않는 파일 제거 * fix: 경로 수정 * chore: index 파일 삭제 * fix: 라우팅 변경, 파일 이름 변경 * fix: 환경변수 prefix 수정 --------- Co-authored-by: backward99 <86753969+backward99@users.noreply.github.com> * fix: base url 환경변수 이동 --------- Co-authored-by: backward99 <86753969+backward99@users.noreply.github.com>
📃 PR 설명
라우터 설정을 진행했습니다.
📃 참고사항
예시로 파일을 만들어두었고 경로에 적용시켜 둔 상태 입니다.
Heading
부분을 지우고Header
컴포넌트와 같은 내용을 넣으면 될 것 같습니다.App
에서Layout
을 적용하고 있습니다.기본경로에서
App
을 보여주고 기본 경로에 대한 하위 경로로 다른 페이지를 보여줍니다.🔎 PR포인트와 궁금한 점