I am new to java script as well as to PWA.
I am trying to load all of my contents images/css/audio/video/.html
into the cache using cache API which i did successfully using https://developers.google.com and other resources.
My question now is:
Soon the contents load into the cache the SW(service worker) should tell that all the contents have been loaded. I tried to loop through the static contents which i want to cache, and tried to use alert but it says
Uncaught (in promise) ReferenceError: alert is not defined
How would SW tell the main page (say index.html) that the contents have been cached without clicking any button or interaction?
And if there is a possibility of the progress bar which can show the progress of loading the contents into the cache?
as well as telling your actual cache capacity is 'this' and after loading the contents left is 'this'?
You need to add a client.postMessage() to the service worker on the 'activate' event (which occurs after caching is complete), and navigator.serviceWorker.addEventListener('message') Fn to your content page index.html or whatever.
Here's code I use:
and on content page script:
Note global.clients.matchAll() broadcasts the message to everything under control of the service worker, which you might not want.