Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Service worker unregistered when offline

So I've created and successfully registered a Service Worker when the browser is online. I can see that the resources are properly cached using the DevTools. The issue is when I switch to offline mode, the service worker seems to unregister itself and, as such, nothing but the google chrome offline page is displayed.

The code.

'use strict';
var CACHE_NAME = 'v1';
var urlsToCache = [
  '/'
];

self.addEventListener('install', function(event) {
  // Perform install steps
  event.waitUntil(
    caches.open(CACHE_NAME)
      .then(function(cache) {
        console.log('Opened cache');
        return cache.addAll(urlsToCache);
      })
  );
});

self.addEventListener('fetch', function(event) {
  event.respondWith(
    caches.match(event.request)
      .then(function(response) {
        // Cache hit - return response
        if (response) {
          return response;
        }

        // IMPORTANT: Clone the request. A request is a stream and
        // can only be consumed once. Since we are consuming this
        // once by cache and once by the browser for fetch, we need
        // to clone the response.
        var fetchRequest = event.request.clone();

        return fetch(fetchRequest).then(
          function(response) {
            // Check if we received a valid response
            if(!response || response.status !== 200 || response.type !== 'basic') {
              return response;
            }

            // IMPORTANT: Clone the response. A response is a stream
            // and because we want the browser to consume the response
            // as well as the cache consuming the response, we need
            // to clone it so we have two streams.
            var responseToCache = response.clone();

            caches.open(CACHE_NAME)
              .then(function(cache) {
                cache.put(event.request, responseToCache);
              });

            return response;
          }
        );
      })
    );
});

And the test script, if that helps.

'use strict';
if ('serviceWorker' in navigator) {
  navigator.serviceWorker.register('/sw.js').then(function(registration) {
    // Registration was successful
    console.log('ServiceWorker registration successful with scope: ', registration.scope);

    var serviceWorker;
    if (registration.installing) {
      serviceWorker = registration.installing;
    } else if (registration.waiting) {
      serviceWorker = registration.waiting;
    } else if (registration.active) {
      serviceWorker = registration.active;
    }

    if (serviceWorker) {
      console.log('ServiceWorker phase:', serviceWorker.state);

      serviceWorker.addEventListener('statechange', function (e) {
        console.log('ServiceWorker phase:', e.target.state);
      });
    }
  }).catch(function(err) {
    // registration failed :(
    console.log('ServiceWorker registration failed: ', err);
  });
}

Edit: Checking the console I've found this error. sw.js:1 An unknown error occurred when fetching the script.

Aslo, as per a suggestion, I've added this code yet the problem persists.

this.addEventListener('activate', function(event) {
  var cacheWhitelist = ['v2'];

  event.waitUntil(
    caches.keys().then(function(keyList) {
      return Promise.all(keyList.map(function(key) {
        if (cacheWhitelist.indexOf(key) === -1) {
          return caches.delete(key);
        }
      }));
    })
  );
});
like image 859
manmon42 Avatar asked Oct 17 '22 21:10

manmon42


1 Answers

it seems you haven't added any activate event which meant to render cached elements when available. Hope the code help you.

self.addEventListener('activate', function(e) {
    /*service worker activated */
    e.waitUntil(
      caches.key().then(function(keyList) {
      return Promise.all(keyList.map(function(key) {
        if(key){
          //remove old cache stuffs
          return caches.delete(key);
        }
       }));
      })
    );
 });
like image 175
Smit Avatar answered Oct 21 '22 07:10

Smit