-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
75 lines (69 loc) · 2.01 KB
/
Copy pathsw.js
File metadata and controls
75 lines (69 loc) · 2.01 KB
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
/*
* SensZone Service Worker(手写,零依赖)
* 缓存版本号需与 src/version.js 的 SZ.VERSION 手动同步(当前对应 v1.4.1)。
* 策略:
* - 页面导航:network-first,离线回退已缓存的 index.html
* - src/*.js 与 icons/*:cache-first,按完整 URL(含 ?v=)作为缓存键,
* 发版后 ?v= 变化即自然命中新资源
* - 跨域请求一律不缓存
*/
const CACHE = 'senszone-v1.4.1';
const PRECACHE = ['/', '/index.html'];
self.addEventListener('install', (event) => {
event.waitUntil(
caches
.open(CACHE)
.then((c) => c.addAll(PRECACHE))
.then(() => self.skipWaiting()),
);
});
self.addEventListener('activate', (event) => {
event.waitUntil(
caches
.keys()
.then((keys) =>
Promise.all(
keys
.filter((k) => k !== CACHE && k.indexOf('senszone-') === 0)
.map((k) => caches.delete(k)),
),
)
.then(() => self.clients.claim()),
);
});
self.addEventListener('fetch', (event) => {
const req = event.request;
if (req.method !== 'GET') return;
const url = new URL(req.url);
if (url.origin !== location.origin) return; // 不缓存跨域请求
if (req.mode === 'navigate') {
event.respondWith(
fetch(req)
.then((res) => {
const copy = res.clone();
caches.open(CACHE).then((c) => c.put('/index.html', copy));
return res;
})
.catch(() => caches.match('/index.html')),
);
return;
}
const cacheFirst =
(url.pathname.indexOf('/src/') === 0 && /\.js$/.test(url.pathname)) ||
url.pathname.indexOf('/icons/') === 0 ||
url.pathname === '/manifest.webmanifest';
if (!cacheFirst) return;
event.respondWith(
caches.match(req.url).then(
(hit) =>
hit ||
fetch(req).then((res) => {
if (res && res.ok) {
const copy = res.clone();
caches.open(CACHE).then((c) => c.put(req.url, copy));
}
return res;
}),
),
);
});