-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice-worker.js
More file actions
85 lines (77 loc) · 2.16 KB
/
service-worker.js
File metadata and controls
85 lines (77 loc) · 2.16 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
const CACHE_VERSION = 'scout-v1';
const CACHE_NAME = `${CACHE_VERSION}`;
// Files to cache on install
const urlsToCache = [
'./',
'./logIn.html',
'./auto.html',
'./game.html',
'./Func.js',
'./manifest.json',
'./icons/icon-192.png',
'./icons/icon-512.png'
];
// Install event - cache resources
self.addEventListener('install', event => {
event.waitUntil(
caches.open(CACHE_NAME)
.then(cache => {
console.log('Service Worker: Caching files');
return cache.addAll(urlsToCache);
})
.catch(err => console.error('Cache addAll error:', err))
);
self.skipWaiting();
});
// Activate event - clean up old caches
self.addEventListener('activate', event => {
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
if (cacheName !== CACHE_NAME) {
console.log('Service Worker: Deleting old cache:', cacheName);
return caches.delete(cacheName);
}
})
);
})
);
self.clients.claim();
});
// Fetch event - cache-first strategy
self.addEventListener('fetch', event => {
// Only handle GET requests
if (event.request.method !== 'GET') {
return;
}
event.respondWith(
caches.match(event.request)
.then(response => {
// Return cached version if available
if (response) {
return response;
}
// Otherwise, try to fetch from network
return fetch(event.request)
.then(response => {
// Don't cache non-successful responses
if (!response || response.status !== 200 || response.type === 'error') {
return response;
}
// Clone the response before caching
const responseToCache = response.clone();
caches.open(CACHE_NAME)
.then(cache => {
cache.put(event.request, responseToCache);
});
return response;
})
.catch(err => {
console.error('Fetch failed:', err);
// Return offline page if needed
return caches.match('./logIn.html');
});
})
);
});