Initial boiler plate project
This commit is contained in:
32
node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js
generated
vendored
Normal file
32
node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "invalidateCacheByRouterState", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return invalidateCacheByRouterState;
|
||||
}
|
||||
});
|
||||
const _createroutercachekey = require("./create-router-cache-key");
|
||||
function invalidateCacheByRouterState(newCache, existingCache, routerState) {
|
||||
// Remove segment that we got data for so that it is filled in during rendering of rsc.
|
||||
for(const key in routerState[1]){
|
||||
const segmentForParallelRoute = routerState[1][key][0];
|
||||
const cacheKey = (0, _createroutercachekey.createRouterCacheKey)(segmentForParallelRoute);
|
||||
const existingParallelRoutesCacheNode = existingCache.parallelRoutes.get(key);
|
||||
if (existingParallelRoutesCacheNode) {
|
||||
let parallelRouteCacheNode = new Map(existingParallelRoutesCacheNode);
|
||||
parallelRouteCacheNode.delete(cacheKey);
|
||||
newCache.parallelRoutes.set(key, parallelRouteCacheNode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=invalidate-cache-by-router-state.js.map
|
||||
Reference in New Issue
Block a user