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.
27 lines
679 B
TypeScript
27 lines
679 B
TypeScript
import { useRef } from 'react';
|
|
import type { useEffect, useLayoutEffect } from 'react';
|
|
|
|
// Reference: https://github.com/alibaba/hooks/blob/master/packages/hooks/src/createUpdateEffect/index.ts
|
|
|
|
type EffectHookType = typeof useEffect | typeof useLayoutEffect;
|
|
|
|
export const createUpdateEffect: (hook: EffectHookType) => EffectHookType =
|
|
(hook) => (effect, deps) => {
|
|
const isMounted = useRef(false);
|
|
|
|
// for react-refresh
|
|
hook(() => {
|
|
return () => {
|
|
isMounted.current = false;
|
|
};
|
|
}, []);
|
|
|
|
hook(() => {
|
|
if (!isMounted.current) {
|
|
isMounted.current = true;
|
|
} else {
|
|
return effect();
|
|
}
|
|
}, deps);
|
|
};
|