aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hesla.es2
-rw-r--r--sworker.js37
2 files changed, 31 insertions, 8 deletions
diff --git a/hesla.es b/hesla.es
index c2e6348..30e5ba3 100644
--- a/hesla.es
+++ b/hesla.es
@@ -95,7 +95,7 @@ export class Hesla extends ActivePage {
display() {
super.display();
- console.log("cur_watchword = " + this.cur_watchword);
+ console.log("cur_watchword = " + this.cur_watchword.toISODateString());
document.getElementById(this.cur_watchword.toISODateString()).
classList.add("visible");
diff --git a/sworker.js b/sworker.js
index bcfb122..668f8f2 100644
--- a/sworker.js
+++ b/sworker.js
@@ -1,37 +1,40 @@
-var version = 'v46 - 2018-03-05';
+var VERSION = 'v50 - 2019-01-01';
var toCache = [
'/',
- 'index.html',
'activePage.js',
'activePage.js.map',
'config.js',
'config.js.map',
+ 'favicon.ico',
'hesla.js',
'hesla.js.map',
'hesla.webapp',
- 'favicon.ico',
'icon-128.png',
'icon-30.png',
'icon-60.png',
'index_de.html',
+ 'index.html',
'require.js',
'screen.css'
];
self.addEventListener('install', event => {
+ console.log('install version = ' + VERSION);
event.waitUntil(
- caches.open('static' + version)
+ caches.open(VERSION)
.then(
c => c.addAll(toCache)
- .then(v => console.log('Yay!'), e => console.log('Error'))
+ .then(v => console.log('Yay!' + VERSION), e => console.log('Error'))
)
);
});
self.addEventListener('activate', event => {
+ console.log('activate version = ' + VERSION);
+ console.log('keys:\n' + caches.keys());
event.waitUntil(caches.keys().then(
keys => Promise.all(
- keys.filter(key => key != 'static' + version).
+ keys.filter(key => key != VERSION).
map(key => caches.delete(key))
)
)
@@ -39,5 +42,25 @@ self.addEventListener('activate', event => {
});
self.addEventListener('fetch', function(event) {
- event.respondWith(caches.match(event.request));
+ event.respondWith(caches.match(event.request).then(function(response) {
+ // caches.match() always resolves
+ // but in case of success response will have value
+ if (response !== undefined) {
+ return response;
+ } else {
+ return fetch(event.request).then(function (response) {
+ // response may be used only once
+ // we need to save clone to put one copy in cache
+ // and serve second one
+ let responseClone = response.clone();
+
+ caches.open(VERSION).then(function (cache) {
+ cache.put(event.request, responseClone);
+ });
+ return response;
+ }).catch(function () {
+ return caches.match('/sw-test/gallery/myLittleVader.jpg');
+ });
+ }
+ }));
});