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
Copy file name to clipboardexpand all lines: docs/state.md
+12-6
Original file line number
Diff line number
Diff line change
@@ -108,9 +108,12 @@ The number of times a promise was started.
108
108
109
109
> `Promise`
110
110
111
-
A reference to the internal wrapper promise created when starting a new promise \(either automatically or by invoking `run` / `reload`\). It fulfills or rejects along with the provided `promise` / `promiseFn` / `deferFn`. Useful as a chainable alternative to the `onResolve` / `onReject` callbacks.
111
+
A reference to the internal wrapper promise created when starting a new promise \(either automatically or by invoking
112
+
`run` / `reload`\). It fulfills or rejects along with the provided `promise` / `promiseFn` / `deferFn`. Useful as a
113
+
chainable alternative to the `onResolve` / `onReject` callbacks.
112
114
113
-
Warning! If you chain on `promise`, you MUST provide a rejection handler \(e.g. `.catch(...)`\). Otherwise React will throw an exception and crash if the promise rejects.
115
+
Warning! If you chain on `promise`, you MUST provide a rejection handler \(e.g. `.catch(...)`\). Otherwise React will
116
+
throw an exception and crash if the promise rejects.
114
117
115
118
## `run`
116
119
@@ -120,15 +123,18 @@ Runs the `deferFn`, passing any arguments provided as an array.
120
123
121
124
When used with `useFetch`, `run` has several overloaded signatures:
This way you can run the `fetch` request using the provided `resource` and `init`. `resource` can be omitted. If `init` is an object it will be spread over the default `init`\(`useFetch`'s 2nd argument\). If it's a function it will be invoked with the default `init` and should return a new `init` object. This way you can either extend or override the value of `init`, for example to set request headers.
132
+
Where `type OverrideParams = { resource?: RequestInfo } & Partial<RequestInit>`.
133
+
134
+
This way you can run the `fetch` request with custom `resource` and `init`. If `override` is an object it will be spread
135
+
over the default `resource` and `init` for `fetch`. If it's a function it will be invoked with the params defined with
136
+
`useFetch`, and should return an `override` object. This way you can either extend or override the value of `resource`
137
+
and `init`, for example to change the URL or set custom request headers.
Copy file name to clipboardexpand all lines: docs/upgrading.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Upgrading
2
2
3
+
## Upgrade to v9
4
+
5
+
The rejection value for failed requests with `useFetch` was changed. Previously it was the Response object. Now it's an
6
+
Error object with `response` property. If you are using `useFetch` and are using the `error` value, expecting it to be
7
+
of type Response, you must now use `error.response` instead.
8
+
3
9
## Upgrade to v8
4
10
5
11
All standalone helper components were renamed to avoid import naming collision.
@@ -12,7 +18,8 @@ All standalone helper components were renamed to avoid import naming collision.
12
18
13
19
> A [codemod](https://github.com/async-library/react-async/tree/master/codemods) is available to automate the upgrade.
14
20
15
-
The return type for `run` was changed from `Promise` to `undefined`. You should now use the `promise` prop instead. This is a manual upgrade. See [`promise`](installation.md#promise-1) for details.
21
+
The return type for `run` was changed from `Promise` to `undefined`. You should now use the `promise` prop instead. This
22
+
is a manual upgrade. See [`promise`](state.md#promise) for details.
16
23
17
24
## Upgrade to v6
18
25
@@ -25,11 +32,8 @@ The return type for `run` was changed from `Promise` to `undefined`. You should
25
32
## Upgrade to v4
26
33
27
34
-`deferFn` now receives an `args` array as the first argument, instead of arguments to `run` being spread at the front
28
-
29
35
of the arguments list. This enables better interop with TypeScript. You can use destructuring to keep using your
30
-
31
36
existing variables.
32
37
33
38
- The shorthand version of `useAsync` now takes the `options` object as optional second argument. This used to be
34
-
35
39
`initialValue`, but was undocumented and inflexible.
0 commit comments