summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Common/BaseTableRowItem.php
blob: bc61c8eb2b44dd9d3f1118875d0138b191eedf4f (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php

namespace ipl\Web\Common;

use ipl\Html\Attributes;
use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
use ipl\Html\HtmlDocument;
use ipl\Html\HtmlElement;

abstract class BaseTableRowItem extends BaseHtmlElement
{
    /** @var array<string, mixed> */
    protected $baseAttributes = ['class' => 'table-row'];

    /** @var object The associated list item */
    protected $item;

    /** @var ?BaseItemTable The list where the item is part of */
    protected $table;

    protected $tag = 'li';

    /**
     * Create a new table row item
     *
     * @param object $item
     * @param BaseItemTable|null $table
     */
    public function __construct($item, BaseItemTable $table = null)
    {
        $this->item = $item;
        $this->table = $table;

        if ($table === null) {
            $this->setTag('div');
        }

        $this->addAttributes($this->baseAttributes);

        $this->init();
    }

    abstract protected function assembleTitle(BaseHtmlElement $title): void;

    protected function assembleColumns(HtmlDocument $columns): void
    {
    }

    protected function assembleVisual(BaseHtmlElement $visual): void
    {
    }

    /**
     * Create column
     *
     * @param mixed $content
     *
     * @return BaseHtmlElement
     */
    protected function createColumn($content = null): BaseHtmlElement
    {
        return new HtmlElement(
            'div',
            Attributes::create(['class' => 'col']),
            new HtmlElement(
                'div',
                Attributes::create(['class' => 'content']),
                ...Html::wantHtmlList($content)
            )
        );
    }

    protected function createColumns(): HtmlDocument
    {
        $columns = new HtmlDocument();

        $this->assembleColumns($columns);

        return $columns;
    }

    protected function createTitle(): BaseHtmlElement
    {
        $title = $this->createColumn()->addAttributes(['class' => 'title']);

        $this->assembleTitle($title->getFirst('div'));

        $title->prepend($this->createVisual());

        return $title;
    }

    protected function createVisual(): ?BaseHtmlElement
    {
        $visual = new HtmlElement('div', Attributes::create(['class' => 'visual']));

        $this->assembleVisual($visual);

        return $visual->isEmpty() ? null : $visual;
    }

    /**
     * Initialize the list item
     *
     * If you want to adjust the list item after construction, override this method.
     */
    protected function init(): void
    {
    }

    protected function assemble(): void
    {
        $this->addHtml(
            $this->createTitle(),
            $this->createColumns()
        );
    }
}