xref: /webtrees/resources/views/edit/new-individual.phtml (revision ae71f733426ba390fe96aebda1f69dd50ac56bc0)
1820b62dfSGreg Roach<?php
2820b62dfSGreg Roach
3820b62dfSGreg Roachuse Fisharebest\Webtrees\Auth;
4820b62dfSGreg Roachuse Fisharebest\Webtrees\Fact;
5820b62dfSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
6820b62dfSGreg Roachuse Fisharebest\Webtrees\Gedcom;
7820b62dfSGreg Roachuse Fisharebest\Webtrees\GedcomTag;
83b3db8adSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\EditRawFactPage;
9820b62dfSGreg Roachuse Fisharebest\Webtrees\I18N;
10820b62dfSGreg Roachuse Fisharebest\Webtrees\Individual;
11820b62dfSGreg Roachuse Fisharebest\Webtrees\SurnameTradition;
12820b62dfSGreg Roachuse Fisharebest\Webtrees\View;
13*ae71f733SGreg Roachuse Illuminate\Support\Collection;
14820b62dfSGreg Roach
15820b62dfSGreg Roach/**
16820b62dfSGreg Roach * @var Individual|null $individual
17820b62dfSGreg Roach * @var Fact|null       $name_fact
18820b62dfSGreg Roach */
19820b62dfSGreg Roach
20820b62dfSGreg Roach?>
21dd6b2bfcSGreg Roach
22dd6b2bfcSGreg Roach<?php
23820b62dfSGreg Roachif ($individual instanceof Individual) {
24c0935879SGreg Roach    $xref       = $individual->xref();
25dd6b2bfcSGreg Roach    $cancel_url = $individual->url();
26dd6b2bfcSGreg Roach} elseif ($family !== null) {
27c0935879SGreg Roach    $xref       = $family->xref();
28dd6b2bfcSGreg Roach    $cancel_url = $family->url();
29dd6b2bfcSGreg Roach} else {
300c0910bfSGreg Roach    $cancel_url = route('manage-trees', ['tree' => $tree->name()]);
31dd6b2bfcSGreg Roach    $xref       = 'new';
32dd6b2bfcSGreg Roach}
33dd6b2bfcSGreg Roach
34dd6b2bfcSGreg Roach// Different cultures do surnames differently
35dd6b2bfcSGreg Roach$surname_tradition = SurnameTradition::create($tree->getPreference('SURNAME_TRADITION'));
36dd6b2bfcSGreg Roach
37820b62dfSGreg Roachif ($name_fact instanceof Fact) {
38dd6b2bfcSGreg Roach    // Editing an existing name
39905ab80aSGreg Roach    $name_fact_id = $name_fact->id();
40138ca96cSGreg Roach    $namerec      = $name_fact->gedcom();
41dd6b2bfcSGreg Roach    $name_fields  = [
4284586c02SGreg Roach        'NAME' => $name_fact->value(),
433425616eSGreg Roach        'TYPE' => $name_fact->attribute('TYPE'),
443425616eSGreg Roach        'NPFX' => $name_fact->attribute('NPFX'),
453425616eSGreg Roach        'GIVN' => $name_fact->attribute('GIVN'),
463425616eSGreg Roach        'NICK' => $name_fact->attribute('NICK'),
473425616eSGreg Roach        'SPFX' => $name_fact->attribute('SPFX'),
483425616eSGreg Roach        'SURN' => $name_fact->attribute('SURN'),
493425616eSGreg Roach        'NSFX' => $name_fact->attribute('NSFX'),
50dd6b2bfcSGreg Roach    ];
51dd6b2bfcSGreg Roach} else {
52dd6b2bfcSGreg Roach    // Creating a new name
53dd6b2bfcSGreg Roach    $name_fact_id = '';
54dd6b2bfcSGreg Roach    $namerec      = '';
55dd6b2bfcSGreg Roach    $name_fields  = [
56dd6b2bfcSGreg Roach        'NAME' => '',
57dd6b2bfcSGreg Roach        'TYPE' => '',
58dd6b2bfcSGreg Roach        'NPFX' => '',
59dd6b2bfcSGreg Roach        'GIVN' => '',
60dd6b2bfcSGreg Roach        'NICK' => '',
61dd6b2bfcSGreg Roach        'SPFX' => '',
62dd6b2bfcSGreg Roach        'SURN' => '',
63dd6b2bfcSGreg Roach        'NSFX' => '',
64dd6b2bfcSGreg Roach    ];
65dd6b2bfcSGreg Roach
66dd6b2bfcSGreg Roach    // Inherit surname from parents, spouse or child
67dd6b2bfcSGreg Roach    if ($family) {
6839ca88baSGreg Roach        $father = $family->husband();
69820b62dfSGreg Roach        if ($father instanceof Individual && $father->facts(['NAME'])->isNotEmpty()) {
70820b62dfSGreg Roach            $father_name = $father->facts(['NAME'])->first()->value();
71dd6b2bfcSGreg Roach        } else {
72dd6b2bfcSGreg Roach            $father_name = '';
73dd6b2bfcSGreg Roach        }
7439ca88baSGreg Roach        $mother = $family->wife();
75820b62dfSGreg Roach        if ($mother instanceof Individual && $mother->facts(['NAME'])->isNotEmpty()) {
76820b62dfSGreg Roach            $mother_name = $mother->facts(['NAME'])->first()->value();
77dd6b2bfcSGreg Roach        } else {
78dd6b2bfcSGreg Roach            $mother_name = '';
79dd6b2bfcSGreg Roach        }
80dd6b2bfcSGreg Roach    } else {
81dd6b2bfcSGreg Roach        $father      = null;
82dd6b2bfcSGreg Roach        $mother      = null;
83dd6b2bfcSGreg Roach        $father_name = '';
84dd6b2bfcSGreg Roach        $mother_name = '';
85dd6b2bfcSGreg Roach    }
86820b62dfSGreg Roach    if ($individual && $individual->facts(['NAME'])->isNotEmpty()) {
87820b62dfSGreg Roach        $indi_name = $individual->facts(['NAME'])->first()->value();
88dd6b2bfcSGreg Roach    } else {
89dd6b2bfcSGreg Roach        $indi_name = '';
90dd6b2bfcSGreg Roach    }
91dd6b2bfcSGreg Roach
9283615acfSGreg Roach    switch ($next_action) {
9383615acfSGreg Roach        case 'add-child-to-family-action':
94dd6b2bfcSGreg Roach            $name_fields = array_merge($name_fields, $surname_tradition->newChildNames($father_name, $mother_name, $gender));
95dd6b2bfcSGreg Roach            break;
9683615acfSGreg Roach        case 'add-child-to-individual-action':
9739ca88baSGreg Roach            if ($individual->sex() === 'F') {
98dd6b2bfcSGreg Roach                $name_fields = array_merge($name_fields, $surname_tradition->newChildNames('', $indi_name, $gender));
99dd6b2bfcSGreg Roach            } else {
100dd6b2bfcSGreg Roach                $name_fields = array_merge($name_fields, $surname_tradition->newChildNames($indi_name, '', $gender));
101dd6b2bfcSGreg Roach            }
102dd6b2bfcSGreg Roach            break;
10383615acfSGreg Roach        case 'add-parent-to-individual-action':
104dd6b2bfcSGreg Roach            $name_fields = array_merge($name_fields, $surname_tradition->newParentNames($indi_name, $gender));
105dd6b2bfcSGreg Roach            break;
10683615acfSGreg Roach        case 'add-spouse-to-family-action':
107dd6b2bfcSGreg Roach            if ($father) {
108dd6b2bfcSGreg Roach                $name_fields = array_merge($name_fields, $surname_tradition->newSpouseNames($father_name, $gender));
109dd6b2bfcSGreg Roach            } else {
110dd6b2bfcSGreg Roach                $name_fields = array_merge($name_fields, $surname_tradition->newSpouseNames($mother_name, $gender));
111dd6b2bfcSGreg Roach            }
112dd6b2bfcSGreg Roach            break;
11383615acfSGreg Roach        case 'add-spouse-to-individual-action':
114dd6b2bfcSGreg Roach            $name_fields = array_merge($name_fields, $surname_tradition->newSpouseNames($indi_name, $gender));
115dd6b2bfcSGreg Roach            break;
11683615acfSGreg Roach        case 'add-unlinked-individual-action':
11783615acfSGreg Roach        case 'add-name-action':
11883615acfSGreg Roach        case 'edit-name-action':
119dd6b2bfcSGreg Roach            if ($surname_tradition->hasSurnames()) {
120dd6b2bfcSGreg Roach                $name_fields['NAME'] = '//';
121dd6b2bfcSGreg Roach            }
122dd6b2bfcSGreg Roach            break;
123dd6b2bfcSGreg Roach    }
124dd6b2bfcSGreg Roach}
125dd6b2bfcSGreg Roach
126dd6b2bfcSGreg Roach$bdm = ''; // used to copy '1 SOUR' to '2 SOUR' for BIRT DEAT MARR
127dd6b2bfcSGreg Roach
128dd6b2bfcSGreg Roach?>
129dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
130dd6b2bfcSGreg Roach
1312917771cSGreg Roach<form method="post" action="<?= e(route($next_action, ['tree' => $tree->name(), 'xref' => $xref])) ?>" onsubmit="return checkform();">
132dd6b2bfcSGreg Roach    <input type="hidden" name="fact_id" value="<?= e($name_fact_id) ?>">
133dd6b2bfcSGreg Roach    <input type="hidden" name="famtag" value="<?= e($famtag) ?>">
134dd6b2bfcSGreg Roach    <input type="hidden" name="gender" value="<?= $gender ?>">
135dd6b2bfcSGreg Roach    <?= csrf_field() ?>
136dd6b2bfcSGreg Roach
13783615acfSGreg Roach    <?php if ($next_action === 'add-child-to-family-action' || $next_action === 'add-child-to-individual-action') : ?>
138dd6b2bfcSGreg Roach        <?= FunctionsEdit::addSimpleTag($tree, '0 PEDI') ?>
139dd6b2bfcSGreg Roach    <?php endif ?>
140dd6b2bfcSGreg Roach
141dd6b2bfcSGreg Roach    <?php
142dd6b2bfcSGreg Roach    // First - standard name fields
143dd6b2bfcSGreg Roach    foreach ($name_fields as $tag => $value) {
144dd6b2bfcSGreg Roach        if (substr_compare($tag, '_', 0, 1) !== 0) {
145809fcb31SGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 ' . $tag . ' ' . $value, '', '');
146dd6b2bfcSGreg Roach        }
147dd6b2bfcSGreg Roach    }
148dd6b2bfcSGreg Roach
149dd6b2bfcSGreg Roach    // Second - advanced name fields
150dd6b2bfcSGreg Roach    if ($surname_tradition->hasMarriedNames() || preg_match('/\n2 _MARNM /', $namerec)) {
151dd6b2bfcSGreg Roach        $adv_name_fields = ['_MARNM' => ''];
152dd6b2bfcSGreg Roach    } else {
153dd6b2bfcSGreg Roach        $adv_name_fields = [];
154dd6b2bfcSGreg Roach    }
1558d0ebef0SGreg Roach    if (preg_match_all('/(' . Gedcom::REGEX_TAG . ')/', $tree->getPreference('ADVANCED_NAME_FACTS'), $match)) {
156dd6b2bfcSGreg Roach        foreach ($match[1] as $tag) {
157dd6b2bfcSGreg Roach            // Ignore advanced facts that duplicate standard facts
158dd6b2bfcSGreg Roach            if (!in_array($tag, ['TYPE', 'NPFX', 'GIVN', 'NICK', 'SPFX', 'SURN', 'NSFX'])) {
159dd6b2bfcSGreg Roach                $adv_name_fields[$tag] = '';
160dd6b2bfcSGreg Roach            }
161dd6b2bfcSGreg Roach        }
162dd6b2bfcSGreg Roach    }
163dd6b2bfcSGreg Roach
164dd6b2bfcSGreg Roach    foreach (array_keys($adv_name_fields) as $tag) {
165dd6b2bfcSGreg Roach        // Edit existing tags, grouped together
166dd6b2bfcSGreg Roach        if (preg_match_all('/2 ' . $tag . ' (.+)/', $namerec, $match)) {
167dd6b2bfcSGreg Roach            foreach ($match[1] as $value) {
168dd6b2bfcSGreg Roach                echo FunctionsEdit::addSimpleTag($tree, '2 ' . $tag . ' ' . $value, '', GedcomTag::getLabel('NAME:' . $tag, $individual));
169dd6b2bfcSGreg Roach                if ($tag === '_MARNM') {
170dd6b2bfcSGreg Roach                    preg_match_all('/\/([^\/]*)\//', $value, $matches);
171dd6b2bfcSGreg Roach                    echo FunctionsEdit::addSimpleTag($tree, '2 _MARNM_SURN ' . implode(',', $matches[1]));
172dd6b2bfcSGreg Roach                }
173dd6b2bfcSGreg Roach            }
174dd6b2bfcSGreg Roach        }
175dd6b2bfcSGreg Roach        // Allow a new tag to be entered
176dd6b2bfcSGreg Roach        if (!array_key_exists($tag, $name_fields)) {
177dd6b2bfcSGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 ' . $tag, '', GedcomTag::getLabel('NAME:' . $tag, $individual));
178dd6b2bfcSGreg Roach            if ($tag === '_MARNM') {
179dd6b2bfcSGreg Roach                echo FunctionsEdit::addSimpleTag($tree, '0 _MARNM_SURN');
180dd6b2bfcSGreg Roach            }
181dd6b2bfcSGreg Roach        }
182dd6b2bfcSGreg Roach    }
183dd6b2bfcSGreg Roach
184dd6b2bfcSGreg Roach    // Third - new/existing custom name fields
185dd6b2bfcSGreg Roach    foreach ($name_fields as $tag => $value) {
186dd6b2bfcSGreg Roach        if (substr_compare($tag, '_', 0, 1) === 0) {
187dd6b2bfcSGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 ' . $tag . ' ' . $value);
188dd6b2bfcSGreg Roach            if ($tag === '_MARNM') {
189dd6b2bfcSGreg Roach                preg_match_all('/\/([^\/]*)\//', $value, $matches);
190dd6b2bfcSGreg Roach                echo FunctionsEdit::addSimpleTag($tree, '2 _MARNM_SURN ' . implode(',', $matches[1]));
191dd6b2bfcSGreg Roach            }
192dd6b2bfcSGreg Roach        }
193dd6b2bfcSGreg Roach    }
194dd6b2bfcSGreg Roach
195dd6b2bfcSGreg Roach    // Fourth - SOUR, NOTE, _CUSTOM, etc.
196dd6b2bfcSGreg Roach    if ($namerec !== '') {
197dd6b2bfcSGreg Roach        $gedlines = explode("\n", $namerec); // -- find the number of lines in the record
198dd6b2bfcSGreg Roach        $fields   = explode(' ', $gedlines[0]);
199dd6b2bfcSGreg Roach        $glevel   = $fields[0];
200dd6b2bfcSGreg Roach        $level    = $glevel;
201dd6b2bfcSGreg Roach        $type     = $fields[1];
202dd6b2bfcSGreg Roach        $tags     = [];
203dd6b2bfcSGreg Roach        $i        = 0;
204dd6b2bfcSGreg Roach        do {
205dd6b2bfcSGreg Roach            if ($type !== 'TYPE' && !array_key_exists($type, $name_fields) && !array_key_exists($type, $adv_name_fields)) {
206dd6b2bfcSGreg Roach                $text = '';
207dd6b2bfcSGreg Roach                for ($j = 2; $j < count($fields); $j++) {
208dd6b2bfcSGreg Roach                    if ($j > 2) {
209dd6b2bfcSGreg Roach                        $text .= ' ';
210dd6b2bfcSGreg Roach                    }
211dd6b2bfcSGreg Roach                    $text .= $fields[$j];
212dd6b2bfcSGreg Roach                }
213dd6b2bfcSGreg Roach                while (($i + 1 < count($gedlines)) && (preg_match('/' . ($level + 1) . ' CONT ?(.*)/', $gedlines[$i + 1], $cmatch) > 0)) {
214dd6b2bfcSGreg Roach                    $text .= "\n" . $cmatch[1];
215dd6b2bfcSGreg Roach                    $i++;
216dd6b2bfcSGreg Roach                }
217dd6b2bfcSGreg Roach                echo FunctionsEdit::addSimpleTag($tree, $level . ' ' . $type . ' ' . $text);
218dd6b2bfcSGreg Roach            }
219dd6b2bfcSGreg Roach            $tags[] = $type;
220dd6b2bfcSGreg Roach            $i++;
221dd6b2bfcSGreg Roach            if (isset($gedlines[$i])) {
222dd6b2bfcSGreg Roach                $fields = explode(' ', $gedlines[$i]);
223dd6b2bfcSGreg Roach                $level  = $fields[0];
224dd6b2bfcSGreg Roach                if (isset($fields[1])) {
225dd6b2bfcSGreg Roach                    $type = $fields[1];
226dd6b2bfcSGreg Roach                }
227dd6b2bfcSGreg Roach            }
228dd6b2bfcSGreg Roach        } while (($level > $glevel) && ($i < count($gedlines)));
229dd6b2bfcSGreg Roach    }
230dd6b2bfcSGreg Roach
231dd6b2bfcSGreg Roach    // If we are adding a new individual, add the basic details
23283615acfSGreg Roach    if ($next_action !== 'add-name-action' && $next_action !== 'edit-name-action') {
233dd6b2bfcSGreg Roach        echo '</table><br><table class="table wt-facts-table">';
234dd6b2bfcSGreg Roach        // 1 SEX
235dd6b2bfcSGreg Roach        if ($famtag === 'HUSB' || $gender === 'M') {
236dd6b2bfcSGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 SEX M');
237dd6b2bfcSGreg Roach        } elseif ($famtag === 'WIFE' || $gender === 'F') {
238dd6b2bfcSGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 SEX F');
239dd6b2bfcSGreg Roach        } else {
240dd6b2bfcSGreg Roach            echo FunctionsEdit::addSimpleTag($tree, '0 SEX U');
241dd6b2bfcSGreg Roach        }
242dd6b2bfcSGreg Roach        $bdm = 'BD';
243*ae71f733SGreg Roach        $tags = new Collection();
244*ae71f733SGreg Roach        preg_match_all('/(' . Gedcom::REGEX_TAG . ')/', $tree->getPreference('QUICK_REQUIRED_FACTS'), $matches);
245*ae71f733SGreg Roach        $tags = $tags->merge($matches[1]);
246*ae71f733SGreg Roach
247*ae71f733SGreg Roach        // If adding a spouse add the option to add a marriage fact to the new family
24883615acfSGreg Roach        if ($next_action === 'add-spouse-to-individual-action' || $next_action === 'add-spouse-to-family-action') {
249dd6b2bfcSGreg Roach            $bdm .= 'M';
250*ae71f733SGreg Roach            preg_match_all('/(' . Gedcom::REGEX_TAG . ')/', $tree->getPreference('QUICK_REQUIRED_FAMFACTS'), $matches);
251*ae71f733SGreg Roach            $tags = $tags->merge($matches[1]);
252dd6b2bfcSGreg Roach        }
253*ae71f733SGreg Roach
254*ae71f733SGreg Roach        foreach (Fact::sortFactTags($tags) as $tag) {
255*ae71f733SGreg Roach            FunctionsEdit::addSimpleTags($tree, $tag);
256dd6b2bfcSGreg Roach        }
257dd6b2bfcSGreg Roach    }
258dd6b2bfcSGreg Roach
259dd6b2bfcSGreg Roach    echo '</table>';
26083615acfSGreg Roach    if ($next_action === 'edit-name-action' || $next_action === 'add-name-action') {
261dd6b2bfcSGreg Roach        // GEDCOM 5.5.1 spec says NAME doesn’t get a OBJE
262dd6b2bfcSGreg Roach        echo view('cards/add-source-citation', [
263dd6b2bfcSGreg Roach            'level'          => 2,
264dd6b2bfcSGreg Roach            'full_citations' => $tree->getPreference('FULL_SOURCES'),
265dd6b2bfcSGreg Roach            'tree'           => $tree,
266dd6b2bfcSGreg Roach        ]);
267dd6b2bfcSGreg Roach        echo view('cards/add-note', [
268dd6b2bfcSGreg Roach            'level' => 2,
269dd6b2bfcSGreg Roach            'tree'  => $tree,
270dd6b2bfcSGreg Roach        ]);
271dd6b2bfcSGreg Roach        echo view('cards/add-shared-note', [
272dd6b2bfcSGreg Roach            'level' => 2,
273dd6b2bfcSGreg Roach            'tree'  => $tree,
274dd6b2bfcSGreg Roach        ]);
275dd6b2bfcSGreg Roach        echo view('cards/add-restriction', [
276dd6b2bfcSGreg Roach            'level' => 2,
277dd6b2bfcSGreg Roach            'tree'  => $tree,
278dd6b2bfcSGreg Roach        ]);
279dd6b2bfcSGreg Roach    } else {
280dd6b2bfcSGreg Roach        echo view('cards/add-source-citation', [
281dd6b2bfcSGreg Roach            'bdm'                     => $bdm,
282dd6b2bfcSGreg Roach            'level'                   => 1,
283dd6b2bfcSGreg Roach            'full_citations'          => $tree->getPreference('FULL_SOURCES'),
284dd6b2bfcSGreg Roach            'prefer_level2_sources'   => $tree->getPreference('PREFER_LEVEL2_SOURCES'),
285dd6b2bfcSGreg Roach            'quick_required_facts'    => $tree->getPreference('QUICK_REQUIRED_FACTS'),
286dd6b2bfcSGreg Roach            'quick_required_famfacts' => $tree->getPreference('QUICK_REQUIRED_FAMFACTS'),
287dd6b2bfcSGreg Roach            'tree'                    => $tree,
288dd6b2bfcSGreg Roach        ]);
289dd6b2bfcSGreg Roach        echo view('cards/add-note', [
290dd6b2bfcSGreg Roach            'level' => 1,
291dd6b2bfcSGreg Roach            'tree'  => $tree,
292dd6b2bfcSGreg Roach        ]);
293dd6b2bfcSGreg Roach        echo view('cards/add-shared-note', [
294dd6b2bfcSGreg Roach            'level' => 1,
295dd6b2bfcSGreg Roach            'tree'  => $tree,
296dd6b2bfcSGreg Roach        ]);
297dd6b2bfcSGreg Roach        echo view('cards/add-restriction', [
298dd6b2bfcSGreg Roach            'level' => 1,
299dd6b2bfcSGreg Roach            'tree'  => $tree,
300dd6b2bfcSGreg Roach        ]);
301dd6b2bfcSGreg Roach    }
302dd6b2bfcSGreg Roach
303dd6b2bfcSGreg Roach    ?>
304dd6b2bfcSGreg Roach    <div class="row form-group">
305dd6b2bfcSGreg Roach        <div class="col-sm-9 offset-sm-3">
306dd6b2bfcSGreg Roach            <button class="btn btn-primary" type="submit">
307d993d560SGreg Roach                <?= view('icons/save') ?>
308dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
309dd6b2bfcSGreg Roach                I18N::translate('save') ?>
310dd6b2bfcSGreg Roach            </button>
31183615acfSGreg Roach            <?php if (preg_match('/^add-(child|spouse|parent|unlinked-individual)/', $next_action)) : ?>
312dd6b2bfcSGreg Roach                <button class="btn btn-primary" type="submit" name="goto" value="<?= $xref ?>">
313d993d560SGreg Roach                    <?= view('icons/save') ?>
314dd6b2bfcSGreg Roach                    <?= /* I18N: A button label. */
315dd6b2bfcSGreg Roach                    I18N::translate('go to new individual') ?>
316dd6b2bfcSGreg Roach                </button>
317dd6b2bfcSGreg Roach            <?php endif ?>
318dd6b2bfcSGreg Roach            <a class="btn btn-secondary" href="<?= e($cancel_url) ?>">
319d993d560SGreg Roach                <?= view('icons/cancel') ?>
320dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
321dd6b2bfcSGreg Roach                I18N::translate('cancel') ?>
322dd6b2bfcSGreg Roach            </a>
323dd6b2bfcSGreg Roach
324dd6b2bfcSGreg Roach            <?php if ($name_fact instanceof Fact && (Auth::isAdmin() || $tree->getPreference('SHOW_GEDCOM_RECORD'))) : ?>
3253b3db8adSGreg Roach                <a class="btn btn-link" href="<?= e(route(EditRawFactPage::class, ['xref' => $xref, 'fact_id' => $name_fact->id(), 'tree' => $tree->name()])) ?>">
326dd6b2bfcSGreg Roach                    <?= I18N::translate('Edit the raw GEDCOM') ?>
327dd6b2bfcSGreg Roach                </a>
328dd6b2bfcSGreg Roach            <?php endif ?>
329dd6b2bfcSGreg Roach        </div>
330dd6b2bfcSGreg Roach    </div>
331dd6b2bfcSGreg Roach</form>
332dd6b2bfcSGreg Roach
333dd6b2bfcSGreg Roach<?= view('modals/on-screen-keyboard') ?>
334dd6b2bfcSGreg Roach<?= view('modals/ajax') ?>
335dd6b2bfcSGreg Roach<?= view('edit/initialize-calendar-popup') ?>
336dd6b2bfcSGreg Roach
337dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
338dd6b2bfcSGreg Roach<script>
339dd6b2bfcSGreg Roach    var SURNAME_TRADITION = <?= json_encode($tree->getPreference('SURNAME_TRADITION')) ?>;
340dd6b2bfcSGreg Roach
341dd6b2bfcSGreg Roach    var NAME = $("[name=NAME]");
342dd6b2bfcSGreg Roach
343dd6b2bfcSGreg Roach    // Generate a full name from the name components
344dd6b2bfcSGreg Roach    function generate_name() {
34559e18f0cSGreg Roach        var npfx      = document.querySelector("[name=NPFX]").value;
34659e18f0cSGreg Roach        var givn      = document.querySelector("[name=GIVN]").value;
34759e18f0cSGreg Roach        var spfx      = document.querySelector("[name=SPFX]").value;
34859e18f0cSGreg Roach        var surn      = document.querySelector("[name=SURN]").value;
34959e18f0cSGreg Roach        var nsfx      = document.querySelector("[name=NSFX]").value;
35059e18f0cSGreg Roach        var sex_input = document.querySelector("[name=SEX]:checked");
35159e18f0cSGreg Roach        var sex       = sex_input ? sex_input.value : "U";
352dd6b2bfcSGreg Roach
35359e18f0cSGreg Roach        return webtrees.buildNameFromParts(npfx, givn, spfx, surn, nsfx, sex);
354dd6b2bfcSGreg Roach    }
355dd6b2bfcSGreg Roach
356dd6b2bfcSGreg Roach    // Update the NAME and _MARNM fields from the name components
357dd6b2bfcSGreg Roach    // and also display the value in read-only "gedcom" format.
358dd6b2bfcSGreg Roach    function updatewholename() {
359dd6b2bfcSGreg Roach        // Don’t update the name if the user manually changed it
360dd6b2bfcSGreg Roach        if (manualChange) {
361dd6b2bfcSGreg Roach            return;
362dd6b2bfcSGreg Roach        }
363dd6b2bfcSGreg Roach
36459e18f0cSGreg Roach        var npfx = document.querySelector("[name=NPFX]").value;
36559e18f0cSGreg Roach        var givn = document.querySelector("[name=GIVN]").value;
36659e18f0cSGreg Roach        var spfx = document.querySelector("[name=SPFX]").value;
36759e18f0cSGreg Roach        var nsfx = document.querySelector("[name=NSFX]").value;
368dd6b2bfcSGreg Roach        var name = generate_name();
369dd6b2bfcSGreg Roach
370820b62dfSGreg Roach        var display_id = NAME.attr("id") + "_display";
371dd6b2bfcSGreg Roach
372dd6b2bfcSGreg Roach        NAME.val(name);
373dd6b2bfcSGreg Roach        $("#" + display_id).text(name);
37459e18f0cSGreg Roach
375dd6b2bfcSGreg Roach        // Married names inherit some NSFX values, but not these
376dd6b2bfcSGreg Roach        nsfx = nsfx.replace(/^(I|II|III|IV|V|VI|Junior|Jr\.?|Senior|Sr\.?)$/i, "");
37759e18f0cSGreg Roach
378dd6b2bfcSGreg Roach        // Update _MARNM field from _MARNM_SURN field and display it
379dd6b2bfcSGreg Roach        var ip       = document.getElementsByTagName("input");
380dd6b2bfcSGreg Roach        var marnm_id = "";
381dd6b2bfcSGreg Roach        var romn     = "";
382dd6b2bfcSGreg Roach        var heb      = "";
383f6875112SGreg Roach        var i;
38459e18f0cSGreg Roach
385f6875112SGreg Roach        for (i = 0; i < ip.length; i++) {
38659e18f0cSGreg Roach            if (ip[i].id.indexOf("_HEB") === 0) {
38759e18f0cSGreg Roach                // Remember this field - we might need it later
388dd6b2bfcSGreg Roach                heb = val;
38959e18f0cSGreg Roach            }
39059e18f0cSGreg Roach            if (ip[i].id.indexOf("ROMN") === 0) {
39159e18f0cSGreg Roach                // Remember this field - we might need it later
392dd6b2bfcSGreg Roach                romn = val;
39359e18f0cSGreg Roach            }
394f6875112SGreg Roach        }
395f6875112SGreg Roach
396f6875112SGreg Roach        for (i = 0; i < ip.length; i++) {
397f6875112SGreg Roach            var val = ip[i].value;
398f6875112SGreg Roach
399dd6b2bfcSGreg Roach            if (ip[i].id.indexOf("_MARNM") === 0) {
400dd6b2bfcSGreg Roach                if (ip[i].id.indexOf("_MARNM_SURN") === 0) {
401dd6b2bfcSGreg Roach                    var msurn = "";
402dd6b2bfcSGreg Roach                    if (val !== "") {
40359e18f0cSGreg Roach                        if (webtrees.detectScript(val) === webtrees.detectScript(name)) {
40459e18f0cSGreg Roach                            // Same script as NAME field?
40559e18f0cSGreg Roach                            msurn = webtrees.buildNameFromParts(npfx, givn, spfx, val, nsfx);
40659e18f0cSGreg Roach                        } else if (heb !== "" && webtrees.detectScript(val) === webtrees.detectScript(heb)) {
40759e18f0cSGreg Roach                            // Same script as _HEB field?
408dd6b2bfcSGreg Roach                            msurn = heb.replace(/\/.*\//, "/" + val + "/");
40959e18f0cSGreg Roach                        } else if (romn !== "" && webtrees.detectScript(val) === webtrees.detectScript(romn)) {
41059e18f0cSGreg Roach                            //. Same script as ROMN field
411dd6b2bfcSGreg Roach                            msurn = romn.replace(/\/.*\//, "/" + val + "/");
412dd6b2bfcSGreg Roach                        }
413b2091446SRico Sonntag                    }
414dd6b2bfcSGreg Roach                    document.getElementById(marnm_id).value                  = msurn;
415dd6b2bfcSGreg Roach                    document.getElementById(marnm_id + "_display").innerHTML = msurn;
416dd6b2bfcSGreg Roach                } else {
417dd6b2bfcSGreg Roach                    marnm_id = ip[i].id;
418dd6b2bfcSGreg Roach                }
419dd6b2bfcSGreg Roach            }
420dd6b2bfcSGreg Roach        }
421dd6b2bfcSGreg Roach    }
422dd6b2bfcSGreg Roach
423dd6b2bfcSGreg Roach    // Toggle the name editor fields between
424dd6b2bfcSGreg Roach    // <input type="hidden"> <span style="display:inline">
425dd6b2bfcSGreg Roach    // <input type="text">   <span style="display:none">
426dd6b2bfcSGreg Roach
427dd6b2bfcSGreg Roach    var oldName = "";
428dd6b2bfcSGreg Roach
429dd6b2bfcSGreg Roach    // Calls to generate_name() trigger an update - hence need to
430dd6b2bfcSGreg Roach    // set the manual change to true first. We are probably
431dd6b2bfcSGreg Roach    // listening to the wrong events on the input fields...
432dd6b2bfcSGreg Roach    var manualChange = generate_name() !== NAME.val();
433dd6b2bfcSGreg Roach
434dd6b2bfcSGreg Roach    function convertHidden(eid) {
435dd6b2bfcSGreg Roach        var input1 = $("#" + eid);
436dd6b2bfcSGreg Roach        var input2 = $("#" + eid + "_display");
43759e18f0cSGreg Roach
438dd6b2bfcSGreg Roach        if (input1.attr("type") === "hidden") {
43959e18f0cSGreg Roach            input1.attr("type", "text");
440dd6b2bfcSGreg Roach            input2.hide();
441dd6b2bfcSGreg Roach        } else {
44259e18f0cSGreg Roach            input1.attr("type", "hidden");
443dd6b2bfcSGreg Roach            input2.show();
444dd6b2bfcSGreg Roach        }
445dd6b2bfcSGreg Roach    }
446dd6b2bfcSGreg Roach
447dd6b2bfcSGreg Roach    /**
448dd6b2bfcSGreg Roach     * if the user manually changed the NAME field, then update the textual
449dd6b2bfcSGreg Roach     * HTML representation of it
450dd6b2bfcSGreg Roach     * If the value changed set manualChange to true so that changing
451dd6b2bfcSGreg Roach     * the other fields doesn’t change the NAME line
452dd6b2bfcSGreg Roach     */
453dd6b2bfcSGreg Roach    function updateTextName(eid) {
454dd6b2bfcSGreg Roach        var element = document.getElementById(eid);
455dd6b2bfcSGreg Roach        if (element) {
456dd6b2bfcSGreg Roach            if (element.value !== oldName) {
457dd6b2bfcSGreg Roach                manualChange = true;
458dd6b2bfcSGreg Roach            }
459dd6b2bfcSGreg Roach            var delement = document.getElementById(eid + "_display");
460dd6b2bfcSGreg Roach            if (delement) {
461dd6b2bfcSGreg Roach                delement.innerHTML = element.value;
462dd6b2bfcSGreg Roach            }
463dd6b2bfcSGreg Roach        }
464dd6b2bfcSGreg Roach    }
465dd6b2bfcSGreg Roach
466dd6b2bfcSGreg Roach    function checkform() {
467dd6b2bfcSGreg Roach        var ip = document.getElementsByTagName("input");
468dd6b2bfcSGreg Roach        for (var i = 0; i < ip.length; i++) {
469dd6b2bfcSGreg Roach            // ADD slashes to _HEB and _AKA names
470dd6b2bfcSGreg Roach            if (ip[i].id.indexOf("_AKA") === 0 || ip[i].id.indexOf("_HEB") === 0 || ip[i].id.indexOf("ROMN") === 0)
471dd6b2bfcSGreg Roach                if (ip[i].value.indexOf("/") < 0 && ip[i].value !== "")
472dd6b2bfcSGreg Roach                    ip[i].value = ip[i].value.replace(/([^\s]+)\s*$/, "/$1/");
473dd6b2bfcSGreg Roach            // Blank out temporary _MARNM_SURN
474dd6b2bfcSGreg Roach            if (ip[i].id.indexOf("_MARNM_SURN") === 0)
475dd6b2bfcSGreg Roach                ip[i].value = "";
476dd6b2bfcSGreg Roach            // Convert "xxx yyy" and "xxx y yyy" surnames to "xxx,yyy"
477dd6b2bfcSGreg Roach            if ((SURNAME_TRADITION === "spanish" || "SURNAME_TRADITION" === "portuguese") && ip[i].id.indexOf("SURN") === 0) {
478dd6b2bfcSGreg Roach                ip[i].value = document.forms[0].SURN.value.replace(/^\s*([^\s,]{2,})\s+([iIyY] +)?([^\s,]{2,})\s*$/, "$1,$3");
479dd6b2bfcSGreg Roach            }
480dd6b2bfcSGreg Roach        }
481dd6b2bfcSGreg Roach        return true;
482dd6b2bfcSGreg Roach    }
483dd6b2bfcSGreg Roach
484dd6b2bfcSGreg Roach    // If the name isnt initially formed from the components in a standard way,
485dd6b2bfcSGreg Roach    // then dont automatically update it.
486dd6b2bfcSGreg Roach    if (NAME.val() !== generate_name() && NAME.val() !== "//") {
487dd6b2bfcSGreg Roach        convertHidden(NAME.attr("id"));
488dd6b2bfcSGreg Roach    }
489dd6b2bfcSGreg Roach</script>
490dd6b2bfcSGreg Roach<?php View::endpush() ?>
491dd6b2bfcSGreg Roach
492