1. react-query
https://blog.rhostem.com/posts/2021-02-01T00:00:00.000Z
https://shindongri.dev/blog/react-query-14/
https://merrily-code.tistory.com/76
https://www.zigae.com/react-query-key/
리액트 쿼리는 처음 접했을때 잘 이해가 안갔다.
리덕스 대신에 사용한다고 하는데 서버에서 데이터를 관리하는 것과
클라이언트에서 전역으로 데이터를 관리하는 게 왜 대체될 수 있는 건지 이해가 안갔다.
다른 곳에서 찾아보니 클라이언트에서만 필요한 전역 데이터를 관리할 수 있게 가벼운 라이브러리를 함께 사용하면 좋다고 한다.
한편 , 리덕스를 사용해서 서버 데이터를 받아와서 post, put, delete하는 메소드를 사용할 때
화면에 바로 업데이트 할 수 있던 것을 mutation으로 한다고 한다.
더 공부해봐야겠다.
2. defaultValue error
https://sso-feeling.tistory.com/735
3. table에서 왼쪽에 컬럼을 고정하고 싶을때
https://github.com/GuillaumeJasmin/react-table-sticky
스타일을 지정하지 않으면 투명하게 넘어간다.
const tdStyle = css`
text-align: center;
padding: 10px;
border: 1px solid #e3e3e3;
height: auto;
background: inherit;
`;
const trStyle = css`
tr:nth-child(odd) {
background: #f3f3f3;
}
tr:nth-child(even){
background: white;
}
td와 th에 background를 지정해주면 된다.
728x90
'TIL' 카테고리의 다른 글
[TIL] 20211213 http.interceptors.request.use/ next.js/ react-table/.. (0) | 2021.12.14 |
---|---|
[TIL] 20211210 react, redux with typescript/ 웹뷰 흐릿해지는 문제/ prettier 설정 (0) | 2021.12.14 |
[TIL] 20211208 react hook form yup/ position absolute/classnames (0) | 2021.12.10 |
[TIL] 20211207 react-table editable/ fixed column/ css (0) | 2021.12.10 |
[TIL] 20211206 react 라이브러리들 (0) | 2021.12.08 |