Skip to content

Experimental project for testing out various PWA related bits of code that I will be using elsewhere.

Notifications You must be signed in to change notification settings

daffinm/pwa-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PWA Utils

Project for some reusable bits and pieces for PWAs. Experimental.

Test Service Worker Update Flow

The main thing I am starting with is exploring and documenting how to get the service worker update flow working perfectly (or well enough).

Comments and improvements welcome.

Purpose of this project

  • I want to get to the bottom of the whole service worker update flow in a simplified test space.
  • I want a piece of reusable code that solves the whole problem of handing updates to PWAs.

Use case

The simple use case here (which I suspect is the main one) is:

  1. Publish update to PWA.
  2. User is notified next time they: reload/restart the simpleUI, or press a 'check for updates' button somewhere in the UI, or the update is discovered because of some kind of periodic background check (I think that's it).
  3. User is given the option to use the update now or later.
    • Updates cannot be rejected indefinitely in PWA land.
    • By the time the user hears of the update it has already been installed and is waiting to become active.
  4. If the user accepts the update the new service worker version is activated and, once this happens, the simpleUI reloads to get itself in sync with the new back end.
  5. If the user rejects the update they carry on using the old version of the service worker and UI until next time one of the three things mentioned in step 2 happens again.
  6. At this point they will get the option, again, to accept or reject the update for the time being.
    • The fact that they may have rejected an update before should not stop them changing their mind later.
  7. The only exception to this is when the simpleUI is first accessed and the first version of the service worker is installed on the user's machine (browser).
    • At this point the page ('client') will not be controlled, so any update will activate automatically.
    • If an update is found at this point the client must be forced to catch up and become controlled by the new service worker, otherwise we will have a v1 client being served by a v2+ service worker, and things will get increasingly out of whack.

The code here attempt so do all of this as simply as possible.

Have I missed anything, or misunderstood, or made it too complicated?

Running and playing with the demo app

  1. Run project using npm start and goto http://localhost:5001 in Chrome.
  2. Open the dev tools console asap and check the console messages to see what's happening.
  3. Simulate an upate by adding/removing spaces to/from the end of the sw.js file.
  4. Press the 'Check for updates' button
  5. Play with accepting and rejecting updates at different times.
    • Note what happens if you reject an update when the page is not controlled by a service worker.

Uncontrolled client Controlled client

Background reading

About

Experimental project for testing out various PWA related bits of code that I will be using elsewhere.

Resources

Stars

Watchers

Forks

Packages

No packages published