Passed
Pull Request — main (#5144)
by
unknown
13:14 queued 04:39
created

UidRenderer::render()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 36
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 9
c 1
b 0
f 0
nc 3
nop 2
dl 0
loc 36
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") {
0 ignored issues
show
Bug introduced by
The property linkText is declared private in Fisharebest\Webtrees\CommonMark\UidNode and cannot be accessed from this context.
Loading history...
49
            $html = $node->record()->fullName();
50
        #TODO Needs to be checked if the record has the fact asked for
51
        #TODO Needs take the date format defined acording to the language shown.
52
        #TODO } elseif ($node->linkText === "BIRT:DATE") {
53
        #TODO     $html = $node->record()->fullName();
54
        #TODO                 $tmp   = new Date($value);
55
        #TODO                 $dfmt = "%j %F %Y";
56
        #TODO                 $value = strip_tags($tmp->display(null, $dfmt));
57
        #TODO } elseif ($node->linkText === "BIRT:PLAC") {
58
        #TODO     $html = $node->record()->fullName();
59
        #TODO                 $tmp   = new Place($value, $this->tree);
60
        #TODO                 $value = $tmp->shortName();
61
        #TODO } elseif ($node->linkText === "DEAT:DATE") {
62
        #TODO     $html = $node->record()->fullName();
63
        #TODO                 $tmp   = new Date($value);
64
        #TODO                 $dfmt = "%j %F %Y";
65
        #TODO                 $value = strip_tags($tmp->display(null, $dfmt));
66
        #TODO } elseif ($node->linkText === "DEAT:PLAC") {
67
        #TODO     $html = $node->record()->fullName();
68
        #TODO                 $tmp   = new Place($value, $this->tree);
69
        #TODO                 $value = $tmp->shortName();
70
        } else {
71
            $html = $node->linkText();
72
        }
73
74
        return new HtmlElement('a', ['href' => $href], $html);
75
    }
76
}
77