notCharles 61da930909 wip
2025-04-24 19:03:34 -04:00

2 lines
745 B
JavaScript

function u({activeTab:i,isTabPersistedInQueryString:e,livewireId:a,tab:n,tabQueryStringKey:r}){return{tab:n,init:function(){this.$watch("tab",()=>this.updateQueryString());let t=this.getTabs();(!this.tab||!t.includes(this.tab))&&(this.tab=t[i-1]),Livewire.hook("commit",({component:o,commit:c,succeed:h,fail:f,respond:b})=>{h(({snapshot:l,effect:d})=>{this.$nextTick(()=>{if(o.id!==a)return;let s=this.getTabs();s.includes(this.tab)||(this.tab=s[i-1]??this.tab)})})})},getTabs:function(){return this.$refs.tabsData?JSON.parse(this.$refs.tabsData.value):[]},updateQueryString:function(){if(!e)return;let t=new URL(window.location.href);t.searchParams.set(r,this.tab),history.replaceState(null,document.title,t.toString())}}}export{u as default};