misc-hooks
v0.0.21
Published
## Atom - A simple state management hook
Downloads
254
Readme
misc-hooks - Precious React hooks
Atom - A simple state management hook
makeAtom(), useAtom()
: atom value. Usage:
atom = makeAtom() // make atom
atom = makeAtom(initialValue) // make atom with initial value
useAtom(atom) // use atom in component
atom.value = newValue // set value
value = atom.value // get value
unsub = atom.sub(val => console.log(val)) // subscribe
unsub() // unsubscribe
useAsync()
- Async data loading hook
Signature:
useAsync<T>(asyncFn, getInitial)
.asyncFn: (abortSignal: AbortSignal) => Promise<T> | T
: a function that returns the data or a promise which resolves to the data.abortSignal
: anAbortSignal
object that is aborted when there is a new call toreload()
.getInitial?: () => T | undefined
: an optional function that returns the initial data. If not provided, the initial data isundefined
.getInitial()
can returnundefined
,getInitial
can be absent, or it can throw an error.- Returns
{data, error, reload}
where:- If
data
anderror
are bothundefined
, it means the data is loading or not yet loaded (initial render). They are never both notundefined
. reload
: a function that takes no argument, reloads the data and returns what the function passed to the hook returns. Thereload
function reference never changes, you can safely pass it to the independent array ofuseEffect
without causing additional renders. In subsequent renders,reload
uses the latest function passed to the hook.
- If
useAsync
: only loads data in the first return, only if initial data is not provided. If you want to reload the data, you need to callreload()
.
const {data, error, reload} = useAsync((staledRef) => loadData(params))
// when params changes, you need to manually call reload()
useEffect(() => void reload(), [params, reload]) // `reload` value never changes
Note
useAsync<T>()
has a generic typeT
which is the type of the data returned by the function passed to the hook.- When calling
reload()
,error
anddata
are immediately/synchronously set toundefined
(viasetState
) and the data is reloaded. - If you want to keep the last data while reloading, for example, to keep the last page of a paginated list until the new page is loaded, use
useKeep
hook described at thee end of this document. - If you want to delay showing the loading indicator, use
useTimedOut
hook described at the end of this document. - For now, both
data
andError
's types are defined. We will improve the type definition in the future.
Sample usage:
const {data, error, reload} = useAsync((staledRef) => loadData(params))
const timedOut = useTimedOut(500)
const dataKeep = useKeep(data)
return error // has error
? <ErrorPage/>
: dataKeep // has data
? <Data data={dataKeep}/>
: timedOut // loading
? <Loading/>
: null
SSR support:
getInitial
is called in only in the server render, and in the first client render.
- In server side, in
getInitial
:- If data is available, return the data synchronously.
- If data is not available:
- Return
undefined
synchronously
- Return
- Trigger data loading, retain the promise for later use.
- Mark the render not ready continue rendering.
- Wait for the data to be loaded.
- Re-render the component with the loaded data.
- In client side:
- Store SSR data before hydration.
- Use
useEffect()
to clear the SSR data:useEffect(() => clearSSRData(), [])
. - In
getInitial
: - If data is available, return the data synchronously. - If data is not available: - Returnundefined
synchronously.
Note that the data load is called only in the first render, to reload the data, you need to call reload()
.
Other Exported Hooks
timedout = useTimedOut(timeout)
: get a boolean whose value istrue
aftertimeout
ms.lastDefinedValue = useKeep(value)
: keep the last defined value. Ifvalue
isundefined
, the last defined value is returned.[loading, makeAtomic] = useAtomicMaker()
: get a function to make a function atomic by callingawait makeAtomic(cb)(...params)
.loading
istrue
when the atomic function is running. If another atomic function is called when the previous one is running, the new one returnsundefined
.[loading, atomicCb] = useAtomicCallback(cb)
: similar touseAtomicMaker
withatomicCb = makeAtomic(cb)
.nextState = nextStateFromAction(action, state)
: get next state fromsetState
action.[state, toggle] = useToggle(init = false)
:toggle()
to toggle booleanstate
state, or,toggle(true/false)
to set state.[state, enable] = useTurnOn()
:enable()
to set state totrue
.[state, disable] = useTurnOff()
:disable()
to set state tofalse
.unmountedRef = useUnmountedRef()
: get a ref whose value istrue
when component is unmounted. Note, from react 18, the effect is sometimes unmounted and mounted again.mountedRef = useMountedRef()
: get a ref whose value istrue
when component is mounted. Note: ref's value is not set tofalse
when component is unmounted.mounted = useMounted()
: get a boolean whose value istrue
when component is mounted. Note: the value is not set tofalse
when component is unmounted.state = useDebounce(value, timeout)
: get a debounced value.state
is updated after at leasttimeout
ms.memoValue = useDeepMemo(value)
: get a memoized value.value
is compared bydeep-equal
package.update = useForceUpdate()
: get a function to force re-render component.prefRef = usePrevRef(value)
: get a ref whose value is the previousvalue
.[state, setState] = useDefaultState(defaultState)
: whendefaultState
changes, setstate
todefaultState
. Note: we currently rely on deps array to trigger the effect. Need to check if react never fires the effect when the deps array is the same.useEffectWithPrevDeps((prevDeps) => {}, [...deps])
: similar touseEffect
, but also provides previous deps to the effect function.useEffectOnce(() => {}, [...deps])
: similar touseEffect
, but fires only once.useLayoutEffectWithPrevDeps((prevDeps) => {}, [...deps])
:useLayoutEffect
version ofuseEffectWithPrevDeps
.[state, setState, stateRef] = useEnhancedState(initialState)
: similar touseState
, but also returns a ref whose value is always the lateststate
.[state, setState, stateRef] = useRefState(initialState)
: similar touseState
.stateRef
's value is set immediately and synchronously aftersetState
is called. Note:initialState
can not be a function.ref = useRefValue(value)
: similar touseEffectEvent
, get a ref whose value is always the latestvalue
.{value, setValue} = usePropState(initialState)
: similar touseState
, but the returned value is an object, not an array.scopeId = useScopeId(prefix?: string)
: get a function to generate scoped id.prefix
is the prefix of the id. The id is generated byscopeId(name?: string) = prefix + id + name
.id
is a SSR-statically random number generated byuseId()
.update = useUpdate(getValue)
: get a function to force re-render component.getValue
is a function to get the latest value to compare with the previous value. The latest passedgetValue
is always used (useReducer
specs).Type
OptionalArray
(type).useListData()
: utility to load list data. Usage:
const {list, hasPrev, hasNext, loadPrev, loadNext} = useListData({
initial: {
list, // default list
hasNext, // default hasNext
hasPrev, // default hasPrev
},
async load({before, after}) { // function to load data
return {
records, // new records
hasMore, // whether there are more records
}
}
})