workbox-strategies
Advanced tools
Comparing version 3.2.0 to 3.3.0
this.workbox = this.workbox || {}; | ||
this.workbox.strategies = (function (logger_mjs,assert_mjs,cacheNames_mjs,cacheWrapper_mjs,fetchWrapper_mjs,getFriendlyURL_mjs) { | ||
'use strict'; | ||
'use strict'; | ||
try { | ||
self.workbox.v['workbox:strategies:3.2.0'] = 1; | ||
} catch (e) {} // eslint-disable-line | ||
try { | ||
self.workbox.v['workbox:strategies:3.3.0'] = 1; | ||
} catch (e) {} // eslint-disable-line | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
const getFriendlyURL = url => { | ||
const urlObj = new URL(url, location); | ||
if (urlObj.origin === location.origin) { | ||
return urlObj.pathname; | ||
} | ||
return urlObj.href; | ||
}; | ||
const getFriendlyURL = url => { | ||
const urlObj = new URL(url, location); | ||
if (urlObj.origin === location.origin) { | ||
return urlObj.pathname; | ||
} | ||
return urlObj.href; | ||
}; | ||
var messages = { | ||
strategyStart: (strategyName, request) => `Using ${strategyName} to ` + `respond to '${getFriendlyURL(request.url)}'`, | ||
printFinalResponse: response => { | ||
if (response) { | ||
logger_mjs.logger.groupCollapsed(`View the final response here.`); | ||
logger_mjs.logger.unprefixed.log(response); | ||
logger_mjs.logger.groupEnd(); | ||
var messages = { | ||
strategyStart: (strategyName, request) => `Using ${strategyName} to ` + `respond to '${getFriendlyURL(request.url)}'`, | ||
printFinalResponse: response => { | ||
if (response) { | ||
logger_mjs.logger.groupCollapsed(`View the final response here.`); | ||
logger_mjs.logger.unprefixed.log(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
} | ||
} | ||
}; | ||
}; | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* An implementation of a [cache-first]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-falling-back-to-network} | ||
* request strategy. | ||
* | ||
* A cache first strategy is useful for assets that have been revisioned, | ||
* such as URLs like `/styles/example.a8f5f1.css`, since they | ||
* can be cached for long periods of time. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
class CacheFirst { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {string} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* An implementation of a [cache-first]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-falling-back-to-network} | ||
* request strategy. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
* A cache first strategy is useful for assets that have been revisioned, | ||
* such as URLs like `/styles/example.a8f5f1.css`, since they | ||
* can be cached for long periods of time. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
class CacheFirst { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {Array<Object>} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheFirst', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheFirst', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
} | ||
})(); | ||
} | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheFirst', | ||
funcName: 'makeRequest', | ||
paramName: 'request' | ||
}); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheFirst', | ||
funcName: 'makeRequest', | ||
paramName: 'request' | ||
}); | ||
} | ||
let response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
let response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
let error; | ||
if (!response) { | ||
{ | ||
logs.push(`No response found in the '${_this2._cacheName}' cache. ` + `Will respond with a network request.`); | ||
} | ||
try { | ||
response = yield _this2._getFromNetwork(request, event); | ||
} catch (err) { | ||
error = err; | ||
} | ||
let error; | ||
if (!response) { | ||
{ | ||
logs.push(`No response found in the '${_this2._cacheName}' cache. ` + `Will respond with a network request.`); | ||
{ | ||
if (response) { | ||
logs.push(`Got response from network.`); | ||
} else { | ||
logs.push(`Unable to get a response from the network.`); | ||
} | ||
} | ||
} else { | ||
{ | ||
logs.push(`Found a cached response in the '${_this2._cacheName}' cache.`); | ||
} | ||
} | ||
try { | ||
response = yield _this2._getFromNetwork(request, event); | ||
} catch (err) { | ||
error = err; | ||
} | ||
{ | ||
if (response) { | ||
logs.push(`Got response from network.`); | ||
} else { | ||
logs.push(`Unable to get a response from the network.`); | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('CacheFirst', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
} else { | ||
{ | ||
logs.push(`Found a cached response in the '${_this2._cacheName}' cache.`); | ||
} | ||
} | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('CacheFirst', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
if (error) { | ||
// Don't swallow error as we'll want it to throw and enable catch | ||
// handlers in router. | ||
throw error; | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
if (error) { | ||
// Don't swallow error as we'll want it to throw and enable catch | ||
// handlers in router. | ||
throw error; | ||
} | ||
return response; | ||
})(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
/** | ||
* Handles the network and cache part of CacheFirst. | ||
* | ||
* @param {Request} request | ||
* @param {FetchEvent} [event] | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getFromNetwork(request, event) { | ||
var _this3 = this; | ||
/** | ||
* Handles the network and cache part of CacheFirst. | ||
* | ||
* @param {Request} request | ||
* @param {FetchEvent} [event] | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getFromNetwork(request, event) { | ||
var _this3 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this3._fetchOptions, _this3._plugins); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this3._fetchOptions, _this3._plugins); | ||
// Keep the service worker while we put the request to the cache | ||
const responseClone = response.clone(); | ||
const cachePutPromise = cacheWrapper_mjs.cacheWrapper.put(_this3._cacheName, request, responseClone, _this3._plugins); | ||
// Keep the service worker while we put the request to the cache | ||
const responseClone = response.clone(); | ||
const cachePutPromise = cacheWrapper_mjs.cacheWrapper.put(_this3._cacheName, request, responseClone, _this3._plugins); | ||
if (event) { | ||
try { | ||
event.waitUntil(cachePutPromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
if (event) { | ||
try { | ||
event.waitUntil(cachePutPromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
} | ||
} | ||
} | ||
} | ||
return response; | ||
})(); | ||
return response; | ||
})(); | ||
} | ||
} | ||
} | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* An implementation of a | ||
* [cache-only]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-only} | ||
* request strategy. | ||
* | ||
* This class is useful if you want to take advantage of any [Workbox plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
class CacheOnly { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {string} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* An implementation of a | ||
* [cache-only]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#cache-only} | ||
* request strategy. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
* This class is useful if you want to take advantage of any [Workbox plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
class CacheOnly { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {Array<Object>} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
} | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheOnly', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheOnly', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheOnly', | ||
funcName: 'makeRequest', | ||
paramName: 'request' | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
} | ||
})(); | ||
} | ||
const response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('CacheOnly', request)); | ||
if (response) { | ||
logger_mjs.logger.log(`Found a cached response in the '${_this2._cacheName}'` + ` cache.`); | ||
messages.printFinalResponse(response); | ||
} else { | ||
logger_mjs.logger.log(`No response found in the '${_this2._cacheName}' cache.`); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'CacheOnly', | ||
funcName: 'makeRequest', | ||
paramName: 'request' | ||
}); | ||
} | ||
/* | ||
Copyright 2016 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
const response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('CacheOnly', request)); | ||
if (response) { | ||
logger_mjs.logger.log(`Found a cached response in the '${_this2._cacheName}'` + ` cache.`); | ||
messages.printFinalResponse(response); | ||
} else { | ||
logger_mjs.logger.log(`No response found in the '${_this2._cacheName}' cache.`); | ||
} | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
var cacheOkAndOpaquePlugin = { | ||
/** | ||
* Return return a response (i.e. allow caching) if the | ||
* response is ok (i.e. 200) or is opaque. | ||
* | ||
* @param {Object} input | ||
* @param {Response} input.response | ||
* @return {Response|null} | ||
* | ||
* @private | ||
*/ | ||
cacheWillUpdate: ({ response }) => { | ||
if (response.ok || response.status === 0) { | ||
return response; | ||
return response; | ||
})(); | ||
} | ||
return null; | ||
} | ||
}; | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2016 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* An implementation of a | ||
* [network first]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#network-falling-back-to-cache} | ||
* request strategy. | ||
* | ||
* By default, this strategy will cache responses with a 200 status code as | ||
* well as [opaque responses]{@link https://developers.google.com/web/tools/workbox/guides/handle-third-party-requests}. | ||
* Opaque responses are are cross-origin requests where the response doesn't | ||
* support [CORS]{@link https://enable-cors.org/}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
class NetworkFirst { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {string} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
* @param {number} options.networkTimeoutSeconds If set, any network requests | ||
* that fail to respond within the timeout will fallback to the cache. | ||
* | ||
* This option can be used to combat | ||
* "[lie-fi]{@link https://developers.google.com/web/fundamentals/performance/poor-connectivity/#lie-fi}" | ||
* scenarios. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
if (options.plugins) { | ||
let isUsingCacheWillUpdate = options.plugins.some(plugin => !!plugin.cacheWillUpdate); | ||
this._plugins = isUsingCacheWillUpdate ? options.plugins : [cacheOkAndOpaquePlugin, ...options.plugins]; | ||
} else { | ||
// No plugins passed in, use the default plugin. | ||
this._plugins = [cacheOkAndOpaquePlugin]; | ||
} | ||
this._networkTimeoutSeconds = options.networkTimeoutSeconds; | ||
{ | ||
if (this._networkTimeoutSeconds) { | ||
assert_mjs.assert.isType(this._networkTimeoutSeconds, 'number', { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'constructor', | ||
paramName: 'networkTimeoutSeconds' | ||
}); | ||
var cacheOkAndOpaquePlugin = { | ||
/** | ||
* Return return a response (i.e. allow caching) if the | ||
* response is ok (i.e. 200) or is opaque. | ||
* | ||
* @param {Object} input | ||
* @param {Response} input.response | ||
* @return {Response|null} | ||
* | ||
* @private | ||
*/ | ||
cacheWillUpdate: ({ response }) => { | ||
if (response.ok || response.status === 0) { | ||
return response; | ||
} | ||
return null; | ||
} | ||
}; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* An implementation of a | ||
* [network first]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#network-falling-back-to-cache} | ||
* request strategy. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* By default, this strategy will cache responses with a 200 status code as | ||
* well as [opaque responses]{@link https://developers.google.com/web/tools/workbox/guides/handle-third-party-requests}. | ||
* Opaque responses are are cross-origin requests where the response doesn't | ||
* support [CORS]{@link https://enable-cors.org/}. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
* @memberof workbox.strategies | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
class NetworkFirst { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {Array<Object>} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
* @param {number} options.networkTimeoutSeconds If set, any network requests | ||
* that fail to respond within the timeout will fallback to the cache. | ||
* | ||
* This option can be used to combat | ||
* "[lie-fi]{@link https://developers.google.com/web/fundamentals/performance/poor-connectivity/#lie-fi}" | ||
* scenarios. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
if (options.plugins) { | ||
let isUsingCacheWillUpdate = options.plugins.some(plugin => !!plugin.cacheWillUpdate); | ||
this._plugins = isUsingCacheWillUpdate ? options.plugins : [cacheOkAndOpaquePlugin, ...options.plugins]; | ||
} else { | ||
// No plugins passed in, use the default plugin. | ||
this._plugins = [cacheOkAndOpaquePlugin]; | ||
} | ||
this._networkTimeoutSeconds = options.networkTimeoutSeconds; | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'handle', | ||
paramName: 'makeRequest' | ||
}); | ||
if (this._networkTimeoutSeconds) { | ||
assert_mjs.assert.isType(this._networkTimeoutSeconds, 'number', { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'constructor', | ||
paramName: 'networkTimeoutSeconds' | ||
}); | ||
} | ||
} | ||
const promises = []; | ||
let timeoutId; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
if (_this2._networkTimeoutSeconds) { | ||
const { id, promise } = _this2._getTimeoutPromise(request, logs); | ||
timeoutId = id; | ||
promises.push(promise); | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
const networkPromise = _this2._getNetworkPromise(timeoutId, event, request, logs); | ||
promises.push(networkPromise); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
// Promise.race() will resolve as soon as the first promise resolves. | ||
let response = yield Promise.race(promises); | ||
// If Promise.race() resolved with null, it might be due to a network | ||
// timeout + a cache miss. If that were to happen, we'd rather wait until | ||
// the networkPromise resolves instead of returning null. | ||
// Note that it's fine to await an already-resolved promise, so we don't | ||
// have to check to see if it's still "in flight". | ||
if (!response) { | ||
response = yield networkPromise; | ||
} | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('NetworkFirst', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkFirst', | ||
funcName: 'handle', | ||
paramName: 'makeRequest' | ||
}); | ||
} | ||
/** | ||
* @param {Request} request | ||
* @param {Array} logs A reference to the logs array | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getTimeoutPromise(request, logs) { | ||
var _this3 = this; | ||
const promises = []; | ||
let timeoutId; | ||
let timeoutId; | ||
const timeoutPromise = new Promise(resolve => { | ||
const onNetworkTimeout = (() => { | ||
var _ref = babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
logs.push(`Timing out the network response at ` + `${_this3._networkTimeoutSeconds} seconds.`); | ||
if (_this2._networkTimeoutSeconds) { | ||
const { id, promise } = _this2._getTimeoutPromise(request, logs); | ||
timeoutId = id; | ||
promises.push(promise); | ||
} | ||
const networkPromise = _this2._getNetworkPromise(timeoutId, event, request, logs); | ||
promises.push(networkPromise); | ||
// Promise.race() will resolve as soon as the first promise resolves. | ||
let response = yield Promise.race(promises); | ||
// If Promise.race() resolved with null, it might be due to a network | ||
// timeout + a cache miss. If that were to happen, we'd rather wait until | ||
// the networkPromise resolves instead of returning null. | ||
// Note that it's fine to await an already-resolved promise, so we don't | ||
// have to check to see if it's still "in flight". | ||
if (!response) { | ||
response = yield networkPromise; | ||
} | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('NetworkFirst', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
resolve((yield _this3._respondFromCache(request))); | ||
}); | ||
return function onNetworkTimeout() { | ||
return _ref.apply(this, arguments); | ||
}; | ||
return response; | ||
})(); | ||
} | ||
timeoutId = setTimeout(onNetworkTimeout, this._networkTimeoutSeconds * 1000); | ||
}); | ||
/** | ||
* @param {Request} request | ||
* @param {Array} logs A reference to the logs array | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getTimeoutPromise(request, logs) { | ||
var _this3 = this; | ||
return { | ||
promise: timeoutPromise, | ||
id: timeoutId | ||
}; | ||
} | ||
let timeoutId; | ||
const timeoutPromise = new Promise(resolve => { | ||
const onNetworkTimeout = (() => { | ||
var _ref = babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
logs.push(`Timing out the network response at ` + `${_this3._networkTimeoutSeconds} seconds.`); | ||
} | ||
/** | ||
* @param {number} timeoutId | ||
* @param {FetchEvent|null} event | ||
* @param {Request} request | ||
* @param {Array} logs A reference to the logs Array. | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getNetworkPromise(timeoutId, event, request, logs) { | ||
var _this4 = this; | ||
resolve((yield _this3._respondFromCache(request))); | ||
}); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
let error; | ||
let response; | ||
try { | ||
response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this4._fetchOptions, _this4._plugins); | ||
} catch (err) { | ||
error = err; | ||
} | ||
return function onNetworkTimeout() { | ||
return _ref.apply(this, arguments); | ||
}; | ||
})(); | ||
if (timeoutId) { | ||
clearTimeout(timeoutId); | ||
} | ||
timeoutId = setTimeout(onNetworkTimeout, this._networkTimeoutSeconds * 1000); | ||
}); | ||
{ | ||
if (response) { | ||
logs.push(`Got response from network.`); | ||
} else { | ||
logs.push(`Unable to get a response from the network. Will respond ` + `with a cached response.`); | ||
return { | ||
promise: timeoutPromise, | ||
id: timeoutId | ||
}; | ||
} | ||
/** | ||
* @param {number} timeoutId | ||
* @param {FetchEvent|null} event | ||
* @param {Request} request | ||
* @param {Array} logs A reference to the logs Array. | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getNetworkPromise(timeoutId, event, request, logs) { | ||
var _this4 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
let error; | ||
let response; | ||
try { | ||
response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this4._fetchOptions, _this4._plugins); | ||
} catch (err) { | ||
error = err; | ||
} | ||
} | ||
if (error || !response) { | ||
response = yield _this4._respondFromCache(request); | ||
if (timeoutId) { | ||
clearTimeout(timeoutId); | ||
} | ||
{ | ||
if (response) { | ||
logs.push(`Found a cached response in the '${_this4._cacheName}'` + ` cache.`); | ||
logs.push(`Got response from network.`); | ||
} else { | ||
logs.push(`No response found in the '${_this4._cacheName}' cache.`); | ||
logs.push(`Unable to get a response from the network. Will respond ` + `with a cached response.`); | ||
} | ||
} | ||
} else { | ||
// Keep the service worker alive while we put the request in the cache | ||
const responseClone = response.clone(); | ||
const cachePut = cacheWrapper_mjs.cacheWrapper.put(_this4._cacheName, request, responseClone, _this4._plugins); | ||
if (event) { | ||
try { | ||
// The event has been responded to so we can keep the SW alive to | ||
// respond to the request | ||
event.waitUntil(cachePut); | ||
} catch (err) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
if (error || !response) { | ||
response = yield _this4._respondFromCache(request); | ||
{ | ||
if (response) { | ||
logs.push(`Found a cached response in the '${_this4._cacheName}'` + ` cache.`); | ||
} else { | ||
logs.push(`No response found in the '${_this4._cacheName}' cache.`); | ||
} | ||
} | ||
} else { | ||
// Keep the service worker alive while we put the request in the cache | ||
const responseClone = response.clone(); | ||
const cachePut = cacheWrapper_mjs.cacheWrapper.put(_this4._cacheName, request, responseClone, _this4._plugins); | ||
if (event) { | ||
try { | ||
// The event has been responded to so we can keep the SW alive to | ||
// respond to the request | ||
event.waitUntil(cachePut); | ||
} catch (err) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return response; | ||
})(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
/** | ||
* Used if the network timeouts or fails to make the request. | ||
* | ||
* @param {Request} request The fetchEvent request to match in the cache | ||
* @return {Promise<Object>} | ||
* | ||
* @private | ||
*/ | ||
_respondFromCache(request) { | ||
return cacheWrapper_mjs.cacheWrapper.match(this._cacheName, request, null, this._plugins); | ||
/** | ||
* Used if the network timeouts or fails to make the request. | ||
* | ||
* @param {Request} request The fetchEvent request to match in the cache | ||
* @return {Promise<Object>} | ||
* | ||
* @private | ||
*/ | ||
_respondFromCache(request) { | ||
return cacheWrapper_mjs.cacheWrapper.match(this._cacheName, request, null, this._plugins); | ||
} | ||
} | ||
} | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* An implementation of a | ||
* [network-only]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#network-only} | ||
* request strategy. | ||
* | ||
* This class is useful if you want to take advantage of any [Workbox plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
class NetworkOnly { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {string} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* An implementation of a | ||
* [network-only]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#network-only} | ||
* request strategy. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
* This class is useful if you want to take advantage of any [Workbox plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
class NetworkOnly { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {Array<Object>} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkOnly', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkOnly', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkOnly', | ||
funcName: 'handle', | ||
paramName: 'request' | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
} | ||
})(); | ||
} | ||
let error; | ||
let response; | ||
try { | ||
response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this2._fetchOptions, _this2._plugins); | ||
} catch (err) { | ||
error = err; | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('NetworkOnly', request)); | ||
if (response) { | ||
logger_mjs.logger.log(`Got response from network.`); | ||
} else { | ||
logger_mjs.logger.log(`Unable to get a response from the network.`); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
// If there was an error thrown, re-throw it to ensure the Routers | ||
// catch handler is triggered. | ||
if (error) { | ||
throw error; | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'NetworkOnly', | ||
funcName: 'handle', | ||
paramName: 'request' | ||
}); | ||
} | ||
return response; | ||
})(); | ||
} | ||
} | ||
let error; | ||
let response; | ||
try { | ||
response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this2._fetchOptions, _this2._plugins); | ||
} catch (err) { | ||
error = err; | ||
} | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('NetworkOnly', request)); | ||
if (response) { | ||
logger_mjs.logger.log(`Got response from network.`); | ||
} else { | ||
logger_mjs.logger.log(`Unable to get a response from the network.`); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
// If there was an error thrown, re-throw it to ensure the Routers | ||
// catch handler is triggered. | ||
if (error) { | ||
throw error; | ||
} | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
return response; | ||
})(); | ||
} | ||
} | ||
/** | ||
* An implementation of a | ||
* [stale-while-revalidate]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#stale-while-revalidate} | ||
* request strategy. | ||
* | ||
* Resources are requested from both the cache and the network in parallel. | ||
* The strategy will respond with the cached version if available, otherwise | ||
* wait for the network response. The cache is updated with the network response | ||
* with each successful request. | ||
* | ||
* By default, this strategy will cache responses with a 200 status code as | ||
* well as [opaque responses]{@link https://developers.google.com/web/tools/workbox/guides/handle-third-party-requests}. | ||
* Opaque responses are are cross-origin requests where the response doesn't | ||
* support [CORS]{@link https://enable-cors.org/}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
class StaleWhileRevalidate { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {string} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
/* | ||
Copyright 2018 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
if (options.plugins) { | ||
let isUsingCacheWillUpdate = options.plugins.some(plugin => !!plugin.cacheWillUpdate); | ||
this._plugins = isUsingCacheWillUpdate ? options.plugins : [cacheOkAndOpaquePlugin, ...options.plugins]; | ||
} else { | ||
// No plugins passed in, use the default plugin. | ||
this._plugins = [cacheOkAndOpaquePlugin]; | ||
} | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* An implementation of a | ||
* [stale-while-revalidate]{@link https://developers.google.com/web/fundamentals/instant-and-offline/offline-cookbook/#stale-while-revalidate} | ||
* request strategy. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
* Resources are requested from both the cache and the network in parallel. | ||
* The strategy will respond with the cached version if available, otherwise | ||
* wait for the network response. The cache is updated with the network response | ||
* with each successful request. | ||
* | ||
* By default, this strategy will cache responses with a 200 status code as | ||
* well as [opaque responses]{@link https://developers.google.com/web/tools/workbox/guides/handle-third-party-requests}. | ||
* Opaque responses are are cross-origin requests where the response doesn't | ||
* support [CORS]{@link https://enable-cors.org/}. | ||
* | ||
* @memberof workbox.strategies | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
class StaleWhileRevalidate { | ||
/** | ||
* @param {Object} options | ||
* @param {string} options.cacheName Cache name to store and retrieve | ||
* requests. Defaults to cache names provided by | ||
* [workbox-core]{@link workbox.core.cacheNames}. | ||
* @param {Array<Object>} options.plugins [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins} | ||
* to use in conjunction with this caching strategy. | ||
* @param {Object} options.fetchOptions Values passed along to the | ||
* [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters) | ||
* of all fetch() requests made by this strategy. | ||
*/ | ||
constructor(options = {}) { | ||
this._cacheName = cacheNames_mjs.cacheNames.getRuntimeName(options.cacheName); | ||
this._plugins = options.plugins || []; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'StaleWhileRevalidate', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
if (options.plugins) { | ||
let isUsingCacheWillUpdate = options.plugins.some(plugin => !!plugin.cacheWillUpdate); | ||
this._plugins = isUsingCacheWillUpdate ? options.plugins : [cacheOkAndOpaquePlugin, ...options.plugins]; | ||
} else { | ||
// No plugins passed in, use the default plugin. | ||
this._plugins = [cacheOkAndOpaquePlugin]; | ||
} | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
})(); | ||
} | ||
this._fetchOptions = options.fetchOptions || null; | ||
} | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
/** | ||
* This method will perform a request strategy and follows an API that | ||
* will work with the | ||
* [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* @param {Object} input | ||
* @param {FetchEvent} input.event The fetch event to run this strategy | ||
* against. | ||
* @return {Promise<Response>} | ||
*/ | ||
handle({ event }) { | ||
var _this = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
{ | ||
assert_mjs.assert.isInstance(event, FetchEvent, { | ||
moduleName: 'workbox-strategies', | ||
className: 'StaleWhileRevalidate', | ||
funcName: 'handle', | ||
paramName: 'event' | ||
}); | ||
} | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
{ | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'StaleWhileRevalidate', | ||
funcName: 'handle', | ||
paramName: 'request' | ||
return _this.makeRequest({ | ||
event, | ||
request: event.request | ||
}); | ||
} | ||
})(); | ||
} | ||
const fetchAndCachePromise = _this2._getFromNetwork(request, event); | ||
/** | ||
* This method can be used to perform a make a standalone request outside the | ||
* context of the [Workbox Router]{@link workbox.routing.Router}. | ||
* | ||
* See "[Advanced Recipes](https://developers.google.com/web/tools/workbox/guides/advanced-recipes#make-requests)" | ||
* for more usage information. | ||
* | ||
* @param {Object} input | ||
* @param {Request|string} input.request Either a | ||
* [`Request`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Request} | ||
* object, or a string URL, corresponding to the request to be made. | ||
* @param {FetchEvent} [input.event] If provided, `event.waitUntil()` will be | ||
* called automatically to extend the service worker's lifetime. | ||
* @return {Promise<Response>} | ||
*/ | ||
makeRequest({ event, request }) { | ||
var _this2 = this; | ||
let response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const logs = []; | ||
if (response) { | ||
if (typeof request === 'string') { | ||
request = new Request(request); | ||
} | ||
{ | ||
logs.push(`Found a cached response in the '${_this2._cacheName}'` + ` cache. Will update with the network response in the background.`); | ||
assert_mjs.assert.isInstance(request, Request, { | ||
moduleName: 'workbox-strategies', | ||
className: 'StaleWhileRevalidate', | ||
funcName: 'handle', | ||
paramName: 'request' | ||
}); | ||
} | ||
if (event) { | ||
try { | ||
event.waitUntil(fetchAndCachePromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
const fetchAndCachePromise = _this2._getFromNetwork(request, event); | ||
let response = yield cacheWrapper_mjs.cacheWrapper.match(_this2._cacheName, request, null, _this2._plugins); | ||
if (response) { | ||
{ | ||
logs.push(`Found a cached response in the '${_this2._cacheName}'` + ` cache. Will update with the network response in the background.`); | ||
} | ||
if (event) { | ||
try { | ||
event.waitUntil(fetchAndCachePromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
} | ||
} | ||
} | ||
} else { | ||
{ | ||
logs.push(`No response found in the '${_this2._cacheName}' cache. ` + `Will wait for the network response.`); | ||
} | ||
response = yield fetchAndCachePromise; | ||
} | ||
} else { | ||
{ | ||
logs.push(`No response found in the '${_this2._cacheName}' cache. ` + `Will wait for the network response.`); | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('StaleWhileRevalidate', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
response = yield fetchAndCachePromise; | ||
} | ||
{ | ||
logger_mjs.logger.groupCollapsed(messages.strategyStart('StaleWhileRevalidate', request)); | ||
for (let log of logs) { | ||
logger_mjs.logger.log(log); | ||
} | ||
messages.printFinalResponse(response); | ||
logger_mjs.logger.groupEnd(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
return response; | ||
})(); | ||
} | ||
/** | ||
* @param {Request} request | ||
* @param {FetchEvent} [event] | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getFromNetwork(request, event) { | ||
var _this3 = this; | ||
/** | ||
* @param {Request} request | ||
* @param {FetchEvent} [event] | ||
* @return {Promise<Response>} | ||
* | ||
* @private | ||
*/ | ||
_getFromNetwork(request, event) { | ||
var _this3 = this; | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this3._fetchOptions, _this3._plugins); | ||
return babelHelpers.asyncToGenerator(function* () { | ||
const response = yield fetchWrapper_mjs.fetchWrapper.fetch(request, _this3._fetchOptions, _this3._plugins); | ||
const cachePutPromise = cacheWrapper_mjs.cacheWrapper.put(_this3._cacheName, request, response.clone(), _this3._plugins); | ||
const cachePutPromise = cacheWrapper_mjs.cacheWrapper.put(_this3._cacheName, request, response.clone(), _this3._plugins); | ||
if (event) { | ||
try { | ||
event.waitUntil(cachePutPromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
if (event) { | ||
try { | ||
event.waitUntil(cachePutPromise); | ||
} catch (error) { | ||
{ | ||
logger_mjs.logger.warn(`Unable to ensure service worker stays alive when ` + `updating cache for '${getFriendlyURL_mjs.getFriendlyURL(event.request.url)}'.`); | ||
} | ||
} | ||
} | ||
} | ||
return response; | ||
})(); | ||
return response; | ||
})(); | ||
} | ||
} | ||
} | ||
/* | ||
Copyright 2017 Google Inc. | ||
/* | ||
Copyright 2017 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
var publicAPI = /*#__PURE__*/Object.freeze({ | ||
CacheFirst: CacheFirst, | ||
CacheOnly: CacheOnly, | ||
NetworkFirst: NetworkFirst, | ||
NetworkOnly: NetworkOnly, | ||
StaleWhileRevalidate: StaleWhileRevalidate | ||
}); | ||
var publicAPI = Object.freeze({ | ||
CacheFirst: CacheFirst, | ||
CacheOnly: CacheOnly, | ||
NetworkFirst: NetworkFirst, | ||
NetworkOnly: NetworkOnly, | ||
StaleWhileRevalidate: StaleWhileRevalidate | ||
}); | ||
/* | ||
Copyright 2016 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
/* | ||
Copyright 2016 Google Inc. All Rights Reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
/** | ||
* @function workbox.strategies.cacheFirst | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.cacheFirst | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.cacheOnly | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.cacheOnly | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.networkFirst | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.networkFirst | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.networkOnly | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.networkOnly | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.staleWhileRevalidate | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
/** | ||
* @function workbox.strategies.staleWhileRevalidate | ||
* @param {workbox.strategies.StrategyOptions} options | ||
*/ | ||
const mapping = { | ||
cacheFirst: CacheFirst, | ||
cacheOnly: CacheOnly, | ||
networkFirst: NetworkFirst, | ||
networkOnly: NetworkOnly, | ||
staleWhileRevalidate: StaleWhileRevalidate | ||
}; | ||
const mapping = { | ||
cacheFirst: CacheFirst, | ||
cacheOnly: CacheOnly, | ||
networkFirst: NetworkFirst, | ||
networkOnly: NetworkOnly, | ||
staleWhileRevalidate: StaleWhileRevalidate | ||
}; | ||
const defaultExport = {}; | ||
Object.keys(mapping).forEach(keyName => { | ||
defaultExport[keyName] = (options = {}) => { | ||
const StrategyClass = mapping[keyName]; | ||
return new StrategyClass(Object.assign(options)); | ||
}; | ||
}); | ||
const defaultExport = {}; | ||
Object.keys(mapping).forEach(keyName => { | ||
defaultExport[keyName] = (options = {}) => { | ||
const StrategyClass = mapping[keyName]; | ||
return new StrategyClass(Object.assign(options)); | ||
}; | ||
}); | ||
/* | ||
Copyright 2017 Google Inc. | ||
/* | ||
Copyright 2017 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
const finalExport = Object.assign(defaultExport, publicAPI); | ||
const finalExport = Object.assign(defaultExport, publicAPI); | ||
return finalExport; | ||
return finalExport; | ||
}(workbox.core._private,workbox.core._private,workbox.core._private,workbox.core._private,workbox.core._private,workbox.core._private)); | ||
//# sourceMappingURL=workbox-strategies.dev.js.map |
@@ -1,3 +0,3 @@ | ||
this.workbox=this.workbox||{},this.workbox.strategies=function(e,t,r){"use strict";try{self.workbox.v["workbox:strategies:3.2.0"]=1}catch(e){}class n{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){"string"==typeof r&&(r=new Request(r));let s,i=yield t.cacheWrapper.match(n.e,r,null,n.t);if(!i)try{i=yield n.n(r,e)}catch(e){s=e}if(s)throw s;return i})()}n(e,n){var s=this;return babelHelpers.asyncToGenerator(function*(){const i=yield r.fetchWrapper.fetch(e,s.r,s.t),l=i.clone(),u=t.cacheWrapper.put(s.e,e,l,s.t);if(n)try{n.waitUntil(u)}catch(e){}return i})()}}class s{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[]}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){return"string"==typeof r&&(r=new Request(r)),yield t.cacheWrapper.match(n.e,r,null,n.t)})()}}var i={cacheWillUpdate:({response:e})=>e.ok||0===e.status?e:null};class l{constructor(t={}){if(this.e=e.cacheNames.getRuntimeName(t.cacheName),t.plugins){let e=t.plugins.some(e=>!!e.cacheWillUpdate);this.t=e?t.plugins:[i,...t.plugins]}else this.t=[i];this.s=t.networkTimeoutSeconds,this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:t}){var r=this;return babelHelpers.asyncToGenerator(function*(){const n=[];"string"==typeof t&&(t=new Request(t));const s=[];let i;if(r.s){const{id:e,promise:l}=r.i(t,n);i=e,s.push(l)}const l=r.l(i,e,t,n);s.push(l);let u=yield Promise.race(s);return u||(u=yield l),u})()}i(e,t){var r=this;let n;var s;return{promise:new Promise(t=>{const i=(s=babelHelpers.asyncToGenerator(function*(){t(yield r.u(e))}),function(){return s.apply(this,arguments)});n=setTimeout(i,1e3*this.s)}),id:n}}l(e,n,s,i){var l=this;return babelHelpers.asyncToGenerator(function*(){let i,u;try{u=yield r.fetchWrapper.fetch(s,l.r,l.t)}catch(e){i=e}if(e&&clearTimeout(e),i||!u)u=yield l.u(s);else{const e=u.clone(),r=t.cacheWrapper.put(l.e,s,e,l.t);if(n)try{n.waitUntil(r)}catch(e){}}return u})()}u(e){return t.cacheWrapper.match(this.e,e,null,this.t)}}class u{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:t}){var n=this;return babelHelpers.asyncToGenerator(function*(){let e,s;"string"==typeof t&&(t=new Request(t));try{s=yield r.fetchWrapper.fetch(t,n.r,n.t)}catch(t){e=t}if(e)throw e;return s})()}}class c{constructor(t={}){if(this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],t.plugins){let e=t.plugins.some(e=>!!e.cacheWillUpdate);this.t=e?t.plugins:[i,...t.plugins]}else this.t=[i];this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){"string"==typeof r&&(r=new Request(r));const s=n.n(r,e);let i=yield t.cacheWrapper.match(n.e,r,null,n.t);if(i){if(e)try{e.waitUntil(s)}catch(e){}}else i=yield s;return i})()}n(e,n){var s=this;return babelHelpers.asyncToGenerator(function*(){const i=yield r.fetchWrapper.fetch(e,s.r,s.t),l=t.cacheWrapper.put(s.e,e,i.clone(),s.t);if(n)try{n.waitUntil(l)}catch(e){}return i})()}}var o=Object.freeze({CacheFirst:n,CacheOnly:s,NetworkFirst:l,NetworkOnly:u,StaleWhileRevalidate:c});const a={cacheFirst:n,cacheOnly:s,networkFirst:l,networkOnly:u,staleWhileRevalidate:c},h={};return Object.keys(a).forEach(e=>{h[e]=((t={})=>{return new(0,a[e])(Object.assign(t))})}),Object.assign(h,o)}(workbox.core._private,workbox.core._private,workbox.core._private); | ||
this.workbox=this.workbox||{},this.workbox.strategies=function(e,t,r){"use strict";try{self.workbox.v["workbox:strategies:3.3.0"]=1}catch(e){}class n{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){"string"==typeof r&&(r=new Request(r));let s,i=yield t.cacheWrapper.match(n.e,r,null,n.t);if(!i)try{i=yield n.n(r,e)}catch(e){s=e}if(s)throw s;return i})()}n(e,n){var s=this;return babelHelpers.asyncToGenerator(function*(){const i=yield r.fetchWrapper.fetch(e,s.r,s.t),l=i.clone(),u=t.cacheWrapper.put(s.e,e,l,s.t);if(n)try{n.waitUntil(u)}catch(e){}return i})()}}class s{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[]}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){return"string"==typeof r&&(r=new Request(r)),yield t.cacheWrapper.match(n.e,r,null,n.t)})()}}var i={cacheWillUpdate:({response:e})=>e.ok||0===e.status?e:null};class l{constructor(t={}){if(this.e=e.cacheNames.getRuntimeName(t.cacheName),t.plugins){let e=t.plugins.some(e=>!!e.cacheWillUpdate);this.t=e?t.plugins:[i,...t.plugins]}else this.t=[i];this.s=t.networkTimeoutSeconds,this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:t}){var r=this;return babelHelpers.asyncToGenerator(function*(){const n=[];"string"==typeof t&&(t=new Request(t));const s=[];let i;if(r.s){const{id:e,promise:l}=r.i(t,n);i=e,s.push(l)}const l=r.l(i,e,t,n);s.push(l);let u=yield Promise.race(s);return u||(u=yield l),u})()}i(e,t){var r=this;let n;var s;return{promise:new Promise(t=>{const i=(s=babelHelpers.asyncToGenerator(function*(){t(yield r.u(e))}),function(){return s.apply(this,arguments)});n=setTimeout(i,1e3*this.s)}),id:n}}l(e,n,s,i){var l=this;return babelHelpers.asyncToGenerator(function*(){let i,u;try{u=yield r.fetchWrapper.fetch(s,l.r,l.t)}catch(e){i=e}if(e&&clearTimeout(e),i||!u)u=yield l.u(s);else{const e=u.clone(),r=t.cacheWrapper.put(l.e,s,e,l.t);if(n)try{n.waitUntil(r)}catch(e){}}return u})()}u(e){return t.cacheWrapper.match(this.e,e,null,this.t)}}class u{constructor(t={}){this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:t}){var n=this;return babelHelpers.asyncToGenerator(function*(){let e,s;"string"==typeof t&&(t=new Request(t));try{s=yield r.fetchWrapper.fetch(t,n.r,n.t)}catch(t){e=t}if(e)throw e;return s})()}}class c{constructor(t={}){if(this.e=e.cacheNames.getRuntimeName(t.cacheName),this.t=t.plugins||[],t.plugins){let e=t.plugins.some(e=>!!e.cacheWillUpdate);this.t=e?t.plugins:[i,...t.plugins]}else this.t=[i];this.r=t.fetchOptions||null}handle({event:e}){var t=this;return babelHelpers.asyncToGenerator(function*(){return t.makeRequest({event:e,request:e.request})})()}makeRequest({event:e,request:r}){var n=this;return babelHelpers.asyncToGenerator(function*(){"string"==typeof r&&(r=new Request(r));const s=n.n(r,e);let i=yield t.cacheWrapper.match(n.e,r,null,n.t);if(i){if(e)try{e.waitUntil(s)}catch(e){}}else i=yield s;return i})()}n(e,n){var s=this;return babelHelpers.asyncToGenerator(function*(){const i=yield r.fetchWrapper.fetch(e,s.r,s.t),l=t.cacheWrapper.put(s.e,e,i.clone(),s.t);if(n)try{n.waitUntil(l)}catch(e){}return i})()}}var o=Object.freeze({CacheFirst:n,CacheOnly:s,NetworkFirst:l,NetworkOnly:u,StaleWhileRevalidate:c});const a={cacheFirst:n,cacheOnly:s,networkFirst:l,networkOnly:u,staleWhileRevalidate:c},h={};return Object.keys(a).forEach(e=>{h[e]=((t={})=>{return new(0,a[e])(Object.assign(t))})}),Object.assign(h,o)}(workbox.core._private,workbox.core._private,workbox.core._private); | ||
//# sourceMappingURL=workbox-strategies.prod.js.map |
{ | ||
"name": "workbox-strategies", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"license": "Apache-2.0", | ||
@@ -30,4 +30,4 @@ "author": "Google's Web DevRel Team", | ||
"dependencies": { | ||
"workbox-core": "^3.2.0" | ||
"workbox-core": "^3.3.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
125998
0
2
2031
Updatedworkbox-core@^3.3.0