xref: /webtrees/resources/views/individual-page.phtml (revision 7bb122d69bf8a45328cbee345e6744a32e16a8b0)
12c3dad18SGreg Roach<?php
2852ede8cSGreg Roach
32c3dad18SGreg Roachuse Fisharebest\Webtrees\Auth;
42917771cSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\AddNewFact;
522e73debSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesAcceptRecord;
622e73debSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\PendingChangesRejectRecord;
72c3dad18SGreg Roachuse Fisharebest\Webtrees\I18N;
82c3dad18SGreg Roachuse Fisharebest\Webtrees\Individual;
92c3dad18SGreg Roachuse Fisharebest\Webtrees\View;
102c3dad18SGreg Roachuse Illuminate\Support\Collection;
112c3dad18SGreg Roach
122c3dad18SGreg Roach/**
132c3dad18SGreg Roach * @var Individual $individual
142c3dad18SGreg Roach * @var string     $user_link
152c3dad18SGreg Roach * @var Collection $sidebars
168e64ca84SGreg Roach * @var Collection $individual_media
172c3dad18SGreg Roach * @var Collection $name_records
182c3dad18SGreg Roach * @var Collection $sex_records
192c3dad18SGreg Roach * @var Collection $tabs
202c3dad18SGreg Roach */
212c3dad18SGreg Roach?>
22dd6b2bfcSGreg Roach
23dd6b2bfcSGreg Roach<?php if ($individual->isPendingDeletion()) : ?>
24f4afa648SGreg Roach    <?php if (Auth::isModerator($individual->tree())) : ?>
25dd6b2bfcSGreg Roach        <?= view('components/alert-warning-dismissible', [
26dd6b2bfcSGreg Roach            'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */
270973b4d2SGreg Roach                I18N::translate('This individual has been deleted. You should review the deletion and then %1$s or %2$s it.', '<a href="#" class="alert-link" data-post-url="' . e(route(PendingChangesAcceptRecord::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) . '">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'accept') . '</a>', '<a href="#" class="alert-link" data-post-url="' . e(route(PendingChangesRejectRecord::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) . '">' . I18N::translateContext('You should review the deletion and then accept or reject it.', 'reject') . '</a>') . ' ' . view('help/link', ['topic' => 'pending_changes']),
28dd6b2bfcSGreg Roach        ]) ?>
29f4afa648SGreg Roach    <?php elseif (Auth::isEditor($individual->tree())) : ?>
300973b4d2SGreg Roach        <?= view('components/alert-warning-dismissible', ['alert' => I18N::translate('This individual has been deleted. The deletion will need to be reviewed by a moderator.') . ' ' . view('help/link', ['topic' => 'pending_changes'])]) ?>
31dd6b2bfcSGreg Roach    <?php endif ?>
32dd6b2bfcSGreg Roach<?php elseif ($individual->isPendingAddition()) : ?>
33f4afa648SGreg Roach    <?php if (Auth::isModerator($individual->tree())) : ?>
34dd6b2bfcSGreg Roach        <?= view('components/alert-warning-dismissible', [
35dd6b2bfcSGreg Roach            'alert' => /* I18N: %1$s is “accept”, %2$s is “reject”. These are links. */
360973b4d2SGreg Roach                I18N::translate('This individual has been edited. You should review the changes and then %1$s or %2$s them.', '<a href="#" class="alert-link" data-post-url="' . e(route(PendingChangesAcceptRecord::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) . '">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'accept') . '</a>', '<a href="#" class="alert-link" data-post-url="' . e(route(PendingChangesRejectRecord::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) . '">' . I18N::translateContext('You should review the changes and then accept or reject them.', 'reject') . '</a>') . ' ' . view('help/link', ['topic' => 'pending_changes']),
37dd6b2bfcSGreg Roach        ]) ?>
38f4afa648SGreg Roach    <?php elseif (Auth::isEditor($individual->tree())) : ?>
390973b4d2SGreg Roach        <?= view('components/alert-warning-dismissible', ['alert' => I18N::translate('This individual has been edited. The changes need to be reviewed by a moderator.') . ' ' . view('help/link', ['topic' => 'pending_changes'])]) ?>
40dd6b2bfcSGreg Roach    <?php endif ?>
41dd6b2bfcSGreg Roach<?php endif ?>
42dd6b2bfcSGreg Roach
43dd6b2bfcSGreg Roach<div class="d-flex mb-4">
44dd6b2bfcSGreg Roach    <h2 class="wt-page-title mx-auto">
455e6816beSGreg Roach        <?= $individual->fullName() ?><?= $user_link ?>, <?= $individual->lifespan() ?> <?= $age ?>
46dd6b2bfcSGreg Roach    </h2>
471450f098SGreg Roach    <?php if ($individual->canEdit()) : ?>
48*7bb122d6SGreg Roach        <?= view('individual-page-menu', ['individual' => $individual, 'tree' => $tree]) ?>
49dd6b2bfcSGreg Roach    <?php endif ?>
50dd6b2bfcSGreg Roach</div>
51dd6b2bfcSGreg Roach
52dd6b2bfcSGreg Roach<div class="row">
538d38dd5aSGreg Roach    <div class="<?= $sidebars->isEmpty() ? 'col-sm-12' : 'col-sm-8' ?>">
54dd6b2bfcSGreg Roach        <div class="row mb-4">
55dd6b2bfcSGreg Roach            <!-- Individual images -->
568e64ca84SGreg Roach            <?php if ($individual_media->isNotEmpty() || $tree->getPreference('USE_SILHOUETTE') === '1') : ?>
57dd6b2bfcSGreg Roach                <div class="col-sm-3">
588e64ca84SGreg Roach                    <?php if ($individual_media->isEmpty()) : ?>
598e64ca84SGreg Roach                        <div class="img-thumbnail">
6039ca88baSGreg Roach                            <i class="wt-individual-silhouette wt-individual-silhouette-<?= strtolower($individual->sex()) ?>"></i>
618e64ca84SGreg Roach                        </div>
628e64ca84SGreg Roach                    <?php elseif ($individual_media->count() === 1) : ?>
638e64ca84SGreg Roach                        <?= $individual_media->first()->displayImage(200, 260, 'crop', ['class' => 'img-thumbnail img-fluid w-100']) ?>
64dd6b2bfcSGreg Roach                    <?php else : ?>
65dd6b2bfcSGreg Roach                        <div id="individual-images" class="carousel slide" data-ride="carousel" data-interval="false">
66dd6b2bfcSGreg Roach                            <div class="carousel-inner">
67dd6b2bfcSGreg Roach                                <?php foreach ($individual_media as $n => $media_file) : ?>
68dd6b2bfcSGreg Roach                                    <div class="carousel-item <?= $n === 0 ? 'active' : '' ?>">
69dd6b2bfcSGreg Roach                                        <?= $media_file->displayImage(200, 260, 'crop', ['class' => 'img-thumbnail img-fluid w-100']) ?>
70dd6b2bfcSGreg Roach                                    </div>
71dd6b2bfcSGreg Roach                                <?php endforeach ?>
72dd6b2bfcSGreg Roach                            </div>
73dd6b2bfcSGreg Roach                            <a class="carousel-control-prev" href="#individual-images" role="button" data-slide="prev">
74dd6b2bfcSGreg Roach                                <span class="carousel-control-prev-icon" aria-hidden="true"></span>
75dd6b2bfcSGreg Roach                                <span class="sr-only"><?= I18N::translate('previous') ?></span>
76dd6b2bfcSGreg Roach                            </a>
77dd6b2bfcSGreg Roach                            <a class="carousel-control-next" href="#individual-images" role="button" data-slide="next">
78dd6b2bfcSGreg Roach                                <span class="carousel-control-next-icon" aria-hidden="true"></span>
79dd6b2bfcSGreg Roach                                <span class="sr-only"><?= I18N::translate('next') ?></span>
80dd6b2bfcSGreg Roach                            </a>
81dd6b2bfcSGreg Roach                        </div>
82dd6b2bfcSGreg Roach                    <?php endif ?>
83dd6b2bfcSGreg Roach
84f4afa648SGreg Roach                    <?php if (Auth::isEditor($individual->tree())) : ?>
858e64ca84SGreg Roach                        <div class="text-center">
862917771cSGreg Roach                            <a href="<?= e(route(AddNewFact::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref(), 'fact' => 'OBJE'])) ?>">
87dd6b2bfcSGreg Roach                                <?= I18N::translate('Add a media object') ?>
88dd6b2bfcSGreg Roach                            </a>
89dd6b2bfcSGreg Roach                        </div>
90dd6b2bfcSGreg Roach                    <?php endif ?>
91dd6b2bfcSGreg Roach                </div>
928e64ca84SGreg Roach            <?php endif ?>
93dd6b2bfcSGreg Roach
94dd6b2bfcSGreg Roach            <!-- Name accordion -->
958e64ca84SGreg Roach            <div class="col-sm" id="individual-names" role="tablist">
96dd6b2bfcSGreg Roach                <?php foreach ($name_records as $name_record) : ?>
97dd6b2bfcSGreg Roach                    <?= $name_record ?>
98dd6b2bfcSGreg Roach                <?php endforeach ?>
99dd6b2bfcSGreg Roach
100dd6b2bfcSGreg Roach                <?php foreach ($sex_records as $sex_record) : ?>
101dd6b2bfcSGreg Roach                    <?= $sex_record ?>
102dd6b2bfcSGreg Roach                <?php endforeach ?>
103dd6b2bfcSGreg Roach            </div>
104dd6b2bfcSGreg Roach        </div>
105dd6b2bfcSGreg Roach
1064a2590a5SGreg Roach        <div class="wt-tabs-individual" id="individual-tabs">
107dd6b2bfcSGreg Roach            <ul class="nav nav-tabs flex-wrap">
108dd6b2bfcSGreg Roach                <?php foreach ($tabs as $tab) : ?>
109dd6b2bfcSGreg Roach                    <li class="nav-item">
110852ede8cSGreg Roach                        <a class="nav-link<?= $tab->isGrayedOut($individual) ? ' text-muted' : '' ?>" data-toggle="tab" role="tab" data-href="<?= e(route('module', ['module' => $tab->name(), 'action' => 'Tab', 'tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) ?>" href="#<?= $tab->name() ?>">
111defb8071SRichard Cissée                            <?= $tab->tabTitle() ?>
112dd6b2bfcSGreg Roach                        </a>
113dd6b2bfcSGreg Roach                    </li>
114dd6b2bfcSGreg Roach                <?php endforeach ?>
115dd6b2bfcSGreg Roach            </ul>
116dd6b2bfcSGreg Roach            <div class="tab-content">
117dd6b2bfcSGreg Roach                <?php foreach ($tabs as $tab) : ?>
118677aaceaSGreg Roach                    <div id="<?= $tab->name() ?>" class="tab-pane fade wt-ajax-load" role="tabpanel"><?php if (!$tab->canLoadAjax()) :
119d70512abSGreg Roach                        ?><?= $tab->getTabContent($individual) ?><?php
120d70512abSGreg Roach                             endif ?></div>
121dd6b2bfcSGreg Roach                <?php endforeach ?>
122dd6b2bfcSGreg Roach            </div>
123dd6b2bfcSGreg Roach        </div>
124dd6b2bfcSGreg Roach    </div>
125c72fc94cSGreg Roach    <?php if ($sidebars->isNotEmpty()) : ?>
126dd6b2bfcSGreg Roach    <div class="col-sm-4" id="sidebar" role="tablist">
127dd6b2bfcSGreg Roach        <?php foreach ($sidebars as $sidebar) : ?>
128dd6b2bfcSGreg Roach            <div class="card">
129677aaceaSGreg Roach                <div class="card-header" role="tab" id="sidebar-header-<?= $sidebar->name() ?>">
130dd6b2bfcSGreg Roach                    <div class="card-title mb-0">
131677aaceaSGreg Roach                        <a data-toggle="collapse" data-parent="#sidebar" href="#sidebar-content-<?= $sidebar->name() ?>" aria-expanded="<?= $sidebar->name() === 'family_nav' ? 'true' : 'false' ?>" aria-controls="sidebar-content-<?= $sidebar->name() ?>">
132defb8071SRichard Cissée                            <?= $sidebar->sidebarTitle() ?>
133dd6b2bfcSGreg Roach                        </a>
134dd6b2bfcSGreg Roach                    </div>
135dd6b2bfcSGreg Roach                </div>
136677aaceaSGreg Roach                <div id="sidebar-content-<?= $sidebar->name() ?>" class="collapse<?= $sidebar->name() === 'family_nav' ? ' show' : '' ?>" role="tabpanel" aria-labelledby="sidebar-header-<?= $sidebar->name() ?>">
137dd6b2bfcSGreg Roach                    <div class="card-body">
138dd6b2bfcSGreg Roach                        <?= $sidebar->getSidebarContent($individual) ?></div>
139dd6b2bfcSGreg Roach                </div>
140dd6b2bfcSGreg Roach            </div>
141dd6b2bfcSGreg Roach        <?php endforeach ?>
142dd6b2bfcSGreg Roach    </div>
143c72fc94cSGreg Roach    <?php endif ?>
144dd6b2bfcSGreg Roach</div>
145dd6b2bfcSGreg Roach
146dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
147dd6b2bfcSGreg Roach<script>
148dd6b2bfcSGreg Roach  "use strict";
149dd6b2bfcSGreg Roach
150dd6b2bfcSGreg Roach  // Bootstrap tabs - load content dynamically using AJAX
151dd6b2bfcSGreg Roach  $('a[data-toggle="tab"][data-href]').on('show.bs.tab', function () {
152dd6b2bfcSGreg Roach    $(this.getAttribute('href') + ':empty').load($(this).data('href'));
153dd6b2bfcSGreg Roach  });
154dd6b2bfcSGreg Roach
155dd6b2bfcSGreg Roach  // If the URL contains a fragment, then activate the corresponding tab.
156dd6b2bfcSGreg Roach  // Use a prefix on the fragment, to prevent scrolling to the element.
157dd6b2bfcSGreg Roach  var target = window.location.hash.replace("tab-", "");
158dd6b2bfcSGreg Roach  var tab    = $("#individual-tabs .nav-link[href='" + target + "']");
159dd6b2bfcSGreg Roach  // If not, then activate the first tab.
160dd6b2bfcSGreg Roach  if (tab.length === 0) {
161dd6b2bfcSGreg Roach    tab = $("#individual-tabs .nav-link:first");
162dd6b2bfcSGreg Roach  }
163dd6b2bfcSGreg Roach  tab.tab("show");
164dd6b2bfcSGreg Roach
165dd6b2bfcSGreg Roach  // If the user selects a tab, update the URL to reflect this
166dd6b2bfcSGreg Roach  $('#individual-tabs a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
167dd6b2bfcSGreg Roach    window.location.hash = "tab-" + e.target.href.substring(e.target.href.indexOf('#') + 1);
168dd6b2bfcSGreg Roach  });
169dd6b2bfcSGreg Roach</script>
170dd6b2bfcSGreg Roach<?php View::endpush() ?>
171dd6b2bfcSGreg Roach
172dd6b2bfcSGreg Roach<?= view('modals/ajax') ?>
173