-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
87 lines (77 loc) · 3.38 KB
/
sw.js
File metadata and controls
87 lines (77 loc) · 3.38 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
76
77
78
79
80
81
82
83
84
85
86
87
/* ════════════════════════════════════════════════════════════════
MesHeures — Service Worker v1.2
Stratégie : Cache First (assets locaux) + Cache dynamique (CDN exports)
L'app s'ouvre instantanément même en mode avion.
Les librairies xlsx et jspdf sont mises en cache au 1er usage.
════════════════════════════════════════════════════════════════ */
const CACHE_NAME = 'mesheures-v1.2';
const CACHE_CDN = 'mesheures-cdn-v1.2';
const ASSETS = [
'index.html',
'manifest.json',
'apple-touch-icon.webp',
];
const CDN_URLS = [
'https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js',
];
/* ── Installation : mise en cache initiale des assets locaux ─── */
self.addEventListener('install', event => {
event.waitUntil(
caches.open(CACHE_NAME)
.then(cache => cache.addAll(ASSETS))
.then(() => self.skipWaiting())
);
});
/* ── Activation : supprimer les anciens caches ───────────────── */
self.addEventListener('activate', event => {
event.waitUntil(
caches.keys()
.then(keys => Promise.all(
keys
.filter(key => key !== CACHE_NAME && key !== CACHE_CDN)
.map(key => caches.delete(key))
))
.then(() => self.clients.claim())
);
});
/* ── Fetch : Cache First ─────────────────────────────────────── */
self.addEventListener('fetch', event => {
if (event.request.method !== 'GET') return;
const url = new URL(event.request.url);
// ── CDN (xlsx / jspdf) : Cache First, pas de mise à jour silencieuse
// Ces fichiers sont versionnés dans l'URL → immuables
if (CDN_URLS.includes(event.request.url)) {
event.respondWith(
caches.open(CACHE_CDN).then(cache =>
cache.match(event.request).then(cached => {
if (cached) return cached;
return fetch(event.request, { mode: 'cors' }).then(response => {
if (response && response.status === 200) {
cache.put(event.request, response.clone());
}
return response;
});
})
)
);
return;
}
// ── Assets locaux : Cache First + mise à jour silencieuse ────
if (url.origin !== self.location.origin) return;
event.respondWith(
caches.open(CACHE_NAME).then(cache =>
cache.match(event.request).then(cached => {
const fetchPromise = fetch(event.request)
.then(response => {
if (response && response.status === 200) {
cache.put(event.request, response.clone());
}
return response;
})
.catch(() => null);
return cached || fetchPromise;
})
)
);
});