summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Common/BaseStatusBar.php
blob: 7339eb20229dbceb9660cdf913e979f5f195683b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php

/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */

namespace Icinga\Module\Icingadb\Common;

use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;

abstract class BaseStatusBar extends BaseHtmlElement
{
    use BaseFilter;

    protected $summary;

    protected $tag = 'div';

    protected $defaultAttributes = ['class' => 'status-bar'];

    public function __construct($summary)
    {
        $this->summary = $summary;
    }

    abstract protected function assembleTotal(BaseHtmlElement $total);

    abstract protected function createStateBadges(): BaseHtmlElement;

    protected function createCount(): BaseHtmlElement
    {
        $total = Html::tag('span', ['class' => 'item-count']);

        $this->assembleTotal($total);

        return $total;
    }

    protected function assemble()
    {
        $this->add([
            $this->createCount(),
            $this->createStateBadges()
        ]);
    }
}