Passed
Push — main ( 989696...2152d5 )
by Colin
05:14 queued 02:09
created

ListBlockRenderer::getXmlAttributes()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 18
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 3

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 18
ccs 10
cts 10
cp 1
rs 9.9
c 0
b 0
f 0
cc 3
nc 3
nop 1
crap 3
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
11
 *  - (c) John MacFarlane
12
 *
13
 * For the full copyright and license information, please view the LICENSE
14
 * file that was distributed with this source code.
15
 */
16
17
namespace League\CommonMark\Extension\CommonMark\Renderer\Block;
18
19
use League\CommonMark\Extension\CommonMark\Node\Block\ListBlock;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
use League\CommonMark\Util\HtmlElement;
24
use League\CommonMark\Xml\XmlNodeRendererInterface;
25
26
final class ListBlockRenderer implements NodeRendererInterface, XmlNodeRendererInterface
27
{
28
    /**
29
     * @param ListBlock $node
30
     *
31
     * {@inheritDoc}
32
     *
33
     * @psalm-suppress MoreSpecificImplementedParamType
34
     */
35 330
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
36
    {
37 330
        ListBlock::assertInstanceOf($node);
38
39 327
        $listData = $node->getListData();
40
41 327
        $tag = $listData->type === ListBlock::TYPE_BULLET ? 'ul' : 'ol';
42
43 327
        $attrs = $node->data->get('attributes');
44
45 327
        if ($listData->start !== null && $listData->start !== 1) {
46 33
            $attrs['start'] = (string) $listData->start;
47
        }
48
49 327
        $innerSeparator = $childRenderer->getInnerSeparator();
50
51 327
        return new HtmlElement($tag, $attrs, $innerSeparator . $childRenderer->renderNodes($node->children()) . $innerSeparator);
52
    }
53
54 39
    public function getXmlTagName(Node $node): string
55
    {
56 39
        return 'list';
57
    }
58
59
    /**
60
     * @param ListBlock $node
61
     *
62
     * @return array<string, scalar>
63
     *
64
     * @psalm-suppress MoreSpecificImplementedParamType
65
     */
66 45
    public function getXmlAttributes(Node $node): array
67
    {
68 45
        ListBlock::assertInstanceOf($node);
69
70 45
        $data = $node->getListData();
71
72 45
        if ($data->type === ListBlock::TYPE_BULLET) {
73
            return [
74 42
                'type' => $data->type,
75 42
                'tight' => $node->isTight() ? 'true' : 'false',
76
            ];
77
        }
78
79
        return [
80 9
            'type' => $data->type,
81 9
            'start' => $data->start ?? 1,
82 9
            'tight' => $node->isTight(),
83 9
            'delimiter' => $data->delimiter ?? ListBlock::DELIM_PERIOD,
84
        ];
85
    }
86
}
87