Changes for page LiveTableServiceWorker
Last modified by bougault on 2022/03/22 17:19
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -5,16 +5,20 @@ 5 5 }); 6 6 7 7 self.addEventListener("activate" , event => { 8 - event.waitUntil(clients.claim()); 8 +// console.log(event); 9 + clients.claim(); 10 +// event.waitUntil(clients.claim()); 9 9 }); 10 10 11 -self.addEventListener("fetch" , event => { 13 +self.addEventListener("fetch" , async (event) => { 14 + 12 12 const pathname = new URL(event.request.url).pathname; 16 + console.log(pathname); 13 13 if(pathname === '/bin/get/XWiki/LiveTableResults') { 14 - event.respondWith(fetch(event.request).then(res => res.json()).then(json => {15 - constheaders =new Headers({'Content-Type': 'application/json'});16 - const jsonResults = json.rows.filter(row => row.doc_viewable === true);17 - return new Response(JSON.stringify(jsonResults),{headers});18 - }));18 + const res = await fetch(event.request); 19 + const json = res.json(); 20 + 21 + json['hello'] = 'Hello'; 22 + event.respondWith(json); 19 19 } 20 20 });