2018-10-20 20:17:13 +00:00
|
|
|
//This is the service worker with the combined offline experience (Offline page + Offline copy of pages)
|
|
|
|
|
|
|
|
//Install stage sets up the offline page in the cache and opens a new cache
|
|
|
|
self.addEventListener('install', function(event) {
|
|
|
|
event.waitUntil(preLoad());
|
|
|
|
});
|
|
|
|
|
|
|
|
var preLoad = function(){
|
|
|
|
console.log('[PWA Builder] Install Event processing');
|
|
|
|
return caches.open('pwabuilder-offline').then(function(cache) {
|
|
|
|
console.log('[PWA Builder] Cached index and offline page during Install');
|
2018-11-13 15:44:45 +00:00
|
|
|
return cache.addAll(['/blog/', '/blog', '/', '/contact', '/resume']);
|
2018-10-20 20:17:13 +00:00
|
|
|
});
|
2018-11-13 15:44:45 +00:00
|
|
|
};
|
2018-10-20 20:17:13 +00:00
|
|
|
|
|
|
|
self.addEventListener('fetch', function(event) {
|
|
|
|
console.log('[PWA Builder] The service worker is serving the asset.');
|
|
|
|
event.respondWith(checkResponse(event.request).catch(function() {
|
2018-11-13 15:44:45 +00:00
|
|
|
return returnFromCache(event.request);
|
|
|
|
}));
|
2018-10-20 20:17:13 +00:00
|
|
|
event.waitUntil(addToCache(event.request));
|
|
|
|
});
|
|
|
|
|
|
|
|
var checkResponse = function(request){
|
|
|
|
return new Promise(function(fulfill, reject) {
|
|
|
|
fetch(request).then(function(response){
|
|
|
|
if(response.status !== 404) {
|
2018-11-13 15:44:45 +00:00
|
|
|
fulfill(response);
|
2018-10-20 20:17:13 +00:00
|
|
|
} else {
|
2018-11-13 15:44:45 +00:00
|
|
|
reject();
|
2018-10-20 20:17:13 +00:00
|
|
|
}
|
2018-11-13 15:44:45 +00:00
|
|
|
}, reject);
|
2018-10-20 20:17:13 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var addToCache = function(request){
|
|
|
|
return caches.open('pwabuilder-offline').then(function (cache) {
|
|
|
|
return fetch(request).then(function (response) {
|
2018-11-13 15:44:45 +00:00
|
|
|
console.log('[PWA Builder] add page to offline'+response.url);
|
2018-10-20 20:17:13 +00:00
|
|
|
return cache.put(request, response);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var returnFromCache = function(request){
|
|
|
|
return caches.open('pwabuilder-offline').then(function (cache) {
|
|
|
|
return cache.match(request).then(function (matching) {
|
|
|
|
if(!matching || matching.status == 404) {
|
2018-11-13 15:44:45 +00:00
|
|
|
return cache.match('offline.html');
|
2018-10-20 20:17:13 +00:00
|
|
|
} else {
|
2018-11-13 15:44:45 +00:00
|
|
|
return matching;
|
2018-10-20 20:17:13 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|