forked from alirahimi818/simple-PWA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pwa-sw.js
101 lines (87 loc) · 2.66 KB
/
pwa-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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
'use strict';
var cache_storage_name = 'digital-clock-pwa-1.2';
var start_page = 'index.html';
var offline_page = 'index.html';
var first_cache_urls = [start_page, offline_page];
var never_cache_urls = [/\/panel/, /\/custom-url/];
// Install
self.addEventListener('install', function (e) {
console.log('PWA sw installation');
e.waitUntil(caches.open(cache_storage_name).then(function (cache) {
console.log('PWA sw caching first urls');
first_cache_urls.map(function (url) {
return cache.add(url).catch(function (res) {
return console.log('PWA: ' + String(res) + ' ' + url);
});
});
}));
});
// Activate
self.addEventListener('activate', function (e) {
console.log('PWA sw activation');
e.waitUntil(caches.keys().then(function (kl) {
return Promise.all(kl.map(function (key) {
if (key !== cache_storage_name) {
console.log('PWA old cache removed', key);
return caches.delete(key);
}
}));
}));
return self.clients.claim();
});
// Fetch
self.addEventListener('fetch', function (e) {
if (!checkFetchRules(e)) return;
// Strategy for online user
if (e.request.mode === 'navigate' && navigator.onLine) {
e.respondWith(fetch(e.request).then(function (response) {
return caches.open(cache_storage_name).then(function (cache) {
if (never_cache_urls.every(check_never_cache_urls, e.request.url)) {
cache.put(e.request, response.clone());
}
return response;
});
}));
return;
}
// Strategy for offline user
e.respondWith(caches.match(e.request).then(function (response) {
return response || fetch(e.request).then(function (response) {
return caches.open(cache_storage_name).then(function (cache) {
if (never_cache_urls.every(check_never_cache_urls, e.request.url)) {
cache.put(e.request, response.clone());
}
return response;
});
});
}).catch(function () {
return caches.match(offline_page);
}));
});
// Check never cache urls
function check_never_cache_urls(url) {
if (this.match(url)) {
return false;
}
return true;
}
// Fetch Rules
function checkFetchRules(e) {
// Check request url from inside domain.
if (new URL(e.request.url).origin !== location.origin) return;
// Check request url http or https
if (!e.request.url.match(/^(http|https):\/\//i)) return;
// Show offline page for POST requests
if (e.request.method !== 'GET') {
return caches.match(offline_page);
}
return true;
}
importScripts("https://storage.googleapis.com/workbox-cdn/releases/6.0.2/workbox-sw.js");
if (workbox.googleAnalytics) {
try {
workbox.googleAnalytics.initialize();
} catch (e) {
console.log(e.message);
}
}