mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
488 B
TypeScript
21 lines
488 B
TypeScript
import { DependencyList, useEffect } from 'react';
|
|
import type { FunctionReturningPromise } from '../types';
|
|
import { useAsyncFn } from './useAsyncFn';
|
|
|
|
// Reference: https://github.com/streamich/react-use/blob/master/src/useAsync.ts
|
|
|
|
export function useAsync<T extends FunctionReturningPromise>(
|
|
fn: T,
|
|
deps: DependencyList = []
|
|
) {
|
|
const [state, callback] = useAsyncFn(fn, deps, {
|
|
loading: true,
|
|
});
|
|
|
|
useEffect(() => {
|
|
callback();
|
|
}, [callback]);
|
|
|
|
return state;
|
|
}
|