|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- 'use strict';
-
- // NOTE: CacheKey & FilesToCache Lists
- const cacheKey = 'omapp-v';
- const shellCacheKey = cacheKey + '1';
- const logicCasheKey = shellCacheKey + '.' + '0';
- const dataCacheKey = logicCasheKey + '.' + '0';
- const shellFilesToCache = [
- '/',
- '/manifest.json',
- '/index.html',
- '/message.html',
- '/bookmark.js',
- '/createMessage.js',
- '/files.js',
- '/home.js',
- '/main.js',
- '/profil.js',
- '/favicon.ico',
- '/img/th_nbg_ohmicon_amp.png',
- '/lib/jquery-3.3.1.min.js',
- '/lib/vue.js',
- '/lib/vue-router.js',
- '/style/style.css',
- ];
- const logicFilesToCache = [
- '',
- ];
- const dataFilesToCache = [
- '',
- ];
-
- // NOTE: Registration done in main.js
-
- // NOTE: Install and activate: Populating cache
- self.addEventListener('install', function (event) {
- console.log('[ServiceWorker] Install');
- event.waitUntil(
- caches.open(shellCacheKey).then(function (cache) {
- console.log('[ServiceWorker] Cache shell files.');
- return cache.addAll(shellFilesToCache);
- }).then(self.skipWaiting()),
- caches.open(logicCasheKey).then(function (cache) {
- console.log('[ServiceWorker] Cache logic files.');
- return cache.addAll(logicFilesToCache);
- }).then(self.skipWaiting()),
- caches.open(dataCacheKey).then(function (cache) {
- console.log('[ServiceWorker] Cache data files.');
- return cache.addAll(dataFilesToCache);
- }).then(self.skipWaiting())
- );
- });
-
- // NOTE: Activate structure and delete older cache versions
- self.addEventListener('activate', function (event) {
- console.log('[ServiceWorker] Activate');
- event.waitUntil(
- caches.keys().then(function (cacheKeyList) {
- return Promise.all(
- cacheKeyList.map(function (key) {
- if (key !== shellCacheKey && key !== logicCasheKey && key !== dataCacheKey) {
- console.log('[ServiceWorker] Removing old cache', key);
- return caches.delete(key);
- }
- })
- );
- })
- );
- // Shorten activation time for initial [ServiceWorker] call.
- //return self.clients.claim();
- });
-
-
- // NOTE: Fetch structure // TODO: Setup fetching method
- self.addEventListener('fetch', function (event) {
- var dataUrl = 'localhost:8888'; // Provide HTTPS URL for query data.
- console.log('[ServiceWorker] Fetch', event.request.url);
-
- //if (event.request.url.indexOf(dataUrl) > -1) {
- /*
- * When the request URL contains dataUrl, the app is asking for fresh
- * data. In this case, the service worker always goes to the network
- * and then caches the response. This is called
- * the "Cache then network" strategy:
- * https://jakearchibald.com/2014/offline-cookbook/#cache-then-network
- */
-
- /*event.respondWith(
- caches.open(shellCacheKey).then(function (cache) {
- return fetch(event.request).then(function (response) {
- cache.put(event.request.url, response.clone());
- return response;
- });
- })
- );
- } else {
- */
- /*
- * The app is asking for app shell files. In this scenario the app uses the
- * "Cache, falling back to the network" offline strategy:
- * https://jakearchibald.com/2014/offline-cookbook/#cache-falling-back-to-network
- */
- event.respondWith(
- caches.match(event.request).then(function (response) {
- return response || fetch(event.request);
- })
- );
- //}
- /*
- caches.match(event.request).then(cachedResponse => {
- if (cachedResponse) {
- return cachedResponse;
- }
-
- return caches.open(shellCacheKey).then(cache => {
- return fetch(event.request).then(response => {
- // Put a copy of the response in the runtime cache.
- return cache.put(event.request, response.clone()).then(() => {
- return response;
- });
- });
- });
-
- })*/
- });
-
|