HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
🍒
[팀10] CherryBoys❤️
/
🖌️
프론트
/
우리의 고민

우리의 고민

Status
Assign
  1. contaienr vs wrapper https://stackoverflow.com/questions/4059163/css-language-speak-container-vs-wrapper
    1. https://hashcode.co.kr/questions/12186/웹-개발에서-사용하는-container-와-wrapper-의-차이가-정확히-무엇일까요
       
전역 상태 범위
  • 매칭 리스트와 상세페이지가 부모자식관계이면 전역상태관리해야한다고 생각하였습니다. 하지만url path에 있으므로 전역으로 관리하지 않아도 될것같습니다.
  • 상세페이지에서 뒤로가기해서 매칭리스트로 갔을때 api콜을 하지않고 상태에 가지고 있는 것이 효율적이라고 생각한다는 의견도 있었지만 서버 상태관리를 위하여 RTK query를 공부하여 적용하는것이 어떤가라고 생각을 하여 RTK query를 적용해보기로 하였습니다.
RTK Query Overview | Redux Toolkit
RTK Query is a powerful data fetching and caching tool. It is designed to simplify common cases for loading data in a web application, eliminating the need to hand-write data fetching & caching logic yourself. RTK Query is an optional addon included in the Redux Toolkit package, and its functionality is built on top of the other APIs in Redux Toolkit.
RTK Query Overview | Redux Toolkit
https://redux-toolkit.js.org/rtk-query/overview
RTK Query Overview | Redux Toolkit
 
 
option 선택에 필요한 데이터는 백엔드에서? 프론트에서?
 
 
type을 분리할 것인가 통합하여 한 파일내에서 파악할 것인가?
재사용 type을 위하여 한 곳에 모으는것은 어떤가?