Links

usePromise

Hook which wraps an asynchronous function or a function that returns a Promise and returns the AsyncState corresponding to the execution of the function.
The function is assumed to be constant (eg. changing it won't trigger a revalidation).

Signature

type Result<T> = `type of the returned value of the returned Promise`;
function usePromise<T>(
fn: T,
args?: Parameters<T>,
options?: {
abortable?: MutableRefObject<AbortController | null | undefined>;
execute?: boolean;
onError?: (error: Error) => void;
onData?: (data: Result<T>) => void;
onWillExecute?: (args: Parameters<T>) -> void;
}
): AsyncState<Result<T>> & {
revalidate: () => void;
mutate: MutatePromise<Result<T> | undefined>;
};

Arguments

  • fn is an asynchronous function or a function that returns a Promise.
  • args is the array of arguments to pass to the function. Every time they change, the function will be executed again. You can omit the array if the function doesn't require any argument.
With a few options:
  • options.abortable is a reference to an AbortController to cancel a previous call when triggering a new one.
  • options.execute is a boolean to indicate whether to actually execute the function or not. This is useful for cases where one of the function's arguments depends on something that might not be available right away (for example, depends on some user inputs). Because React requires every hook to be defined on the render, this flag enables you to define the hook right away but wait until you have all the arguments ready to execute the function.
  • options.onError is a function called when an execution fails. By default, it will log the error and show a generic failure toast with an action to retry.
  • options.onData is a function called when an execution succeeds.
  • options.onWillExecute is a function called when an execution will start.

Returns

Returns an object with the AsyncState corresponding to the execution of the function as well as a couple of methods to manipulate it.
  • data, error, isLoading - see AsyncState.
  • revalidate is a method to manually call the function with the same arguments again.
  • mutate is a method to wrap an asynchronous update and gives some control about how the usePromise's data should be updated while the update is going through. By default, the data will be revalidated (eg. the function will be called again) after the update is done. See Mutation and Optimistic Updates for more information.

Example

import { Detail, ActionPanel, Action } from "@raycast/api";
import { usePromise } from "@raycast/utils";
const Demo = () => {
const abortable = useRef<AbortController>();
const { isLoading, data, revalidate } = usePromise(
async (url: string) => {
const response = await fetch(url, { signal: abortable.current?.signal });
const result = await response.text();
return result;
},
["https://api.example"],
{
abortable,
}
);
return (
<Detail
isLoading={isLoading}
markdown={data}
actions={
<ActionPanel>
<Action title="Reload" onAction={() => revalidate()} />
</ActionPanel>
}
/>
);
};

Mutation and Optimistic Updates

In an optimistic update, the UI behaves as though a change was successfully completed before receiving confirmation from the server that it was - it is being optimistic that it will eventually get the confirmation rather than an error. This allows for a more responsive user experience.
You can specify an optimisticUpdate function to mutate the data in order to reflect the change introduced by the asynchronous update.
When doing so, you can specify a rollbackOnError function to mutate back the data if the asynchronous update fails. If not specified, the data will be automatically rolled back to its previous value (before the optimistic update).
import { Detail, ActionPanel, Action, showToast, Toast } from "@raycast/api";
import { usePromise } from "@raycast/utils";
const Demo = () => {
const { isLoading, data, mutate } = usePromise(
async (url: string) => {
const response = await fetch(url);
const result = await response.text();
return result;
},
["https://api.example"]
);
const appendFoo = async () => {
const toast = await showToast({ style: Toast.Style.Animated, title: "Appending Foo" });
try {
await mutate(
// we are calling an API to do something
fetch("https://api.example/append-foo"),
{
// but we are going to do it on our local data right away,
// without waiting for the call to return
optimisticUpdate(data) {
return data + "foo";
},
}
);
// yay, the API call worked!
toast.style = Toast.Style.Success;
toast.title = "Foo appended";
} catch (err) {
// oh, the API call didn't work :(
// the data will automatically be rolled back to its previous value
toast.style = Toast.Style.Failure;
toast.title = "Could not append Foo";
toast.message = err.message;
}
};
return (
<Detail
isLoading={isLoading}
markdown={data}
actions={
<ActionPanel>
<Action title="Append Foo" onAction={() => appendFoo()} />
</ActionPanel>
}
/>
);
};

Types

AsyncState

An object corresponding to the execution state of the function.
// Initial State
{
isLoading: true, // or `false` if `options.execute` is `false`
data: undefined,
error: undefined
}
// Success State
{
isLoading: false,
data: T,
error: undefined
}
// Error State
{
isLoading: false,
data: undefined,
error: Error
}
// Reloading State
{
isLoading: true,
data: T | undefined,
error: Error | undefined
}

MutatePromise

A method to wrap an asynchronous update and gives some control about how the usePromise's data should be updated while the update is going through.
export type MutatePromise<T> = (
asyncUpdate?: Promise<any>,
options?: {
optimisticUpdate?: (data: T) => T;
rollbackOnError?: boolean | ((data: T) => T);
shouldRevalidateAfter?: boolean;
}
) => Promise<any>;