misc_pterodactyl-panel/resources/scripts/plugins/useDeepMemo.ts

13 lines
330 B
TypeScript
Raw Normal View History

2020-03-29 21:19:17 +00:00
import { useRef } from 'react';
import isEqual from 'react-fast-compare';
2020-03-29 21:19:17 +00:00
export const useDeepMemo = <T, K> (fn: () => T, key: K): T => {
const ref = useRef<{ key: K, value: T }>();
if (!ref.current || !isEqual(key, ref.current.key)) {
ref.current = { key, value: fn() };
}
return ref.current.value;
};