pelican-panel-mirror/app/Livewire/AlertBannerContainer.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');
}
}