1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2018 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees\Http\Controllers;
use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\FontAwesome;
use Fisharebest\Webtrees\Functions\FunctionsCharts;
use Fisharebest\Webtrees\Functions\FunctionsPrint;
use Fisharebest\Webtrees\GedcomTag;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Theme;
use Fisharebest\Webtrees\Tree;
use Ramsey\Uuid\Uuid;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* A chart of direct-line descendants.
*/
class DescendantsChartController extends AbstractChartController
{
// Chart styles
const CHART_STYLE_LIST = 0;
const CHART_STYLE_BOOKLET = 1;
const CHART_STYLE_INDIVIDUALS = 2;
const CHART_STYLE_FAMILIES = 3;
// Defaults
const DEFAULT_STYLE = self::CHART_STYLE_LIST;
const DEFAULT_GENERATIONS = '3';
const DEFAULT_MAXIMUM_GENERATIONS = '9';
/** @var int[] */
protected $dabo_num = [];
/** @var string[] */
protected $dabo_sex = [];
/**
* A form to request the chart parameters.
*
* @param Request $request
* @param Tree $tree
*
* @return Response
*/
public function page(Request $request, Tree $tree): Response
{
$this->checkModuleIsActive($tree, 'descendancy_chart');
$xref = $request->get('xref');
$individual = Individual::getInstance($xref, $tree);
$this->checkIndividualAccess($individual);
$minimum_generations = 2;
$maximum_generations = (int) $tree->getPreference('MAX_DESCENDANCY_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS);
$default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS);
$chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE);
$generations = (int) $request->get('generations', $default_generations);
$generations = min($generations, $maximum_generations);
$generations = max($generations, $minimum_generations);
if ($individual !== null && $individual->canShowName()) {
/* I18N: %s is an individual’s name */
$title = I18N::translate('Descendants of %s', $individual->getFullName());
} else {
$title = I18N::translate('Descendants');
}
return $this->viewResponse('descendants-page', [
'chart_style' => $chart_style,
'chart_styles' => $this->chartStyles(),
'default_generations' => $default_generations,
'generations' => $generations,
'individual' => $individual,
'maximum_generations' => $maximum_generations,
'minimum_generations' => $minimum_generations,
'title' => $title,
]);
}
/**
* @param Request $request
* @param Tree $tree
*
* @return Response
*/
public function chart(Request $request, Tree $tree): Response
{
$this->checkModuleIsActive($tree, 'descendancy_chart');
$xref = $request->get('xref');
$individual = Individual::getInstance($xref, $tree);
$this->checkIndividualAccess($individual);
$minimum_generations = 2;
$maximum_generations = (int) $tree->getPreference('MAX_PEDIGREE_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS);
$default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS);
$chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE);
$generations = (int) $request->get('generations', $default_generations);
$generations = min($generations, $maximum_generations);
$generations = max($generations, $minimum_generations);
$descendants = $this->descendants($individual, $generations, []);
switch ($chart_style) {
case self::CHART_STYLE_LIST:
default:
return $this->descendantsList($individual, $generations);
case self::CHART_STYLE_BOOKLET:
return $this->descendantsBooklet($individual, $generations);
case self::CHART_STYLE_INDIVIDUALS:
return $this->descendantsIndividuals($tree, $descendants);
case self::CHART_STYLE_FAMILIES:
return $this->descendantsFamilies($tree, $descendants);
}
}
/**
* Show a hierarchical list of descendants
*
* @TODO replace ob_start() with views.
*
* @param Individual $individual
* @param int $generations
*
* @return Response
*/
private function descendantsList(Individual $individual, int $generations): Response
{
ob_start();
echo '<ul class="chart_common">';
$this->printChildDescendancy($individual, $generations, $generations);
echo '</ul>';
$html = ob_get_clean();
return new Response($html);
}
/**
* print a child descendancy
*
* @param Individual $person
* @param int $depth the descendancy depth to show
* @param int $generations
*
* @return void
*/
private function printChildDescendancy(Individual $person, $depth, int $generations)
{
echo '<li>';
echo '<table><tr><td>';
if ($depth == $generations) {
echo '<img src="' . Theme::theme()->parameter('image-spacer') . '" height="3" width="15"></td><td>';
} else {
echo '<img src="' . Theme::theme()->parameter('image-spacer') . '" height="3" width="3">';
echo '<img src="' . Theme::theme()->parameter('image-hline') . '" height="3" width="', 12, '"></td><td>';
}
echo FunctionsPrint::printPedigreePerson($person);
echo '</td>';
// check if child has parents and add an arrow
echo '<td></td>';
echo '<td>';
foreach ($person->getChildFamilies() as $cfamily) {
foreach ($cfamily->getSpouses() as $parent) {
echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged' => $parent->tree()->name(),
'xref' => $parent->xref(),
'generations' => $generations,
]),
]);
// only show the arrow for one of the parents
break;
}
}
// d'Aboville child number
$level = $generations - $depth;
echo '<br><br> ';
echo '<span dir="ltr">'; //needed so that RTL languages will display this properly
if (!isset($this->dabo_num[$level])) {
$this->dabo_num[$level] = 0;
}
$this->dabo_num[$level]++;
$this->dabo_num[$level + 1] = 0;
$this->dabo_sex[$level] = $person->getSex();
for ($i = 0; $i <= $level; $i++) {
$isf = $this->dabo_sex[$i];
if ($isf === 'M') {
$isf = '';
}
if ($isf === 'U') {
$isf = 'NN';
}
echo '<span class="person_box' . $isf . '"> ' . $this->dabo_num[$i] . ' </span>';
if ($i < $level) {
echo '.';
}
}
echo '</span>';
echo '</td></tr>';
echo '</table>';
echo '</li>';
// loop for each spouse
foreach ($person->getSpouseFamilies() as $family) {
$this->printFamilyDescendancy($person, $family, $depth, $generations);
}
}
/**
* print a family descendancy
*
* @param Individual $person
* @param Family $family
* @param int $depth the descendancy depth to show
* @param int $generations
*
* @return void
*/
private function printFamilyDescendancy(Individual $person, Family $family, int $depth, int $generations)
{
$uid = Uuid::uuid4()->toString(); // create a unique ID
// print marriage info
echo '<li>';
echo '<img src="', Theme::theme()->parameter('image-spacer'), '" height="2" width="', 19, '">';
echo '<span class="details1">';
echo '<a href="#" onclick="expand_layer(\'' . $uid . '\'); return false;" class="top"><i id="' . $uid . '_img" class="icon-minus" title="' . I18N::translate('View this family') . '"></i></a>';
if ($family->canShow()) {
foreach ($family->facts(WT_EVENTS_MARR) as $fact) {
echo ' <a href="', e($family->url()), '" class="details1">', $fact->summary(), '</a>';
}
}
echo '</span>';
// print spouse
$spouse = $family->getSpouse($person);
echo '<ul class="generations" id="' . $uid . '">';
echo '<li>';
echo '<table><tr><td>';
echo FunctionsPrint::printPedigreePerson($spouse);
echo '</td>';
// check if spouse has parents and add an arrow
echo '<td></td>';
echo '<td>';
if ($spouse) {
foreach ($spouse->getChildFamilies() as $cfamily) {
foreach ($cfamily->getSpouses() as $parent) {
echo FontAwesome::linkIcon('arrow-up', I18N::translate('Start at parents'), ['href' => route('descendants', ['ged' => $parent->tree()->name(),
'xref' => $parent->xref(),
'generations' => $generations,
]),
]);
// only show the arrow for one of the parents
break;
}
}
}
echo '<br><br> ';
echo '</td></tr>';
// children
$children = $family->getChildren();
echo '<tr><td colspan="3" class="details1" > ';
if (!empty($children)) {
echo GedcomTag::getLabel('NCHI') . ': ' . count($children);
} else {
// Distinguish between no children (NCHI 0) and no recorded
// children (no CHIL records)
if (strpos($family->gedcom(), '\n1 NCHI 0') !== false) {
echo GedcomTag::getLabel('NCHI') . ': ' . count($children);
} else {
echo I18N::translate('No children');
}
}
echo '</td></tr></table>';
echo '</li>';
if ($depth > 1) {
foreach ($children as $child) {
$this->printChildDescendancy($child, $depth - 1, $generations);
}
}
echo '</ul>';
echo '</li>';
}
/**
* Show a tabular list of individual descendants.
*
* @param Tree $tree
* @param Individual[] $descendants
*
* @return Response
*/
private function descendantsIndividuals(Tree $tree, array $descendants): Response
{
$html = view('lists/individuals-table', [
'individuals' => $descendants,
'sosa' => false,
'tree' => $tree,
]);
return new Response($html);
}
/**
* Show a tabular list of individual descendants.
*
* @param Tree $tree
* @param Individual[] $descendants
*
* @return Response
*/
private function descendantsFamilies(Tree $tree, array $descendants): Response
{
$families = [];
foreach ($descendants as $individual) {
foreach ($individual->getChildFamilies() as $family) {
$families[$family->xref()] = $family;
}
}
$html = view('lists/families-table', [
'families' => $families,
'tree' => $tree,
]);
return new Response($html);
}
/**
* Show a booklet view of descendants
*
* @TODO replace ob_start() with views.
*
* @param Individual $individual
* @param int $generations
*
* @return Response
*/
private function descendantsBooklet(Individual $individual, int $generations): Response
{
ob_start();
$this->printChildFamily($individual, $generations);
$html = ob_get_clean();
return new Response($html);
}
/**
* Print a child family
*
* @param Individual $individual
* @param int $depth - the descendancy depth to show
* @param string $daboville - d'Aboville number
* @param string $gpid
*
* @return void
*/
private function printChildFamily(Individual $individual, $depth, $daboville = '1.', $gpid = '')
{
if ($depth < 2) {
return;
}
$i = 1;
foreach ($individual->getSpouseFamilies() as $family) {
FunctionsCharts::printSosaFamily($family, '', -1, $daboville, $individual->xref(), $gpid, false);
foreach ($family->getChildren() as $child) {
$this->printChildFamily($child, $depth - 1, $daboville . ($i++) . '.', $individual->xref());
}
}
}
/**
* This chart can display its output in a number of styles
*
* @return array
*/
private function chartStyles(): array
{
return [
self::CHART_STYLE_LIST => I18N::translate('List'),
self::CHART_STYLE_BOOKLET => I18N::translate('Booklet'),
self::CHART_STYLE_INDIVIDUALS => I18N::translate('Individuals'),
self::CHART_STYLE_FAMILIES => I18N::translate('Families'),
];
}
}
|