ParagraphRenderer   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 7
eloc 12
c 0
b 0
f 0
dl 0
loc 35
ccs 13
cts 13
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A inTightList() 0 11 4
A render() 0 13 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\Renderer\Block;
18
19
use League\CommonMark\Node\Block\Paragraph;
20
use League\CommonMark\Node\Block\TightBlockInterface;
21
use League\CommonMark\Node\Node;
22
use League\CommonMark\Renderer\ChildNodeRendererInterface;
23
use League\CommonMark\Renderer\NodeRendererInterface;
24
use League\CommonMark\Util\HtmlElement;
25
26
final class ParagraphRenderer implements NodeRendererInterface
27
{
28
    /**
29
     * @param Paragraph $node
30
     *
31
     * {@inheritdoc}
32
     *
33
     * @psalm-suppress MoreSpecificImplementedParamType
34
     */
35 2487
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
36
    {
37 2487
        if (! ($node instanceof Paragraph)) {
38 3
            throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
39
        }
40
41 2484
        if ($this->inTightList($node)) {
42 204
            return $childRenderer->renderNodes($node->children());
43
        }
44
45 2349
        $attrs = $node->data->get('attributes');
46
47 2349
        return new HtmlElement('p', $attrs, $childRenderer->renderNodes($node->children()));
48
    }
49
50 2484
    private function inTightList(Paragraph $node): bool
51
    {
52
        // Only check up to two (2) levels above this for tightness
53 2484
        $i = 2;
54 2484
        while (($node = $node->parent()) && $i--) {
55 2481
            if ($node instanceof TightBlockInterface) {
56 291
                return $node->isTight();
57
            }
58
        }
59
60 2250
        return false;
61
    }
62
}
63