Passed
Push — render-xml ( 61b7f8 )
by Colin
02:12
created

FencedCodeRenderer   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 7
eloc 14
dl 0
loc 48
ccs 17
cts 17
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A render() 0 15 3
A getXmlTagName() 0 3 1
A getXmlAttributes() 0 9 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\FencedCode;
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\Util\Xml;
25
use League\CommonMark\Xml\XmlNodeRendererInterface;
26
27
final class FencedCodeRenderer implements NodeRendererInterface, XmlNodeRendererInterface
28
{
29
    /**
30
     * @param FencedCode $node
31
     *
32
     * {@inheritDoc}
33
     *
34
     * @psalm-suppress MoreSpecificImplementedParamType
35
     */
36 117
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
37
    {
38 117
        FencedCode::assertInstanceOf($node);
39
40 114
        $attrs = $node->data->getData('attributes');
41
42 114
        $infoWords = $node->getInfoWords();
43 114
        if (\count($infoWords) !== 0 && $infoWords[0] !== '') {
44 24
            $attrs->append('class', 'language-' . $infoWords[0]);
45
        }
46
47 114
        return new HtmlElement(
48 114
            'pre',
49 114
            [],
50 114
            new HtmlElement('code', $attrs->export(), Xml::escape($node->getLiteral()))
51
        );
52
    }
53
54 3
    public function getXmlTagName(Node $node): string
55
    {
56 3
        return 'code_block';
57
    }
58
59
    /**
60
     * @param FencedCode $node
61
     *
62
     * @return array<string, scalar>
63
     *
64
     * @psalm-suppress MoreSpecificImplementedParamType
65
     */
66 3
    public function getXmlAttributes(Node $node): array
67
    {
68 3
        FencedCode::assertInstanceOf($node);
69
70 3
        if (($info = $node->getInfo()) === null || $info === '') {
71 3
            return [];
72
        }
73
74 3
        return ['info' => $info];
75
    }
76
}
77