-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
87 lines (84 loc) · 2.98 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
const CACHE_NAME = "offline-v1"; // Update cache version
const OFFLINE_URLS = [
"/",
"/index.html",
"/offline.html",
"/assets/css/styles.css",
"/assets/css/swiper-bundle.min.css",
"/assets/js/main.js",
"/assets/js/swiper-bundle.min.js",
"/assets/img/about.jpg",
"/assets/img/banner.jpg",
"/assets/img/blob.svg",
"/assets/img/icon192.png",
"/assets/img/icon512.png",
"/assets/img/icon1024.png",
"/assets/img/prifil.png",
"/assets/img/portfolio1.jpg",
"/assets/img/portfolio2.jpg",
"/assets/img/portfolio3.jpg",
"/assets/img/portfolio4.jpg",
"/assets/img/portfolio5.jpg",
"/assets/img/portfolio6.jpg",
"/assets/img/portfolio7.jpg",
"/assets/img/portfolio8.jpg",
"/assets/img/portfolio9.jpg",
"/assets/img/portfolio10.jpg",
"/assets/img/project.png",
"/assets/pdf/Nariman Ziaie (CV).pdf"
];
// Install event – Pre-cache important assets
self.addEventListener("install", event => {
console.log("Service Worker: Installing...");
event.waitUntil(
caches.open(CACHE_NAME).then(cache => {
console.log("Caching important resources...");
return cache.addAll(OFFLINE_URLS);
})
);
});
// Fetch event – Handle requests
self.addEventListener("fetch", event => {
event.respondWith(
caches.match(event.request).then(cachedResponse => {
if (cachedResponse) {
console.log(`Serving cached resource: ${event.request.url}`);
return cachedResponse;
}
return fetch(event.request)
.then(networkResponse => {
if (!networkResponse || networkResponse.status !== 200) {
console.warn(`Network request failed: ${event.request.url}`);
return caches.match("/offline.html");
}
return caches.open(CACHE_NAME).then(cache => {
cache.put(event.request, networkResponse.clone());
console.log(`Caching new resource: ${event.request.url}`);
return networkResponse;
});
})
.catch(() => {
console.warn(`Offline: Fallback to offline.html for ${event.request.url}`);
return caches.match("/offline.html");
});
})
);
});
// Activate event – Clean up old caches
self.addEventListener("activate", event => {
const cacheWhitelist = [CACHE_NAME];
console.log("Service Worker: Activating...");
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cacheName => {
if (!cacheWhitelist.includes(cacheName)) {
console.log(`Deleting old cache: ${cacheName}`);
return caches.delete(cacheName);
}
})
);
})
);
self.clients.claim();
});