1<form 2data-querystats 3action="." 4method="get" 5target="querystats" 6class="relative group/querystats" 7style="display: none;"> 8<inputtype="hidden"name="querystats"value="store"> 9<buttontype="submit"class="px-2 py-px text-xs rounded-full bg-stone-700 text-stone-300 whitespace-nowrap"data-querystats-summary></button>10<divdata-querystats-liststyle="display: none;"class="absolute right-0 z-50 hidden translate-y-full -bottom-1 group/querystats-hover:block">11<divclass="p-2 text-xs border rounded shadow-md bg-zinc-900 border-zinc-700"><table><tbody></tbody></table></div>12</div>13<scriptasyncdefer>14// Catch errors since some browsers throw when using the new `type` option.15// https://bugs.webkit.org/show_bug.cgi?id=20921616varquerystatsTimings=[];17functionrenderQuerystats(){18// Render the most recent timing call19constlatestTiming=querystatsTimings[querystatsTimings.length-1];20letsummary=latestTiming.description;21if(querystatsTimings.length>1){22summary+=` *`;23}24document.querySelector('[data-querystats-summary]').innerText=summary;2526// Make sure the elements are visible27document.querySelector('[data-querystats]').style.display='inline';2829// Render the table rows for all timings30constlist=document.querySelector('[data-querystats-list]');31if(querystatsTimings.length>1){32consttableRows=querystatsTimings.map(timing=>{33leturl=timing.url;34if(url.startsWith(window.location.origin)){35// Make the url relative if possible (usually is)36url=url.slice(window.location.origin.length);37}38return`<tr>39 <td class="pr-2 font-medium whitespace-nowrap">${url}</td>40 <td class="whitespace-nowrap">${timing.description}</td>41 </tr>`;42}).join('');43list.querySelector("tbody").innerHTML=tableRows;44list.style.display='';45}else{46list.style.display='none';47}48}49try{50// Create the performance observer.51constpo=newPerformanceObserver((list)=>{52for(constentryoflist.getEntries()){53if(!entry.serverTiming){54console.warn("Server timing not available for querystats.")55return;56}57for(consttimingofentry.serverTiming){58if(querystatsTimings.length>0){59if(querystatsTimings[querystatsTimings.length-1]===timing){60// Skip duplicate timings (happens on initial load...)61continue;62}63}64if(timing.name==="querystats"){65console.log("Querystats timing",entry)66timing.url=entry.name;// Store this for reference later67querystatsTimings.push(timing);68renderQuerystats();69}70}71}72});73po.observe({type:'navigation',buffered:true});// Catch the regular page loads74po.observe({type:'resource',buffered:true});// Catch future ajax requests75}catch(e){76// Do nothing if the browser doesn't support this API.77}78</script>79</form>