forked from yashrajbharti/Pokemon-Image-Downloader-Upgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsw.js
More file actions
109 lines (99 loc) · 2.81 KB
/
Copy pathsw.js
File metadata and controls
109 lines (99 loc) · 2.81 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const CACHE_NAME = "pokedex-v1";
const urlsToCache = [
"/",
"/index.html",
"/style.css",
"/script.js",
"/manifest.json",
"/pokedexdata.json",
"/Images/normal.json",
"/Images/shiny.json",
"/assets/logo.png",
"/assets/github.svg",
"/assets/pokedex.png",
];
// Install event - cache initial resources
self.addEventListener("install", (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
console.log("Cache opened");
return cache.addAll(urlsToCache);
})
);
});
// Fetch event - serve cached content when offline
self.addEventListener("fetch", (event) => {
event.respondWith(
caches.match(event.request).then((response) => {
// Return cached version or fetch from network
if (response) {
return response;
}
return fetch(event.request).then((response) => {
// Don't cache non-successful responses
if (!response || response.status !== 200 || response.type !== "basic") {
return response;
}
// Clone the response for caching
const responseToCache = response.clone();
// Cache Pokemon images dynamically
if (
event.request.url.includes("[HOME] Pokémon Renders/Normal/") ||
event.request.url.includes("[HOME] Pokémon Renders/Shiny/")
) {
caches.open(CACHE_NAME).then((cache) => {
cache.put(event.request, responseToCache);
});
}
return response;
});
})
);
});
// 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("Deleting old cache:", cacheName);
return caches.delete(cacheName);
}
})
);
})
);
});
// Background sync for caching Pokemon images
self.addEventListener("message", (event) => {
if (event.data && event.data.type === "CACHE_POKEMON_IMAGES") {
const { normalImages, shinyImages } = event.data;
caches.open(CACHE_NAME).then((cache) => {
// Cache normal Pokemon images
normalImages.forEach((imageUrl) => {
fetch(imageUrl)
.then((response) => {
if (response.ok) {
cache.put(imageUrl, response.clone());
}
})
.catch(() => {
// Silently ignore cache failures
});
});
// Cache shiny Pokemon images
shinyImages.forEach((imageUrl) => {
fetch(imageUrl)
.then((response) => {
if (response.ok) {
cache.put(imageUrl, response.clone());
}
})
.catch(() => {
// Silently ignore cache failures
});
});
});
}
});