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

@ -45,7 +45,7 @@ public function restore(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('restored', true);
$this->dispatch('restored');
}
public function delete(): void
@ -55,7 +55,7 @@ public function delete(): void
$file->delete();
$this->dispatchBrowserEvent('confirmed', true);
$this->dispatch('confirmed');
}
public function render(): View

View File

@ -40,7 +40,7 @@ public function create(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('backup-created', true);
$this->dispatch('backup-created');
}
public function files(int $id): void
@ -48,7 +48,7 @@ public function files(int $id): void
$backup = Backup::query()->findOrFail($id);
$this->backup = $backup;
$this->files = $backup->files()->orderByDesc('id')->simplePaginate(1);
$this->dispatchBrowserEvent('show-files', true);
$this->dispatch('show-files');
}
public function backup(): void
@ -57,7 +57,7 @@ public function backup(): void
$this->files = $this->backup?->files()->orderByDesc('id')->simplePaginate();
$this->dispatchBrowserEvent('backup-running', true);
$this->dispatch('backup-running');
}
public function delete(): void
@ -67,7 +67,7 @@ public function delete(): void
$backup->delete();
$this->dispatchBrowserEvent('confirmed', true);
$this->dispatch('confirmed');
}
public function render(): View

View File

@ -40,7 +40,7 @@ public function create(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('database-created', true);
$this->dispatch('database-created');
}
public function delete(): void
@ -52,9 +52,9 @@ public function delete(): void
$this->refreshComponent([]);
$this->emitTo(DatabaseUserList::class, '$refresh');
$this->dispatch('$refresh')->to(DatabaseUserList::class);
$this->dispatchBrowserEvent('confirmed', true);
$this->dispatch('confirmed');
}
public function render(): View

View File

@ -38,7 +38,7 @@ public function create(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('database-user-created', true);
$this->dispatch('database-user-created');
}
public function delete(): void
@ -50,9 +50,9 @@ public function delete(): void
$this->refreshComponent([]);
$this->emitTo(DatabaseList::class, '$refresh');
$this->dispatch('$refresh')->to(DatabaseList::class);
$this->dispatchBrowserEvent('confirmed', true);
$this->dispatch('confirmed');
}
public function viewPassword(int $id): void
@ -62,7 +62,7 @@ public function viewPassword(int $id): void
$this->viewPassword = $databaseUser->password;
$this->dispatchBrowserEvent('open-modal', 'database-user-password');
$this->dispatch('open-modal', 'database-user-password');
}
public function showLink(int $id): void
@ -73,7 +73,7 @@ public function showLink(int $id): void
$this->linkId = $id;
$this->link = $databaseUser->databases ?? [];
$this->dispatchBrowserEvent('open-modal', 'link-database-user');
$this->dispatch('open-modal', 'link-database-user');
}
public function link(): void
@ -85,7 +85,7 @@ public function link(): void
$this->refreshComponent([]);
$this->dispatchBrowserEvent('linked', true);
$this->dispatch('linked');
}
public function render(): View