summaryrefslogtreecommitdiff
path: root/public/service-worker.js
blob: e808fe0733f00b5b192a4dbddc9d1950316e2782 (plain)
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
const CACHE_NAME = 'static-cache-v42';
const FILES_TO_CACHE = [
  '/favicon.ico',
  '/offline.html',
  '/static/v42/css/light.min.css',
  '/static/v42/css/dark.min.css',
  '/static/v42/css/material-icons.css',
  '/static/v42/css/local.css',
  '/static/v42/fonts/MaterialIcons-Regular.woff2',
  '/static/v42/fonts/MaterialIcons-Regular.woff',
  '/static/v42/fonts/MaterialIcons-Regular.ttf',
  '/static/v42/js/jquery-3.4.1.min.js',
  '/static/v42/js/materialize.min.js',
  '/static/v42/js/travelynx-actions.min.js',
  '/static/v42/js/autocomplete.min.js',
  '/static/v42/js/geolocation.min.js',
];

self.addEventListener('install', (evt) => {
  evt.waitUntil(
    caches.open(CACHE_NAME).then((cache) => {
      return cache.addAll(FILES_TO_CACHE);
    })
  );
  self.skipWaiting();
});

self.addEventListener('activate', (evt) => {
  evt.waitUntil(
    caches.keys().then((keyList) => {
      return Promise.all(keyList.map((key) => {
        if (key !== CACHE_NAME) {
          return caches.delete(key);
        }
      }));
    })
  );
  self.clients.claim();
});

self.addEventListener('fetch', (evt) => {
  if (evt.request.mode !== 'navigate') {
    return;
  }
  evt.respondWith(
    fetch(evt.request)
        .catch(() => {
          return caches.open(CACHE_NAME)
              .then((cache) => {
                return cache.match('offline.html');
              });
        })
  );
});