forked from donmccurdy/three-gltf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
47 lines (43 loc) · 1.35 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
var CACHE_NAME = "VRM-Viewer-1.1.1.4";
var urlsToCache = [
"https://vrm-viewer.yukimochi.io/",
"https://vrm-viewer.yukimochi.io/assets/favicon.ico",
"https://vrm-viewer.yukimochi.io/assets/icons/VRM-Viewer.png",
"https://vrm-viewer.yukimochi.io/bundle.js?v=r95",
"https://vrm-viewer.yukimochi.io/index.html",
"https://vrm-viewer.yukimochi.io/lib/gltf-validator.js",
"https://vrm-viewer.yukimochi.io/style.css"
];
self.addEventListener('install', function (event) {
event.waitUntil(
caches.open(CACHE_NAME)
.then(
function (cache) {
return cache.addAll(urlsToCache);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.match(event.request)
.then(
function (response) {
if (response) {
return response;
}
return fetch(event.request);
})
);
});
self.addEventListener('activate', function(event) {
var cacheWhitelist = [CACHE_NAME];
event.waitUntil(
caches.keys().then(function(keyList) {
return Promise.all(keyList.map(function(key) {
if (cacheWhitelist.indexOf(key) === -1) {
return caches.delete(key);
}
}));
})
);
});