59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
PrefetchCacheEntryStatus: null,
|
|
getPrefetchEntryCacheStatus: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
PrefetchCacheEntryStatus: function() {
|
|
return PrefetchCacheEntryStatus;
|
|
},
|
|
getPrefetchEntryCacheStatus: function() {
|
|
return getPrefetchEntryCacheStatus;
|
|
}
|
|
});
|
|
const FIVE_MINUTES = 5 * 60 * 1000;
|
|
const THIRTY_SECONDS = 30 * 1000;
|
|
var PrefetchCacheEntryStatus;
|
|
(function(PrefetchCacheEntryStatus) {
|
|
PrefetchCacheEntryStatus["fresh"] = "fresh";
|
|
PrefetchCacheEntryStatus["reusable"] = "reusable";
|
|
PrefetchCacheEntryStatus["expired"] = "expired";
|
|
PrefetchCacheEntryStatus["stale"] = "stale";
|
|
})(PrefetchCacheEntryStatus || (PrefetchCacheEntryStatus = {}));
|
|
function getPrefetchEntryCacheStatus(param) {
|
|
let { kind, prefetchTime, lastUsedTime } = param;
|
|
// if the cache entry was prefetched or read less than 30s ago, then we want to re-use it
|
|
if (Date.now() < (lastUsedTime != null ? lastUsedTime : prefetchTime) + THIRTY_SECONDS) {
|
|
return lastUsedTime ? "reusable" : "fresh";
|
|
}
|
|
// if the cache entry was prefetched less than 5 mins ago, then we want to re-use only the loading state
|
|
if (kind === "auto") {
|
|
if (Date.now() < prefetchTime + FIVE_MINUTES) {
|
|
return "stale";
|
|
}
|
|
}
|
|
// if the cache entry was prefetched less than 5 mins ago and was a "full" prefetch, then we want to re-use it "full
|
|
if (kind === "full") {
|
|
if (Date.now() < prefetchTime + FIVE_MINUTES) {
|
|
return "reusable";
|
|
}
|
|
}
|
|
return "expired";
|
|
}
|
|
|
|
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=get-prefetch-cache-entry-status.js.map
|