lots of update 2
This commit is contained in:
33
lama_cleaner/app/src/hooks/useAsyncMemo.tsx
Normal file
33
lama_cleaner/app/src/hooks/useAsyncMemo.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
import { DependencyList, useEffect, useState } from 'react'
|
||||
|
||||
export function useAsyncMemo<T>(
|
||||
factory: () => Promise<T> | undefined | null,
|
||||
deps: DependencyList
|
||||
): T | undefined
|
||||
export function useAsyncMemo<T>(
|
||||
factory: () => Promise<T> | undefined | null,
|
||||
deps: DependencyList,
|
||||
initial: T
|
||||
): T
|
||||
export function useAsyncMemo<T>(
|
||||
factory: () => Promise<T> | undefined | null,
|
||||
deps: DependencyList,
|
||||
initial?: T
|
||||
) {
|
||||
const [val, setVal] = useState<T | undefined>(initial)
|
||||
|
||||
useEffect(() => {
|
||||
let cancel = false
|
||||
const promise = factory()
|
||||
if (promise === undefined || promise === null) return
|
||||
promise.then(v => {
|
||||
if (!cancel) {
|
||||
setVal(v)
|
||||
}
|
||||
})
|
||||
return () => {
|
||||
cancel = true
|
||||
}
|
||||
}, deps)
|
||||
return val
|
||||
}
|
||||
Reference in New Issue
Block a user