1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* webtrees: online genealogy |
5
|
|
|
* Copyright (C) 2021 webtrees development team |
6
|
|
|
* This program is free software: you can redistribute it and/or modify |
7
|
|
|
* it under the terms of the GNU General Public License as published by |
8
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
* (at your option) any later version. |
10
|
|
|
* This program is distributed in the hope that it will be useful, |
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
* GNU General Public License for more details. |
14
|
|
|
* You should have received a copy of the GNU General Public License |
15
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
declare(strict_types=1); |
19
|
|
|
|
20
|
|
|
namespace Fisharebest\Webtrees\CommonMark; |
21
|
|
|
|
22
|
|
|
use League\CommonMark\Block\Element\AbstractBlock; |
23
|
|
|
use League\CommonMark\Block\Renderer\BlockRendererInterface; |
24
|
|
|
use League\CommonMark\ElementRendererInterface; |
25
|
|
|
use League\CommonMark\Extension\Table\TableRenderer; |
26
|
|
|
use League\CommonMark\HtmlElement; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Class ResponsiveTableRenderer - wrap markdown tables in a responsive DIV element. |
30
|
|
|
* |
31
|
|
|
* @package Fisharebest\Webtrees\CommonMark |
32
|
|
|
*/ |
33
|
|
|
class ResponsiveTableRenderer implements BlockRendererInterface |
34
|
|
|
{ |
35
|
|
|
// A table is made responsive by wrapping it in a DIV element. |
36
|
|
|
private const WRAP_ELEMENT = 'div'; |
37
|
|
|
private const WRAP_ATTRIBUTES = ['class' => 'table-responsive']; |
38
|
|
|
|
39
|
|
|
/** @var TableRenderer */ |
40
|
|
|
private $table_renderer; |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* ResponsiveTableRenderer constructor. |
44
|
|
|
*/ |
45
|
|
|
public function __construct() |
46
|
|
|
{ |
47
|
|
|
$this->table_renderer = new TableRenderer(); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @param AbstractBlock $block |
52
|
|
|
* @param ElementRendererInterface $htmlRenderer |
53
|
|
|
* @param bool $inTightList |
54
|
|
|
* |
55
|
|
|
* @return HtmlElement |
56
|
|
|
*/ |
57
|
|
|
public function render( |
58
|
|
|
AbstractBlock $block, |
59
|
|
|
ElementRendererInterface $htmlRenderer, |
60
|
|
|
bool $inTightList = false |
61
|
|
|
): HtmlElement { |
62
|
|
|
$table_element = $this->table_renderer->render($block, $htmlRenderer, $inTightList); |
63
|
|
|
|
64
|
|
|
return new HtmlElement(self::WRAP_ELEMENT, self::WRAP_ATTRIBUTES, [$table_element]); |
65
|
|
|
} |
66
|
|
|
} |
67
|
|
|
|