Usage Without React Hooks
Like the Redux core and Redux Toolkit, RTK Query's primary functionality is UI-agnostic and can be used with any UI layer. RTK Query also includes a version of createApi
designed specifically for use with React, which automatically generates React hooks.
While React hooks are the primary way that the majority of users are expected to be using RTK Query, the library itself uses plain JS logic and can be used both with React Class components, and independent of React itself.
This page documents how to interact with RTK Query when used without React Hooks, in order to make proper use of RTK Query cache behavior
.
Adding a subscription
Cache subscriptions are used to tell RTK Query that it needs to fetch data for an endpoint. A subscription for an endpoint can be added by dispatching the result of the initiate
thunk action creator attached to a query endpoint.
With React hooks, this behavior is instead handled within useQuery
, useQuerySubscription
, useLazyQuery
, and useLazyQuerySubscription
.
const promise = dispatch(api.endpoints.getPosts.initiate())
const { refetch } = promise
// interact with the cache in the same way as you would with a useFetch...() hook
const { data, isLoading, isSuccess /*...*/ } = await promise
Removing a subscription
Removing a cache subscription is necessary for RTK Query to identify that cached data is no longer required. This allows RTK Query to clean up and remove old cache data.
The result of dispatching the initiate
thunk action creator of a query endpoint is a Promise with an unsubscribe
property. This property is a function that when called, will remove the corresponding cache subscription.
With React hooks, this behavior is instead handled within useQuery
, useQuerySubscription
, useLazyQuery
, and useLazyQuerySubscription
.
// Adding a cache subscription
const promise = dispatch(api.endpoints.getPosts.initiate())
// Removing the corresponding cache subscription
promise.unsubscribe()
Accessing cached data & request status
Accessing cache data and request status information can be performed using the select
function property of a query endpoint to create a selector and call that with the Redux state. This provides a snapshot of the cache data and request status information at the time it is called.
The endpoint.select(arg)
function creates a new selector instance - it isn't the actual selector function itself!
With React hooks, this behavior is instead handled within useQuery
, useQueryState
, and useLazyQuery
.
const result = api.endpoints.getPosts.select()(state)
const { data, isSuccess, isError, error } = result
Note that unlike with the auto-generated hooks, there is no isFetching
flag, and the isLoading
flag will be true if the status is pending, regardless of if there is already data.
Memoization
Because the endpoint.select(arg)
function returns a new selector each time it's called, and because this instance itself is memoized, it can be desirable to memoize the creation of a selector (for example, to then use that memoized instance in another selector). This can be done with createSelector
:
const createGetPostSelector = createSelector(
(id: string) => id,
(id) => api.endpoints.getPost.select(id),
)
const selectGetPostError = createSelector(
(state: RootState) => state,
(state: RootState, id: string) => createGetPostSelector(id),
(state, selectGetPost) => selectGetPost(state).error,
)
Performing mutations
Mutations are used in order to update data on the server. Mutations can be performed by dispatching the result of the initiate
thunk action creator attached to a mutation endpoint.
With React hooks, this behavior is instead handled within useMutation
.
dispatch(api.endpoints.addPost.initiate({ name: 'foo' }))
Examples
Examples of usage without React hooks can be found under the following:
- The
PostDetail
component in theReact Class Components
example - The
Svelte
example - The below
Cache Lifetime Subscription Class Component
example:
Further Information
- NgRx maintainer Brandon Roberts has written a post called Cousins playing nicely: Experimenting with NgRx Store and RTK Query, which demonstrates some approaches for integrating RTK Query into NgRx
saulmoro/ngrx-rtk-query
implements an NgRx equivalent of the subscription lifecycle managed in RTKQ's own React hooks