Click here to Skip to main content
15,881,882 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Transaction scope and web apis Pin
Richard Deeming14-Nov-19 1:33
mveRichard Deeming14-Nov-19 1:33 
GeneralRe: Transaction scope and web apis Pin
Eddy Vluggen14-Nov-19 1:46
professionalEddy Vluggen14-Nov-19 1:46 
GeneralRe: Transaction scope and web apis Pin
Richard Deeming14-Nov-19 1:55
mveRichard Deeming14-Nov-19 1:55 
GeneralRe: Transaction scope and web apis Pin
Eddy Vluggen14-Nov-19 2:17
professionalEddy Vluggen14-Nov-19 2:17 
GeneralRe: Transaction scope and web apis Pin
Ger Hayden14-Nov-19 10:15
Ger Hayden14-Nov-19 10:15 
AnswerRe: Transaction scope and web apis Pin
Richard Deeming14-Nov-19 2:42
mveRichard Deeming14-Nov-19 2:42 
GeneralRe: Transaction scope and web apis Pin
Ger Hayden14-Nov-19 10:13
Ger Hayden14-Nov-19 10:13 
QuestionWorkBox is not broadcasting updates. Pin
Member 1088816411-Nov-19 3:53
Member 1088816411-Nov-19 3:53 
Hi all. I cam having trouble finding any info on the google workbox project and the specific issue I am having with trying to publish updates.
I started on WorkBox 4 and have recently upgraded to the release candidate of version 5 to see if that helps and it did not.

My route is setup as
workbox.routing.registerRoute(
    /.*/,
    new workbox.strategies.StaleWhileRevalidate({
        plugins: [
            new workbox.broadcastUpdate.BroadcastUpdatePlugin({
                channelName: 'app-update-reload'
            })
        ]
    })
);


and, my index.html is supposed to catch the broadcasts using the following code but it never gets called by workbox:
<script>
    const updateChannel = new BroadcastChannel('app-update-reload');

    updateChannel.addEventListener('message', async (event) => {
        console.log(">>>>>>>>>>>>>>>>>> A new update is available!!!!!!!!!!");
    });
</script>


So, my problem is that the message event in my index.html never gets called by workbox when there is an update. I can see that the files are being updated when the manifest changes in the browser but the broadcast never happens.

I can manually broadcast from the service worker to test that the index.html is catching the event and it works. however, no matter what I've tried I can't get the StaleWhileRevalidate strategy to broadcast the update and I am pulling my hair out.

I verified that the caching strategy is indeed working and I can't figure out why it won't broadcast.

Any help would be GREATLY appreciated. Thanks!
QuestionPlease help: “Invalid argument supplied for foreach()” in Wordpress Pin
Member 146471226-Nov-19 13:28
Member 146471226-Nov-19 13:28 
AnswerRe: Please help: “Invalid argument supplied for foreach()” in Wordpress Pin
Richard MacCutchan6-Nov-19 21:38
mveRichard MacCutchan6-Nov-19 21:38 
AnswerRe: Please help: “Invalid argument supplied for foreach()” in Wordpress Pin
jkirkerx7-Nov-19 12:29
professionaljkirkerx7-Nov-19 12:29 
Questionweb development Pin
Member 142901874-Nov-19 1:55
Member 142901874-Nov-19 1:55 
AnswerRe: web development Pin
Richard MacCutchan4-Nov-19 2:27
mveRichard MacCutchan4-Nov-19 2:27 
QuestionJquery fuction not called when I append achor tag . Pin
KGr2830-Oct-19 4:29
KGr2830-Oct-19 4:29 
AnswerRe: Jquery fuction not called when I append achor tag . Pin
Richard Deeming30-Oct-19 5:30
mveRichard Deeming30-Oct-19 5:30 
GeneralRe: Jquery fuction not called when I append achor tag . Pin
KGr2830-Oct-19 8:03
KGr2830-Oct-19 8:03 
AnswerRe: Jquery fuction not called when I append achor tag . Pin
Leanbridge Technologies1-Nov-19 22:24
professionalLeanbridge Technologies1-Nov-19 22:24 
QuestionLogin Information Pin
Member 1463762428-Oct-19 19:29
Member 1463762428-Oct-19 19:29 
AnswerRe: Login Information Pin
Richard MacCutchan28-Oct-19 21:54
mveRichard MacCutchan28-Oct-19 21:54 
QuestionGrabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 9:12
KGr2828-Oct-19 9:12 
AnswerRe: Grabbing routeValues from ActionLink with jquery. Pin
ZurdoDev28-Oct-19 9:49
professionalZurdoDev28-Oct-19 9:49 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 9:52
KGr2828-Oct-19 9:52 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
Richard Deeming28-Oct-19 10:11
mveRichard Deeming28-Oct-19 10:11 
GeneralRe: Grabbing routeValues from ActionLink with jquery. Pin
KGr2828-Oct-19 10:34
KGr2828-Oct-19 10:34 
QuestionWeb API and SignlaR Test Pin
Kevin Marois16-Oct-19 6:18
professionalKevin Marois16-Oct-19 6:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.