xref: /webtrees/resources/views/modules/pedigree-chart/chart-right.phtml (revision 4fbeb707df82fa5025e6110f443695700edd846c)
1<?php
2
3use Fisharebest\Webtrees\Individual;
4use Illuminate\Support\Collection;
5
6/**
7 * @var Collection|Individual[] $ancestors   Indexed by sosa number
8 * @var int                     $generation  Draw this generation
9 * @var int                     $generations Final generation to draw
10 * @var Collection|string[]     $links       Links to extend the tree
11 * @var int                     $sosa        Draw this individual
12 */
13?>
14
15<div class="d-flex">
16    <div class="position-relative d-flex flex-column justify-content-center wt-pedigree-generation wt-generation-fwd-<?= $generation ?> wt-generation-rev-<?= 1 + $generations - $generation ?>">
17        <!-- lines to the next generation -->
18        <?php if ($generation < $generations) : ?>
19            <div class="wt-pedigree-lines position-absolute"></div>
20        <?php endif ?>
21
22        <div class="d-flex align-items-center">
23            <?php if ($sosa === 1) : ?>
24                <?= $links->get(1) ?>
25            <?php endif ?>
26
27            <?= view('chart-box', ['individual' => $ancestors->get($sosa)]); ?>
28
29            <?php if ($generation === $generations && $links->get($sosa)) : ?>
30                <?= $links->get($sosa) ?>
31            <?php endif ?>
32        </div>
33    </div>
34
35    <?php if ($generation < $generations): ?>
36        <div class="d-flex flex-column">
37            <?= view('modules/pedigree-chart/chart-right', ['ancestors' => $ancestors, 'sosa' => $sosa * 2, 'generation' => $generation + 1, 'generations' => $generations, 'links' => $links]) ?>
38
39            <?= view('modules/pedigree-chart/chart-right', ['ancestors' => $ancestors, 'sosa' => $sosa * 2 + 1, 'generation' => $generation + 1, 'generations' => $generations, 'links' => $links]) ?>
40        </div>
41    <?php endif ?>
42</div>
43
44