You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`defer` Force the use of `deferFn` or `promiseFn`.
24
-
*`json` Enable JSON parsing of the response.
23
+
-[`defer`](#defer) Force the use of `deferFn` or `promiseFn`.
24
+
-[`json`](#json) Enable JSON parsing of the response.
25
25
26
26
### `promise`
27
27
@@ -113,11 +113,11 @@ A unique label to describe this React Async instance, used in React DevTools \(t
113
113
114
114
Enables **experimental** Suspense integration. This will make React Async throw a promise while loading, so you can use Suspense to render a fallback UI, instead of using `<IfPending>`. Suspense differs in 2 main ways:
115
115
116
-
*`<Suspense>` should be an ancestor of your Async component, instead of a descendant. It can be anywhere up in the
116
+
-`<Suspense>` should be an ancestor of your Async component, instead of a descendant. It can be anywhere up in the
117
117
118
118
component hierarchy.
119
119
120
-
* You can have a single `<Suspense>` wrap multiple Async components, in which case it will render the fallback UI until
120
+
- You can have a single `<Suspense>` wrap multiple Async components, in which case it will render the fallback UI until
121
121
122
122
all promises are settled.
123
123
@@ -139,25 +139,25 @@ Enables or disables JSON parsing of the response body. By default this is automa
139
139
140
140
`<Async>` provides the following render props to the `children` function:
141
141
142
-
*`data` Last resolved promise value, maintained when new error arrives.
143
-
*`error` Rejected promise reason, cleared when new data arrives.
144
-
*`value` The value of `data` or `error`, whichever was last updated.
145
-
*`initialValue` The data or error that was provided through the `initialValue` prop.
146
-
*`startedAt` When the current/last promise was started.
147
-
*`finishedAt` When the last promise was fulfilled or rejected.
148
-
*`status` One of: `initial`, `pending`, `fulfilled`, `rejected`.
149
-
*`isInitial` true when no promise has ever started, or one started but was cancelled.
150
-
*`isPending` true when a promise is currently awaiting settlement. Alias: `isLoading`
151
-
*`isFulfilled` true when the last promise was fulfilled. Alias: `isResolved`
152
-
*`isRejected` true when the last promise was rejected.
153
-
*`isSettled` true when the last promise was fulfilled or rejected \(not initial or pending\).
154
-
*`counter` The number of times a promise was started.
155
-
*`promise` A reference to the internal wrapper promise, which can be chained on.
156
-
*`run` Invokes the `deferFn`.
157
-
*`reload` Re-runs the promise when invoked, using any previous arguments.
158
-
*`cancel` Cancel any pending promise.
159
-
*`setData` Sets `data` to the passed value, unsets `error` and cancels any pending promise.
160
-
*`setError` Sets `error` to the passed value and cancels any pending promise.
142
+
-[`data`](#data) Last resolved promise value, maintained when new error arrives.
143
+
-[`error`](#error) Rejected promise reason, cleared when new data arrives.
144
+
-[`value`](#value) The value of `data` or `error`, whichever was last updated.
145
+
-[`initialValue`](#initialvalue-1) The data or error that was provided through the `initialValue` prop.
146
+
-[`startedAt`](#startedat) When the current/last promise was started.
147
+
-[`finishedAt`](#finishedat) When the last promise was fulfilled or rejected.
148
+
-[`status`](#status) One of: `initial`, `pending`, `fulfilled`, `rejected`.
149
+
-[`isInitial`](#isinitial) true when no promise has ever started, or one started but was cancelled.
150
+
-[`isPending`](#ispending) true when a promise is currently awaiting settlement. Alias: `isLoading`
151
+
-[`isFulfilled`](#isfulfilled) true when the last promise was fulfilled. Alias: `isResolved`
152
+
-[`isRejected`](#isrejected) true when the last promise was rejected.
153
+
-[`isSettled`](#issettled) true when the last promise was fulfilled or rejected \(not initial or pending\).
154
+
-[`counter`](#counter) The number of times a promise was started.
155
+
-[`promise`](#promise-1) A reference to the internal wrapper promise, which can be chained on.
156
+
-[`run`](#run) Invokes the `deferFn`.
157
+
-[`reload`](#reload) Re-runs the promise when invoked, using any previous arguments.
158
+
-[`cancel`](#cancel) Cancel any pending promise.
159
+
-[`setData`](#setdata) Sets `data` to the passed value, unsets `error` and cancels any pending promise.
160
+
-[`setError`](#seterror) Sets `error` to the passed value and cancels any pending promise.
161
161
162
162
### `data`
163
163
@@ -290,4 +290,3 @@ Function that sets `data` to the passed value, unsets `error` and cancels any pe
Function that sets `error` to the passed value and cancels any pending promise. Takes an optional callback which is invoked after the state update is completed. Returns the error to enable chaining.
0 commit comments