mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 21:58:36 +02:00
41 lines
954 B
PHP
41 lines
954 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Filament\Notifications\Collection;
|
|
use Illuminate\Contracts\View\View;
|
|
use Livewire\Attributes\On;
|
|
use Livewire\Component;
|
|
|
|
class AlertBannerContainer extends Component
|
|
{
|
|
public Collection $alertBanners;
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->alertBanners = new Collection();
|
|
$this->pullFromSession();
|
|
}
|
|
|
|
#[On('alertBannerSent')]
|
|
public function pullFromSession(): void
|
|
{
|
|
foreach (session()->pull('alert-banners', []) as $alertBanner) {
|
|
$alertBanner = AlertBanner::fromArray($alertBanner);
|
|
$this->alertBanners->put($alertBanner->getId(), $alertBanner);
|
|
}
|
|
}
|
|
|
|
public function remove(string $id): void
|
|
{
|
|
if ($this->alertBanners->has($id)) {
|
|
$this->alertBanners->forget($id);
|
|
}
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('livewire.alerts.alert-banner-container');
|
|
}
|
|
}
|