-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
71 lines (67 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// 스토리지에 저장될 이름, 캐싱 할 파일 목록
var CACHE_NAME = 'ICISTS-offline-v1';
var filesToCache = [
'index.html',
'/',
'/img',
'/img/logo.png',
'/img/icons/144x.png',
'/img/icons/192x.png',
'/img/icons/512x.png',
'/css',
'/css/reset.css',
'/css/style.css',
'/html/',
'/html/NewsFeed.html',
'/html/Schedule.html',
'/html/Survey.html',
'/html/QnA.html',
'/html/Map.html',
'/js',
'/js/jquery-2.1.1.js',
'/js/main.js',
'/js/modernizr.js'
];
self.addEventListener('install', function(event) {
console.log('[ServiceWorker Install]');
event.waitUntil(
// 웹 자원 캐싱
caches.open(CACHE_NAME)
.then(function(cache) {
// PWA 파일 넣기
// console.log('Opened cache');
return cache.addAll(filesToCache);
})
.catch(function(error) {
return console.log(error);
})
);
});
self.addEventListener('fetch', function(event) {
console.log('[ServiceWorker fetch]', event.request);
event.respondWith(
caches.match(event.request)
.then(function(response) {
return response || fetch(event.request);
})
.catch(function(error) {
return console.log(error);
})
);
});
// self.addEventListener('activate', function(event) {
// var newCacheList = ['ICISTS-offline-v2']
// event.waitUntil(
// caches.keys().then(function(cacheList) {
// return Promise.all(
// cacheList.map(function(cacheName) {
// if(newCacheList.IndexOf(cacheName) === -1) {
// return caches.delete(cacheName);
// }
// })
// );
// }).catch(function(error) {
// return console.log(error);
// })
// );
// });