Skip to content

Commit eb35cb2

Browse files
authored
Merge pull request #10609 from marmelab/doc/notification_on_httpError
[Doc] Mention that `httpError` triggers a notification
2 parents 2e0fbcf + 160ebd4 commit eb35cb2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/Admin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ React-admin uses [React Query](https://tanstack.com/query/v5/) to fetch, cache a
906906
* The query is optionally configured with a refetch interval
907907
* Query results that are no longer used in the current page are labeled as "inactive" and remain in the cache in case they are used again at a later time.
908908
* By default, "inactive" queries are garbage collected after 5 minutes.
909-
* Queries that fail are silently retried 3 times, with exponential backoff delay before capturing and displaying an error to the UI.
909+
* Queries that fail are silently retried 3 times, with exponential backoff delay before capturing and displaying an error notification to the UI.
910910
* Query results by default are structurally shared to detect if data have actually changed and if not, the data reference remains unchanged to better help with value stabilization in regard to `useMemo` and `useCallback`.
911911

912912
If you want to override the react-query default query and mutation default options, or use a specific client or mutation cache, you can create your own `QueryClient` instance and pass it to the `<Admin queryClient>` prop:

docs/DataProviderWriting.md

+2
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,8 @@ export default {
440440
};
441441
```
442442

443+
**Note**: Throwing an `httpError` in your `dataProvider` will result in a notify popup appearing in your admin UI.
444+
443445
## Handling Authentication
444446

445447
Your API probably requires some form of authentication (e.g. a token in the `Authorization` header). It's the responsibility of [the `authProvider`](./Authentication.md) to log the user in and obtain the authentication data. React-admin doesn't provide any particular way of communicating this authentication data to the Data Provider. Most of the time, storing the authentication data in the `localStorage` is the best choice - and allows uses to open multiple tabs without having to log in again.

docs/DataProviders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ React-admin uses [React Query](https://tanstack.com/query/v5/) to fetch, cache,
6868
* The query is optionally configured with a refetch interval
6969
* Query results that are no longer used in the current page are labeled as "inactive" and remain in the cache in case they are used again later.
7070
* By default, "inactive" queries are garbage collected after 5 minutes.
71-
* Queries that fail are silently retried 3 times, with exponential backoff delay before capturing and displaying an error to the UI.
71+
* Queries that fail are silently retried 3 times, with exponential backoff delay before capturing and displaying an error notification to the UI.
7272
* Query results by default are structurally shared to detect if data has actually changed, and if not, the data reference remains unchanged to better help with value stabilization in regard to `useMemo` and `useCallback`.
7373

7474
If you want to override the react-query default query and mutation options, or use a specific client or mutation cache, you can create your own `QueryClient` instance and pass it to the `<Admin queryClient>` prop:

0 commit comments

Comments
 (0)