Skip to content

Commit d3fedaa

Browse files
committed
Add shortcut links to API docs.
1 parent fde7e09 commit d3fedaa

File tree

1 file changed

+36
-37
lines changed

1 file changed

+36
-37
lines changed

gitbook/api.md

+36-37
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44

55
These can be passed in an object to `useAsync()`, or as props to `<Async>` and custom instances.
66

7-
* `promise` An already started Promise instance.
8-
* `promiseFn` Function that returns a Promise, automatically invoked.
9-
* `deferFn` Function that returns a Promise, manually invoked with `run`.
10-
* `watch` Watch a value and automatically reload when it changes.
11-
* `watchFn` Watch this function and automatically reload when it returns truthy.
12-
* `initialValue` Provide initial data or error for server-side rendering.
13-
* `onResolve` Callback invoked when Promise resolves.
14-
* `onReject` Callback invoked when Promise rejects.
15-
* `onCancel` Callback invoked when a Promise is cancelled.
16-
* `reducer` State reducer to control internal state updates.
17-
* `dispatcher` Action dispatcher to control internal action dispatching.
18-
* `debugLabel` Unique label used in DevTools.
19-
* `suspense` Enable **experimental** Suspense integration.
7+
- [`promise`](#promise) An already started Promise instance.
8+
- [`promiseFn`](#promisefn) Function that returns a Promise, automatically invoked.
9+
- [`deferFn`](#deferfn) Function that returns a Promise, manually invoked with `run`.
10+
- [`watch`](#watch) Watch a value and automatically reload when it changes.
11+
- [`watchFn`](#watchfn) Watch this function and automatically reload when it returns truthy.
12+
- [`initialValue`](#initialvalue) Provide initial data or error for server-side rendering.
13+
- [`onResolve`](#onresolve) Callback invoked when Promise resolves.
14+
- [`onReject`](#onreject) Callback invoked when Promise rejects.
15+
- [`onCancel`](#oncancel) Callback invoked when a Promise is cancelled.
16+
- [`reducer`](#reducer) State reducer to control internal state updates.
17+
- [`dispatcher`](#dispatcher) Action dispatcher to control internal action dispatching.
18+
- [`debugLabel`](#debuglabel) Unique label used in DevTools.
19+
- [`suspense`](#suspense) Enable **experimental** Suspense integration.
2020

2121
`useFetch` additionally takes these options:
2222

23-
* `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.
2525

2626
### `promise`
2727

@@ -113,11 +113,11 @@ A unique label to describe this React Async instance, used in React DevTools \(t
113113
114114
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:
115115

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
117117

118118
component hierarchy.
119119

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
121121

122122
all promises are settled.
123123

@@ -139,25 +139,25 @@ Enables or disables JSON parsing of the response body. By default this is automa
139139

140140
`<Async>` provides the following render props to the `children` function:
141141

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.
161161

162162
### `data`
163163

@@ -290,4 +290,3 @@ Function that sets `data` to the passed value, unsets `error` and cancels any pe
290290
> `function(error: Error, callback?: () => void): Error`
291291
292292
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.
293-

0 commit comments

Comments
 (0)