fix: pwa not loading static files when offline (#241)

This commit is contained in:
Miguel Ribeiro 2024-03-18 23:43:23 +01:00 committed by GitHub
parent 560f5e3e51
commit 4e3376df93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,3 @@
<?php <?php
$version = "v1.17.1"; $version = "v1.17.2";
?> ?>

View File

@ -1,7 +1,7 @@
self.addEventListener('install', function(event) { self.addEventListener('install', function(event) {
event.waitUntil( event.waitUntil(
caches.open('my-cache').then(function(cache) { caches.open('my-cache').then(function(cache) {
return cache.addAll([ const urlsToCache = [
'.', '.',
'index.php', 'index.php',
'settings.php', 'settings.php',
@ -36,6 +36,8 @@ self.addEventListener('install', function(event) {
'scripts/libs/chart.js', 'scripts/libs/chart.js',
'scripts/libs/sortable.min.js', 'scripts/libs/sortable.min.js',
'images/icon/favicon.ico', 'images/icon/favicon.ico',
'images/icon/android-chrome-192x192.png',
'images/screenshots/desktop.png',
'images/wallossolid.png', 'images/wallossolid.png',
'images/wallossolidwhite.png', 'images/wallossolidwhite.png',
'images/siteimages/empty.png', 'images/siteimages/empty.png',
@ -96,7 +98,15 @@ self.addEventListener('install', function(event) {
'images/uploads/icons/venmo.png', 'images/uploads/icons/venmo.png',
'images/uploads/icons/verifone.png', 'images/uploads/icons/verifone.png',
'images/uploads/icons/webmoney.png', 'images/uploads/icons/webmoney.png',
]); ];
urlsToCache.forEach(function(url) {
fetch(url).then(function(response) {
if (response.ok) {
cache.put(url, response);
}
});
});
}) })
); );
}); });
@ -114,7 +124,7 @@ self.addEventListener('fetch', function(event) {
} }
}).catch(function(error) { }).catch(function(error) {
// If fetching fails, try to retrieve the response from cache // If fetching fails, try to retrieve the response from cache
return caches.match(event.request); return caches.match(event.request, { ignoreSearch: true });
}) })
); );
}); });