TenantAtlas/app/Support/Badges/Domains/FindingExceptionStatusBadge.php
2026-03-20 02:05:50 +01:00

28 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Support\Badges\Domains;
use App\Models\FindingException;
use App\Support\Badges\BadgeCatalog;
use App\Support\Badges\BadgeMapper;
use App\Support\Badges\BadgeSpec;
final class FindingExceptionStatusBadge implements BadgeMapper
{
public function spec(mixed $value): BadgeSpec
{
return match (BadgeCatalog::normalizeState($value)) {
FindingException::STATUS_PENDING => new BadgeSpec('Pending', 'warning', 'heroicon-o-clock'),
FindingException::STATUS_ACTIVE => new BadgeSpec('Active', 'success', 'heroicon-o-shield-check'),
FindingException::STATUS_EXPIRING => new BadgeSpec('Expiring', 'warning', 'heroicon-o-exclamation-triangle'),
FindingException::STATUS_EXPIRED => new BadgeSpec('Expired', 'danger', 'heroicon-o-clock'),
FindingException::STATUS_REJECTED => new BadgeSpec('Rejected', 'gray', 'heroicon-o-x-circle'),
FindingException::STATUS_REVOKED => new BadgeSpec('Revoked', 'danger', 'heroicon-o-no-symbol'),
FindingException::STATUS_SUPERSEDED => new BadgeSpec('Superseded', 'gray', 'heroicon-o-arrow-path'),
default => BadgeSpec::unknown(),
};
}
}