-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
55 lines (43 loc) · 1.54 KB
/
sw.js
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
var CACHE_NAME = 'my-sw-v1';
var urlsToCache = [
'/images/mustang_frm_sw.jpg'
];
self.addEventListener('install', function(event) {
// Perform install steps
event.waitUntil(
caches.open(CACHE_NAME)
.then(function(cache) {
console.log('Opened cache');
return cache.addAll(urlsToCache);
})
);
});
// following code is from html5rock tutorial. I think this is one of the best way of writing SW code. see http://www.html5rocks.com/en/tutorials/service-worker/introduction/
self.addEventListener('fetch', function(event) {
//var requestURL = new URL(event.request.url);
//console.log ("requested URL path =" + requestURL.pathname);
event.respondWith(
caches.match(event.request)
.then(function(response) {
if (response) {
return response;
}
var fetchRequest = event.request.clone();
return fetch(fetchRequest).then(
function(response) {
if(!response || response.status !== 200 || response.type !== 'basic') {
return response;
}
var responseToCache = response.clone();
caches.open(CACHE_NAME)
.then(function(cache) {
//if (requestURL.pathname !='/images/mustang_frm_pushed.jpg' || requestURL.pathname !='/images/mustang_frm_nonpushed.jpg') {
cache.put(event.request, responseToCache);
//};
});
return response;
}
);
})
);
});