Passed
Pull Request — main (#5145)
by
unknown
07:31
created

UidRenderer::render()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 3
eloc 9
c 2
b 0
f 0
nc 3
nop 2
dl 0
loc 16
rs 9.9666
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2025 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\Node\Node;
23
use League\CommonMark\Renderer\ChildNodeRendererInterface;
24
use League\CommonMark\Renderer\NodeRendererInterface;
25
use League\CommonMark\Util\HtmlElement;
26
use Stringable;
27
28
/**
29
 * Convert XREFs within markdown text to links
30
 */
31
class UidRenderer implements NodeRendererInterface
32
{
33
    /**
34
     * @param Node                       $node
35
     * @param ChildNodeRendererInterface $childRenderer
36
     *
37
     * @return Stringable
38
     */
39
    public function render(Node $node, ChildNodeRendererInterface $childRenderer): Stringable
40
    {
41
        UidNode::assertInstanceOf($node);
42
43
        /** @var UidNode $node */
44
        $href = $node->record()->url();
45
46
        if (empty($node->linkText())) {
47
            $html = $node->record()->fullName();
48
        } elseif ($node->linkText() === "FULLNAME") {
49
            $html = $node->record()->fullName();
50
        } else {
51
            $html = $node->linkText();
52
        }
53
54
        return new HtmlElement('a', ['href' => $href], $html);
55
    }
56
}
57