-
-
Save oirodolfo/980b2efec2fd5c3db4346c022da80c99 to your computer and use it in GitHub Desktop.
useGlobalMemo is a React hook that lets you share memoizations across an entire app using a unique key.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cache = {} | |
export default function useGlobalMemo (key, fn, deps) { | |
if (!cache[key]) { | |
cache[key] = { | |
subs: 0, | |
deps, | |
value: fn(), | |
} | |
} else { | |
const oldDeps = cache[key].deps | |
if (oldDeps.length !== deps || oldDeps.some((d, i) => deps[i] !== d)) { | |
cache[key] = { | |
deps, | |
value: fn() | |
} | |
} | |
} | |
React.useEffect(() => { | |
cache[key].subs += 1 | |
return () => { | |
cache[key].subs -= 1 | |
if (!cache[key].subs) { | |
delete cache[key] | |
} | |
} | |
}, []) | |
return cache[key].value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment