- 📦 Unpacked Size: only
17.7KB
(react-query is2.18MB
)
- ✅ Simple useQuery
- ✅ Simple useMutation
- ✅ Simple refetchInterval & clearRefetchInterval
- ✅ Setting initialData
- ✅ Caching is not a default (It's optional)
- 리액트 쿼리는 무겁습니다
- 리액트 쿼리는 너무 많은 기능을 제공합니다.
- 나는 단지 비동기 상태관리를 하고싶을 뿐인데, 비동기에 대한 모든 도구와 설명을 제공해줍니다.
- 대부분의 기능은 필요없거나, 스스로 충분히 구현가능합니다.
- 리액트 쿼리의 내부 동작을 알 수 없습니다.
- 어플리케이션이 복잡할수록, 버그가 발생했을때 디버깅하기 복잡합니다.
- useMutation은 .mutateAsync 호출시 에러를 throw했을때 try/catch로 잡아줘야하는 반면, useQuery는 에러를 throw했을떄 error 객체에 자동으로 반영되어서 사용의 일관성이 없습니다.
- react-query의 useQuery data타입은 항상 undefined 타입을 union으로 추가합니다.
- 예를들어, useQuery의 타입을 string으로 두면
string | undefined
의 data타입을 가지고 initialData를null
로 설정하면 data 타입이string | null | undefined
가 됩니다.
- react-query의 refreshInterval은 주기적인 요청을 보낼 수 있지만, 해당 주기인 요청을 취소하려면 axios의 cancel 기능을 사용해야 하는 등의 복잡한 구현이 필요합니다.
- 캐싱을 기본적으로 해서, 가끔씩 예상치 못한 동작을 수행합니다.
yarn add simple-react-query
QueryClient has queryCache.
import { QueryClient, QueryClientProvider } from "simple-react-query";
<QueryClientProvider value={QueryClient}>
<App />
</QueryClientProvider>;
const {
refetch,
isLoading,
isError,
data,
error,
setData,
isSuccess,
clearRefetchInterval,
isFetched
} = useQuery<TypeOfResponseData>({
enabled: true,
query: () => fetch(...),
initialData: {},
onSuccess: () => console.log("fetch success!"),
refetchInterval: 5000,
isEqualToPrevDataFunc: (a,b) => a.id === b.id,
cacheTime: 5000,
queryKeys: ["User", "id"]
});
enabled
: auto fetch, when useQuery calledquery
: fetch functiononSuccess (optional)
: action after query fetched successfullyinitialData (optional)
: set initial datarefetchInterval (optional)
: refetch interval (ms)(background ok)isEqualToPrevDataFunc (optional)
: when newData fetched, isEqualToPrevDataFunc called with (newData, prevData), if false update newData, true don't update newData because it is same.cacheTime (optional)
: caching time useQuery's return data. (ms) default is 0.queryKeys (optional)
: caching is decided by queryKeys. It must be array.
refetch
: refetch queryisLoading
: fetch is not completeisError
: fetch has errordata
: fetch's return data (or cached data)error
: error objectsetData
: update data stateisSuccess
: fetch is complete successfullyclearRefetchInterval
: clear interval refetchisFetched
: query is fetched more then 1 time
const { isLoading, isError, error, data, mutation } = useMutation<
TypeRequestData,
TypeResponseData
>({
query: (_data: TypeRequestData) => fetch(_data),
onSuccess: () => {
console.log("mutation successfully");
}
});
query
: mutation fetch functiononSuccess (optional)
: action after query fetched successfully
isLoading
: fetch is not completeisError
: fetch has errordata
: fetch's return dataerror
: error objectmutation
: wrapped async fetch function, use this function instead fetch
- When you want another method, contact [email protected] or custom yourself this code. It is very simple!