-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice-worker.js
71 lines (64 loc) · 2.31 KB
/
service-worker.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
importScripts('serviceworker-cache-polyfill.js');
self.oninstall = function(event) {
event.waitUntil(
caches.open('statics-v4').then(function(cache) {
return cache.addAll([
'inscope.html',
'page.js',
'nyancat.png',
'offline_icon.png',
'main.css']);
})
);
};
self.onactivate = function(event) {
event.waitUntil(caches.delete('statics-v3'));
};
self.onfetch = function(event) {
console.log('FETCHING: ' + event.request.url);
// 画像だったら nyancat の画像にさしかえる
if (event.request.url.toLowerCase().indexOf('.png') != -1) {
event.respondWith(caches.match('nyancat.png'));
return;
}
/*
// (1) キャッシュからだけ返す:
event.respondWith(caches.match(event.request));
*/
// (2) キャッシュになかったらネットワークにfallback:
event.respondWith(
caches.match(event.request).then(function(response) {
// return response || fetch(event.request);
return response || fetch(event.request).then(function(response) {
console.log('Fetched:', event.request, response);
return response;
});
})
);
/*
// (3) キャッシュになかったらネットワークにfallbackし、レスポンスを
// キャッシュする
event.respondWith(
caches.open('statics-v1').then(function(cache) {
return cache.match(event.request).then(function(response) {
console.log(event.request.url, response);
if (response)
return response;
fetch(event.request.clone()).then(function(response) {
if (response.status < 400) {
console.log('Fetched: ', event.request, response);
// HTTP response code がエラーじゃないときだけ fetch が返した
// レスポンス(のコピー)をキャッシュする。
// (no-CORS リクエストについてはレスポンスは opaque filtered response となり、
// .status は常に 0 にセットされるため、エラーレスポンスをキャッシュしてしまう
// 可能性があります
// https://fetch.spec.whatwg.org/#concept-filtered-response-opaque)
cache.put(event.request, response.clone());
}
return response;
});
})
})
);
*/
};