1
0
mirror of https://github.com/chylex/Lightning-Tracker.git synced 2024-09-20 22:42:49 +02:00
Lightning-Tracker/src/Data/IssueType.php

92 lines
2.0 KiB
PHP

<?php
declare(strict_types = 1);
namespace Data;
use Pages\Components\Html;
use Pages\Components\Issues\IIssueTag;
use Pages\IViewable;
final class IssueType implements IIssueTag{
public const FEATURE = 'feature';
public const ENHANCEMENT = 'enhancement';
public const BUG = 'bug';
public const CRASH = 'crash';
public const TASK = 'task';
private static array $all;
private static self $unknown;
public static function init(): void{
$types = [new IssueType(self::FEATURE, 'Feature', 'hammer'),
new IssueType(self::ENHANCEMENT, 'Enhancement', 'wand'),
new IssueType(self::BUG, 'Bug', 'bug'),
new IssueType(self::CRASH, 'Crash', 'fire'),
new IssueType(self::TASK, 'Task', 'clock')];
self::$all = [];
foreach($types as $type){
self::$all[$type->id] = $type;
}
self::$unknown = new IssueType('unknown', 'Unknown', 'warning');
}
public static function get(string $id): self{
return self::$all[$id] ?? self::$unknown;
}
public static function exists(string $id): bool{
return isset(self::$all[$id]);
}
/**
* @return self[]
*/
public static function list(): array{
return array_values(self::$all);
}
private string $id;
private string $title;
private string $icon;
private function __construct(string $id, string $title, string $icon){
$this->id = $id;
$this->title = $title;
$this->icon = $icon;
}
public function getId(): string{
return $this->id;
}
public function getTitle(): string{
return $this->title;
}
public function getTagClass(): string{
return 'icon icon-'.$this->icon;
}
public function getViewable(bool $icon_only): IViewable{
if ($icon_only){
$html = <<<HTML
<span class="icon icon-$this->icon faded" title="$this->title"></span>
HTML;
}
else{
$html = <<<HTML
<span class="icon icon-$this->icon faded"></span> $this->title
HTML;
}
return new Html($html);
}
}
IssueType::init();
?>