mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-07-20 17:45:57 -04:00
refactor more hooks
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { useEffect } from "react";
|
||||
import useFirstMountState from "./useFirstMountState";
|
||||
|
||||
// identical to `useEffect()` but ignores the first invocation
|
||||
const useUpdateEffect: typeof useEffect = (effect, deps) => {
|
||||
const isFirstMount = useFirstMountState();
|
||||
|
||||
useEffect(() => {
|
||||
if (!isFirstMount) {
|
||||
return effect();
|
||||
}
|
||||
}, deps); // eslint-disable-line react-hooks/exhaustive-deps
|
||||
};
|
||||
|
||||
export default useUpdateEffect;
|
||||
Reference in New Issue
Block a user