Initial boiler plate project
This commit is contained in:
49
node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js
generated
vendored
Normal file
49
node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
prefetchQueue: null,
|
||||
prefetchReducer: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
prefetchQueue: function() {
|
||||
return prefetchQueue;
|
||||
},
|
||||
prefetchReducer: function() {
|
||||
return prefetchReducer;
|
||||
}
|
||||
});
|
||||
const _approuterheaders = require("../../app-router-headers");
|
||||
const _promisequeue = require("../../promise-queue");
|
||||
const _prefetchcacheutils = require("../prefetch-cache-utils");
|
||||
const prefetchQueue = new _promisequeue.PromiseQueue(5);
|
||||
function prefetchReducer(state, action) {
|
||||
// let's prune the prefetch cache before we do anything else
|
||||
(0, _prefetchcacheutils.prunePrefetchCache)(state.prefetchCache);
|
||||
const { url } = action;
|
||||
url.searchParams.delete(_approuterheaders.NEXT_RSC_UNION_QUERY);
|
||||
(0, _prefetchcacheutils.getOrCreatePrefetchCacheEntry)({
|
||||
url,
|
||||
nextUrl: state.nextUrl,
|
||||
prefetchCache: state.prefetchCache,
|
||||
kind: action.kind,
|
||||
tree: state.tree,
|
||||
buildId: state.buildId
|
||||
});
|
||||
return state;
|
||||
}
|
||||
|
||||
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=prefetch-reducer.js.map
|
||||
Reference in New Issue
Block a user