Upgrade to Livewire 3 (#103)

* upgrade to livewire 3

* fix updater

* fix modal events

* fix modal events
This commit is contained in:
Saeed Vaziry
2024-02-04 18:11:22 +01:00
committed by GitHub
parent 3da1f4fe4c
commit 8bffefabef
98 changed files with 529 additions and 303 deletions

View File

@ -23,9 +23,9 @@ public function create(): void
{
app(\App\Actions\SSL\CreateSSL::class)->create($this->site, $this->all());
$this->emitTo(SslsList::class, '$refresh');
$this->dispatch('$refresh')->to(SslsList::class);
$this->dispatchBrowserEvent('created', true);
$this->dispatch('created');
}
public function render(): View

View File

@ -25,7 +25,7 @@ public function delete(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('confirmed', true);
$this->dispatch('confirmed');
}
public function refreshComponent(array $data): void
@ -34,7 +34,7 @@ public function refreshComponent(array $data): void
$this->toast()->error(__('SSL creation failed!'));
}
$this->emit('refreshComponent');
$this->dispatch('refreshComponent');
}
public function render(): View