mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
29 lines
807 B
TypeScript
29 lines
807 B
TypeScript
import usePrevious from './usePrevious';
|
|
import { useEffect } from 'react';
|
|
|
|
export default function useEffectDebugger(effectHook: any, dependencies: any, dependencyNames: any[] = []) {
|
|
const previousDeps = usePrevious(dependencies, []);
|
|
|
|
const changedDeps = dependencies.reduce((accum: any, dependency: any, index: any) => {
|
|
if (dependency !== previousDeps[index]) {
|
|
const keyName = dependencyNames[index] || index;
|
|
return {
|
|
...accum,
|
|
[keyName]: {
|
|
before: previousDeps[index],
|
|
after: dependency,
|
|
},
|
|
};
|
|
}
|
|
|
|
return accum;
|
|
}, {});
|
|
|
|
if (Object.keys(changedDeps).length) {
|
|
console.log('[use-effet-debugger] ', changedDeps);
|
|
}
|
|
|
|
// eslint-disable-next-line @seiyab/react-hooks/exhaustive-deps -- Old code before rule was applied
|
|
useEffect(effectHook, dependencies);
|
|
}
|