-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
117 lines (102 loc) · 2.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
var cacheName = 'bs-0-3-1'
var apiCacheName = 'api-0-3-1'
var cacheFiles = [
'/',
'/images/TEP.ico',
'/images/favicon.ico',
'/css/main.css',
'/js/src/utils.js',
'/js/src/motion.js',
'/js/src/bootstrap.js',
'/js/src/jquery-3.3.1.min.js',
'/images/icons/icon_32.png',
'/images/icons/icon_72.png',
'/images/icons/icon_128.png',
'/images/icons/icon_192.png',
'/images/icons/icon_256.png',
'/images/icons/icon_512.png'
]
// 监听 install 事件,安装完成后,进行文件缓存
self.addEventListener('install', (e) => {
console.log('sw: install')
e.waitUntil(caches.open(cacheName)
.then((cache) => {
console.log('Opened cache')
return cache.addAll(cacheFiles)
})
.then(() => self.skipWaiting()))
})
// 监听 activate 事件,激活后通过 cache 的 key 来判断是否更新 cache 中的静态资源
self.addEventListener('activate', (e) => {
console.log('sw: activate')
e.waitUntil(
caches.keys()
.then((keys) => {
return Promise.all(
keys.map((key) => {
if (key !== cacheName && key !== apiCacheName) {
return caches.delete(key)
}
})
)
})
// 更新客户端
.then(() => self.clients.claim())
)
})
self.addEventListener('fetch', (e) => {
var currentUrl = e.request.url
// 只处理同源
if (new URL(currentUrl).hostname != location.hostname) {
return
}
// 需要缓存的 xhr 请求
var cacheRequestUrls = [
'/message.json',
'/manifest.json'
]
// 判断当前请求是否需要缓存
var needCache = cacheRequestUrls.includes(new URL(currentUrl).pathname)
if (needCache) {
// 需要缓存
// 使用 fetch 请求数据,并将请求结果 clone 一份缓存到 cache
// 此部分缓存后在 browser 中使用全局变量 caches 获取
caches.open(apiCacheName).then((cache) => {
return fetch(e.request).then((response) => {
cache.put(e.request.url, response.clone())
return response
})
})
} else {
// 不需要缓存,直接查询 cache
// 如果有 cache 则直接返回,否则通过 fetch 请求
e.respondWith(
caches.match(new URL(currentUrl).pathname)
.then((cache) => {
return cache || fetch(e.request)
})
.catch((err) => {
console.log('respondWithErr:', err)
return fetch(e.request)
})
)
}
})
// 监听推送事件 然后显示通知
self.addEventListener('push', (e) => {
console.log('sw: push', e.data.text())
var title = '灵魂只应独行通知'
var options = {
body: e.data.text(),
icon: '/images/icons/icon_72.png',
badge: '/images/icons/icon_72.png'
}
e.waitUntil(self.registration.showNotification(title, options))
})
// 监听通知的点击事件
self.addEventListener('notificationclick', (e) => {
e.notification.close()
event.waitUntil(
clients.openWindow('https://puppetsheep.cn')
)
})