-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
88 lines (81 loc) · 2.57 KB
/
sw.js
File metadata and controls
88 lines (81 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const CACHE = "Base24";
const precacheFiles = ["/css/main.css","/css/settings.css","/fonts/Fascinate.woff2","/fonts/Kavivanar.woff2","/images/page/browsers/browser.png","/images/page/browsers/chrome.png","/images/page/browsers/chromium.png","/images/page/browsers/firefox.png","/images/page/browsers/ie.png","/images/page/browsers/ms-edge.png","/images/page/browsers/safari.png","/images/page/browsers/tor.png","/images/page/name.png","/scripts/navbar.js","/scripts/script.js","/scripts/settings.js","/index.html","/styles.html","/builder.html","/readme.html",
];
/**
* Check to see if the request is in the cache
*
* Return response
*
* If not in the cache, then return
*
* @param {RequestInfo} request
* @return {Promise} promise
*/
function fromCache(request) {
return caches.open(CACHE).then(function(cache) {
return cache.match(request).then(function(matching) {
if (!matching || matching.status === 404) {
return Promise.reject("no-match");
}
return matching;
});
});
}
/**
* Update the cache
* @param {RequestInfo} request
* @param {Response} response
* @return {Promise} promise
*/
function updateCache(request, response) {
return caches.open(CACHE).then(function(cache) {
return cache.put(request, response);
});
}
self.addEventListener("install", function(event) {
self.skipWaiting();
event.waitUntil(
caches.open(CACHE).then(function(cache) {
return cache.addAll(precacheFiles);
}),
);
});
// Allow sw to control of current page
self.addEventListener("activate", function(event) {
event.waitUntil(self.clients.claim());
});
// If any fetch fails, it will look for the request in the cache and serve it
// from there first
self.addEventListener("fetch", function(event) {
if (event.request.method !== "GET") {
return;
}
event.respondWith(
fromCache(event.request).then(
function(response) {
// The response was found in the cache so we respond with it and
// update the entry
// This is where we call the server to get the newest version of the
// file to use the next time we show view
event.waitUntil(
fetch(event.request).then(function(response) {
return updateCache(event.request, response);
}),
);
return response;
},
function() {
// The response was not found in the cache so we look for it on
// the server
return fetch(event.request)
.then(function(response) {
// If request was success, add or update it in the cache
event.waitUntil(updateCache(event.request, response.clone()));
return response;
})
.catch(function(error) {
});
},
),
);
});