45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
import { useStyleInject } from '../StyleContext';
|
|
import useHMR from './useHMR';
|
|
import { onBeforeUnmount, watch, watchEffect, shallowRef } from 'vue';
|
|
export default function useClientCache(prefix, keyPath, cacheFn, onCacheRemove) {
|
|
const styleContext = useStyleInject();
|
|
const fullPathStr = shallowRef('');
|
|
const res = shallowRef();
|
|
watchEffect(() => {
|
|
fullPathStr.value = [prefix, ...keyPath.value].join('%');
|
|
});
|
|
const HMRUpdate = useHMR();
|
|
const clearCache = pathStr => {
|
|
styleContext.value.cache.update(pathStr, prevCache => {
|
|
const [times = 0, cache] = prevCache || [];
|
|
const nextCount = times - 1;
|
|
if (nextCount === 0) {
|
|
onCacheRemove === null || onCacheRemove === void 0 ? void 0 : onCacheRemove(cache, false);
|
|
return null;
|
|
}
|
|
return [times - 1, cache];
|
|
});
|
|
};
|
|
watch(fullPathStr, (newStr, oldStr) => {
|
|
if (oldStr) clearCache(oldStr);
|
|
// Create cache
|
|
styleContext.value.cache.update(newStr, prevCache => {
|
|
const [times = 0, cache] = prevCache || [];
|
|
// HMR should always ignore cache since developer may change it
|
|
let tmpCache = cache;
|
|
if (process.env.NODE_ENV !== 'production' && cache && HMRUpdate) {
|
|
onCacheRemove === null || onCacheRemove === void 0 ? void 0 : onCacheRemove(tmpCache, HMRUpdate);
|
|
tmpCache = null;
|
|
}
|
|
const mergedCache = tmpCache || cacheFn();
|
|
return [times + 1, mergedCache];
|
|
});
|
|
res.value = styleContext.value.cache.get(fullPathStr.value)[1];
|
|
}, {
|
|
immediate: true
|
|
});
|
|
onBeforeUnmount(() => {
|
|
clearCache(fullPathStr.value);
|
|
});
|
|
return res;
|
|
} |