summaryrefslogtreecommitdiffstats
path: root/library/Icingadb/Widget/Detail/HostMetaInfo.php
blob: 78209aa5b9ccde8c39793991a856c423f07d61ae (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php

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

namespace Icinga\Module\Icingadb\Widget\Detail;

use Icinga\Date\DateFormatter;
use Icinga\Module\Icingadb\Model\Host;
use ipl\Web\Widget\EmptyState;
use ipl\Web\Widget\HorizontalKeyValue;
use ipl\Web\Widget\VerticalKeyValue;
use ipl\Html\Attributes;
use ipl\Html\BaseHtmlElement;
use ipl\Html\HtmlDocument;
use ipl\Html\HtmlElement;
use ipl\Web\Widget\Icon;

class HostMetaInfo extends BaseHtmlElement
{
    protected $tag = 'div';

    protected $defaultAttributes = ['class' => 'object-meta-info'];

    /** @var Host */
    protected $host;

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

    protected function assemble()
    {
        $this->addHtml(
            new VerticalKeyValue('host.name', $this->host->name),
            new HtmlElement(
                'div',
                null,
                new HorizontalKeyValue(
                    'host.address',
                    $this->host->address ?: new EmptyState(t('None', 'address'))
                ),
                new HorizontalKeyValue(
                    'host.address6',
                    $this->host->address6 ?: new EmptyState(t('None', 'address'))
                )
            ),
            new VerticalKeyValue(
                'last_state_change',
                $this->host->state->last_state_change !== null
                    ? DateFormatter::formatDateTime($this->host->state->last_state_change->getTimestamp())
                    : (new EmptyState(t('n. a.')))->setTag('span')
            )
        );

        $collapsible = new HtmlElement('div', Attributes::create([
            'class' => 'collapsible',
            'id'    => 'object-meta-info',
            'data-toggle-element' => '.object-meta-info-control',
            'data-visible-height' => 0
        ]));

        $renderHelper = new HtmlDocument();
        $renderHelper->addHtml(
            $this,
            new HtmlElement(
                'button',
                Attributes::create(['class' => 'object-meta-info-control']),
                new Icon('angle-double-up', ['class' => 'collapse-icon']),
                new Icon('angle-double-down', ['class' => 'expand-icon'])
            )
        );

        $this->addWrapper($collapsible);
        $this->addWrapper($renderHelper);
    }
}