generated from jailsonsb2/RadioPlayer-ZenoRadio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
service-worker.js
39 lines (36 loc) · 1023 Bytes
/
service-worker.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
// Define o nome do cache
const CACHE_NAME = 'web-radio-v1';
// Lista de arquivos a serem cacheados
const urlsToCache = [
'/',
'/index.html',
'/css/style.css',
'/js/script.js',
'/img/cover.png',
// Adicione outros recursos que deseja cache aqui
];
// Instala o Service Worker e adiciona os arquivos ao cache
self.addEventListener('install', function(event) {
event.waitUntil(
caches.open(CACHE_NAME)
.then(function(cache) {
console.log('Cache aberto');
return cache.addAll(urlsToCache);
})
);
});
// Intercepta as solicitações e serve os arquivos em cache se disponíveis
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.match(event.request)
.then(function(response) {
// Cache hit - retorna a resposta do cache
if (response) {
return response;
}
// Não encontrado no cache - busca na rede
return fetch(event.request);
}
)
);
});