summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Widget/StateBadge.php
blob: 908a348bc6f2da5e34b4b2856e1436db446baf86 (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
<?php

namespace ipl\Web\Widget;

use ipl\Html\BaseHtmlElement;

class StateBadge extends BaseHtmlElement
{
    protected $defaultAttributes = ['class' => 'state-badge'];

    /** @var mixed Badge content */
    protected $content;

    /** @var bool Whether the state is handled */
    protected $isHandled;

    /** @var string Textual representation of a state */
    protected $state;

    /**
     * Create a new state badge
     *
     * @param mixed  $content   Content of the badge
     * @param string $state     Textual representation of a state
     * @param bool   $isHandled True if state is handled
     */
    public function __construct($content, string $state, bool $isHandled = false)
    {
        $this->content = $content;
        $this->isHandled = $isHandled;
        $this->state = $state;
    }

    protected function assemble()
    {
        $this->setTag('span');

        $class = "state-{$this->state}";
        if ($this->isHandled) {
            $class .= ' handled';
        }

        $this->addAttributes(['class' => $class]);

        $this->add($this->content);
    }
}