Last active
July 15, 2024 12:26
-
-
Save nikasepiskveradze/704a9308b79855fa2617772466c0621a to your computer and use it in GitHub Desktop.
Lightweight implementation of React Query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
const context = React.createContext(); | |
export function QueryClientProvider({ children, client }) { | |
React.useEffect(() => { | |
const onFocus = () => { | |
client.queries.forEach((query) => { | |
query.subscribers.forEach((subscriber) => { | |
subscriber.fetch(); | |
}); | |
}); | |
}; | |
window.addEventListener("visibilitychange", onFocus, false); | |
window.addEventListener("focus", onFocus, false); | |
return () => { | |
window.removeEventListener("visibilitychange", onFocus); | |
window.removeEventListener("focus", onFocus); | |
}; | |
}, [client]); | |
return <context.Provider value={client}>{children}</context.Provider>; | |
} | |
export class QueryClient { | |
constructor() { | |
this.queries = []; | |
} | |
getQuery = (options) => { | |
const queryHash = JSON.stringify(options.queryKey); | |
let query = this.queries.find((d) => d.queryHash === queryHash); | |
if (!query) { | |
query = createQuery(this, options); | |
this.queries.push(query); | |
} | |
return query; | |
}; | |
} | |
export function useQuery({ queryKey, queryFn, staleTime, cacheTime }) { | |
const client = React.useContext(context); | |
const [, rerender] = React.useReducer((i) => i + 1, 0); | |
const observerRef = React.useRef(); | |
if (!observerRef.current) { | |
observerRef.current = createQueryObserver(client, { | |
queryKey, | |
queryFn, | |
staleTime, | |
cacheTime | |
}); | |
} | |
React.useEffect(() => { | |
return observerRef.current.subscribe(rerender); | |
}, []); | |
return observerRef.current.getResult(); | |
} | |
export function ReactQueryDevtools() { | |
return null; | |
} | |
function createQuery(client, { queryKey, queryFn, cacheTime = 5 * 60 * 1000 }) { | |
let query = { | |
queryKey, | |
queryHash: JSON.stringify(queryKey), | |
promise: null, | |
subscribers: [], | |
gcTimeout: null, | |
state: { | |
status: "loading", | |
isFetching: true, | |
data: undefined, | |
error: undefined | |
}, | |
subscribe: (subscriber) => { | |
query.subscribers.push(subscriber); | |
query.unscheduleGC(); | |
return () => { | |
query.subscribers = query.subscribers.filter((d) => d !== subscriber); | |
if (!query.subscribers.length) { | |
query.scheduleGC(); | |
} | |
}; | |
}, | |
scheduleGC: () => { | |
query.gcTimeout = setTimeout(() => { | |
client.queries = client.queries.filter((d) => d !== query); | |
}, cacheTime); | |
}, | |
unscheduleGC: () => { | |
clearTimeout(query.gcTimeout); | |
}, | |
setState: (updater) => { | |
query.state = updater(query.state); | |
query.subscribers.forEach((subscriber) => subscriber.notify()); | |
}, | |
fetch: () => { | |
if (!query.promise) { | |
query.prmise = (async () => { | |
query.setState((old) => ({ | |
...old, | |
isFetching: true, | |
error: undefined | |
})); | |
try { | |
const data = await queryFn(); | |
query.setState((old) => ({ | |
...old, | |
status: "success", | |
lastUpdated: Date.now(), | |
data | |
})); | |
} catch (error) { | |
query.setState((old) => ({ | |
...old, | |
status: "error", | |
error | |
})); | |
} finally { | |
query.promise = null; | |
query.setState((old) => ({ | |
...old, | |
isFetching: false | |
})); | |
} | |
})(); | |
} | |
return query.promise; | |
} | |
}; | |
return query; | |
} | |
function createQueryObserver( | |
client, | |
{ queryKey, queryFn, staleTime = 0, cacheTime } | |
) { | |
const query = client.getQuery({ queryKey, queryFn, cacheTime }); | |
const observer = { | |
notify: () => {}, | |
getResult: () => query.state, | |
subscribe: (callback) => { | |
observer.notify = callback; | |
const unsubscribe = query.subscribe(observer); | |
observer.fetch(); | |
return unsubscribe; | |
}, | |
fetch: () => { | |
if ( | |
!query.state.lastUpdated || | |
Date.now() - query.state.lastUpdated > staleTime | |
) { | |
query.fetch(); | |
} | |
} | |
}; | |
return observer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment