171239cb6SGreg Roach/** 271239cb6SGreg Roach * webtrees: online genealogy 3242a7862SGreg Roach * Copyright (C) 2019 webtrees development team 471239cb6SGreg Roach * This program is free software: you can redistribute it and/or modify 571239cb6SGreg Roach * it under the terms of the GNU General Public License as published by 671239cb6SGreg Roach * the Free Software Foundation, either version 3 of the License, or 771239cb6SGreg Roach * (at your option) any later version. 871239cb6SGreg Roach * This program is distributed in the hope that it will be useful, 971239cb6SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 1071239cb6SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1171239cb6SGreg Roach * GNU General Public License for more details. 1271239cb6SGreg Roach * You should have received a copy of the GNU General Public License 1371239cb6SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 1471239cb6SGreg Roach */ 1571239cb6SGreg Roach 16*efd89170SGreg Roach'use strict'; 1771239cb6SGreg Roach 180d2905f7SGreg Roach(function (webtrees) { 1959e18f0cSGreg Roach const lang = document.documentElement.lang; 2059e18f0cSGreg Roach 210d2905f7SGreg Roach // Identify the script used by some text. 220d2905f7SGreg Roach const scriptRegexes = { 230d2905f7SGreg Roach Han: /[\u3400-\u9FCC]/, 240d2905f7SGreg Roach Grek: /[\u0370-\u03FF]/, 250d2905f7SGreg Roach Cyrl: /[\u0400-\u04FF]/, 260d2905f7SGreg Roach Hebr: /[\u0590-\u05FF]/, 27*efd89170SGreg Roach Arab: /[\u0600-\u06FF]/ 280d2905f7SGreg Roach }; 290d2905f7SGreg Roach 3059e18f0cSGreg Roach /** 3159e18f0cSGreg Roach * Tidy the whitespace in a string. 3259e18f0cSGreg Roach */ 3359e18f0cSGreg Roach function trim (str) { 34*efd89170SGreg Roach return str.replace(/\s+/g, ' ').trim(); 3559e18f0cSGreg Roach } 3659e18f0cSGreg Roach 3759e18f0cSGreg Roach /** 3859e18f0cSGreg Roach * Look for non-latin characters in a string. 3959e18f0cSGreg Roach */ 400d2905f7SGreg Roach webtrees.detectScript = function (str) { 410d2905f7SGreg Roach for (const script in scriptRegexes) { 420d2905f7SGreg Roach if (str.match(scriptRegexes[script])) { 430d2905f7SGreg Roach return script; 440d2905f7SGreg Roach } 4559e18f0cSGreg Roach } 4659e18f0cSGreg Roach 47*efd89170SGreg Roach return 'Latn'; 480d2905f7SGreg Roach }; 4959e18f0cSGreg Roach 5059e18f0cSGreg Roach /** 5159e18f0cSGreg Roach * In some languages, the SURN uses a male/default form, but NAME uses a gender-inflected form. 5259e18f0cSGreg Roach */ 5359e18f0cSGreg Roach function inflectSurname (surname, sex) { 54*efd89170SGreg Roach if (lang === 'pl' && sex === 'F') { 5559e18f0cSGreg Roach return surname 56*efd89170SGreg Roach .replace(/ski$/, 'ska') 57*efd89170SGreg Roach .replace(/cki$/, 'cka') 58*efd89170SGreg Roach .replace(/dzki$/, 'dzka') 59*efd89170SGreg Roach .replace(/żki$/, 'żka'); 6059e18f0cSGreg Roach } 6159e18f0cSGreg Roach 6259e18f0cSGreg Roach return surname; 6359e18f0cSGreg Roach } 6459e18f0cSGreg Roach 6559e18f0cSGreg Roach /** 6659e18f0cSGreg Roach * Build a NAME from a NPFX, GIVN, SPFX, SURN and NSFX parts. 6759e18f0cSGreg Roach * 6859e18f0cSGreg Roach * Assumes the language of the document is the same as the language of the name. 6959e18f0cSGreg Roach */ 700d2905f7SGreg Roach webtrees.buildNameFromParts = function (npfx, givn, spfx, surn, nsfx, sex) { 71*efd89170SGreg Roach const usesCJK = webtrees.detectScript(npfx + givn + spfx + givn + surn + nsfx) === 'Han'; 72*efd89170SGreg Roach const separator = usesCJK ? '' : ' '; 7359e18f0cSGreg Roach const surnameFirst = usesCJK || ['hu', 'jp', 'ko', 'vi', 'zh-Hans', 'zh-Hant'].indexOf(lang) !== -1; 7459e18f0cSGreg Roach const patronym = ['is'].indexOf(lang) !== -1; 75*efd89170SGreg Roach const slash = patronym ? '' : '/'; 7659e18f0cSGreg Roach 7759e18f0cSGreg Roach // GIVN and SURN may be a comma-separated lists. 7859e18f0cSGreg Roach npfx = trim(npfx); 79*efd89170SGreg Roach givn = trim(givn.replace(',', separator)); 8059e18f0cSGreg Roach spfx = trim(spfx); 81*efd89170SGreg Roach surn = inflectSurname(trim(surn.replace(',', separator)), sex); 8259e18f0cSGreg Roach nsfx = trim(nsfx); 8359e18f0cSGreg Roach 8459e18f0cSGreg Roach const surname = trim(spfx + separator + surn); 8559e18f0cSGreg Roach 8659e18f0cSGreg Roach const name = surnameFirst ? slash + surname + slash + separator + givn : givn + separator + slash + surname + slash; 8759e18f0cSGreg Roach 8859e18f0cSGreg Roach return trim(npfx + separator + name + separator + nsfx); 890d2905f7SGreg Roach }; 900d2905f7SGreg Roach 910d2905f7SGreg Roach // Insert text at the current cursor position in a text field. 920d2905f7SGreg Roach webtrees.pasteAtCursor = function (element, text) { 930d2905f7SGreg Roach if (element !== null) { 940d2905f7SGreg Roach const caret_pos = element.selectionStart + text.length; 950d2905f7SGreg Roach const textBefore = element.value.substring(0, element.selectionStart); 960d2905f7SGreg Roach const textAfter = element.value.substring(element.selectionEnd); 970d2905f7SGreg Roach element.value = textBefore + text + textAfter; 980d2905f7SGreg Roach element.setSelectionRange(caret_pos, caret_pos); 990d2905f7SGreg Roach element.focus(); 10059e18f0cSGreg Roach } 101*efd89170SGreg Roach }; 1020d2905f7SGreg Roach}(window.webtrees = window.webtrees || {})); 10359e18f0cSGreg Roach 104*efd89170SGreg Roachfunction expand_layer (sid) { 10571239cb6SGreg Roach $('#' + sid + '_img').toggleClass('icon-plus icon-minus'); 10671239cb6SGreg Roach $('#' + sid).slideToggle('fast'); 10771239cb6SGreg Roach $('#' + sid + '-alt').toggle(); // hide something when we show the layer - and vice-versa 10871239cb6SGreg Roach return false; 10971239cb6SGreg Roach} 11071239cb6SGreg Roach 11171239cb6SGreg Roachvar pastefield; 11271239cb6SGreg Roach 113*efd89170SGreg Roachfunction valid_date (datefield, dmy) { 11471239cb6SGreg Roach var months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']; 11571239cb6SGreg Roach var hijri_months = ['MUHAR', 'SAFAR', 'RABIA', 'RABIT', 'JUMAA', 'JUMAT', 'RAJAB', 'SHAAB', 'RAMAD', 'SHAWW', 'DHUAQ', 'DHUAH']; 11671239cb6SGreg Roach var hebrew_months = ['TSH', 'CSH', 'KSL', 'TVT', 'SHV', 'ADR', 'ADS', 'NSN', 'IYR', 'SVN', 'TMZ', 'AAV', 'ELL']; 11771239cb6SGreg Roach var french_months = ['VEND', 'BRUM', 'FRIM', 'NIVO', 'PLUV', 'VENT', 'GERM', 'FLOR', 'PRAI', 'MESS', 'THER', 'FRUC', 'COMP']; 11871239cb6SGreg Roach var jalali_months = ['FARVA', 'ORDIB', 'KHORD', 'TIR', 'MORDA', 'SHAHR', 'MEHR', 'ABAN', 'AZAR', 'DEY', 'BAHMA', 'ESFAN']; 11971239cb6SGreg Roach 12071239cb6SGreg Roach var datestr = datefield.value; 12171239cb6SGreg Roach // if a date has a date phrase marked by () this has to be excluded from altering 12271239cb6SGreg Roach var datearr = datestr.split('('); 12371239cb6SGreg Roach var datephrase = ''; 12471239cb6SGreg Roach if (datearr.length > 1) { 12571239cb6SGreg Roach datestr = datearr[0]; 12671239cb6SGreg Roach datephrase = datearr[1]; 12771239cb6SGreg Roach } 12871239cb6SGreg Roach 12971239cb6SGreg Roach // Gedcom dates are upper case 13071239cb6SGreg Roach datestr = datestr.toUpperCase(); 13171239cb6SGreg Roach // Gedcom dates have no leading/trailing/repeated whitespace 13271239cb6SGreg Roach datestr = datestr.replace(/\s+/, ' '); 13371239cb6SGreg Roach datestr = datestr.replace(/(^\s)|(\s$)/, ''); 13471239cb6SGreg Roach // Gedcom dates have spaces between letters and digits, e.g. "01JAN2000" => "01 JAN 2000" 13571239cb6SGreg Roach datestr = datestr.replace(/(\d)([A-Z])/, '$1 $2'); 13671239cb6SGreg Roach datestr = datestr.replace(/([A-Z])(\d)/, '$1 $2'); 13771239cb6SGreg Roach 13871239cb6SGreg Roach // Shortcut for quarter format, "Q1 1900" => "BET JAN 1900 AND MAR 1900". See [ 1509083 ] 13971239cb6SGreg Roach if (datestr.match(/^Q ([1-4]) (\d\d\d\d)$/)) { 14071239cb6SGreg Roach datestr = 'BET ' + months[RegExp.$1 * 3 - 3] + ' ' + RegExp.$2 + ' AND ' + months[RegExp.$1 * 3 - 1] + ' ' + RegExp.$2; 14171239cb6SGreg Roach } 14271239cb6SGreg Roach 14371239cb6SGreg Roach // Shortcut for @#Dxxxxx@ 01 01 1400, etc. 14471239cb6SGreg Roach if (datestr.match(/^(@#DHIJRI@|HIJRI)( \d?\d )(\d?\d)( \d?\d?\d?\d)$/)) { 14571239cb6SGreg Roach datestr = '@#DHIJRI@' + RegExp.$2 + hijri_months[parseInt(RegExp.$3, 10) - 1] + RegExp.$4; 14671239cb6SGreg Roach } 14771239cb6SGreg Roach if (datestr.match(/^(@#DJALALI@|JALALI)( \d?\d )(\d?\d)( \d?\d?\d?\d)$/)) { 14871239cb6SGreg Roach datestr = '@#DJALALI@' + RegExp.$2 + jalali_months[parseInt(RegExp.$3, 10) - 1] + RegExp.$4; 14971239cb6SGreg Roach } 15071239cb6SGreg Roach if (datestr.match(/^(@#DHEBREW@|HEBREW)( \d?\d )(\d?\d)( \d?\d?\d?\d)$/)) { 15171239cb6SGreg Roach datestr = '@#DHEBREW@' + RegExp.$2 + hebrew_months[parseInt(RegExp.$3, 10) - 1] + RegExp.$4; 15271239cb6SGreg Roach } 15371239cb6SGreg Roach if (datestr.match(/^(@#DFRENCH R@|FRENCH)( \d?\d )(\d?\d)( \d?\d?\d?\d)$/)) { 15471239cb6SGreg Roach datestr = '@#DFRENCH R@' + RegExp.$2 + french_months[parseInt(RegExp.$3, 10) - 1] + RegExp.$4; 15571239cb6SGreg Roach } 15671239cb6SGreg Roach 15771239cb6SGreg Roach // e.g. 17.11.1860, 03/04/2005 or 1999-12-31. Use locale settings where DMY order is ambiguous. 15871239cb6SGreg Roach var qsearch = /^([^\d]*)(\d+)[^\d](\d+)[^\d](\d+)$/i; 15971239cb6SGreg Roach if (qsearch.exec(datestr)) { 16071239cb6SGreg Roach var f0 = RegExp.$1; 16171239cb6SGreg Roach var f1 = parseInt(RegExp.$2, 10); 16271239cb6SGreg Roach var f2 = parseInt(RegExp.$3, 10); 16371239cb6SGreg Roach var f3 = parseInt(RegExp.$4, 10); 16471239cb6SGreg Roach var yyyy = new Date().getFullYear(); 16571239cb6SGreg Roach var yy = yyyy % 100; 16671239cb6SGreg Roach var cc = yyyy - yy; 16771239cb6SGreg Roach if (dmy === 'DMY' && f1 <= 31 && f2 <= 12 || f1 > 13 && f1 <= 31 && f2 <= 12 && f3 > 31) { 16871239cb6SGreg Roach datestr = f0 + f1 + ' ' + months[f2 - 1] + ' ' + (f3 >= 100 ? f3 : (f3 <= yy ? f3 + cc : f3 + cc - 100)); 16971239cb6SGreg Roach } else { 17071239cb6SGreg Roach if (dmy === 'MDY' && f1 <= 12 && f2 <= 31 || f2 > 13 && f2 <= 31 && f1 <= 12 && f3 > 31) { 17171239cb6SGreg Roach datestr = f0 + f2 + ' ' + months[f1 - 1] + ' ' + (f3 >= 100 ? f3 : (f3 <= yy ? f3 + cc : f3 + cc - 100)); 17271239cb6SGreg Roach } else { 17371239cb6SGreg Roach if (dmy === 'YMD' && f2 <= 12 && f3 <= 31 || f3 > 13 && f3 <= 31 && f2 <= 12 && f1 > 31) { 17471239cb6SGreg Roach datestr = f0 + f3 + ' ' + months[f2 - 1] + ' ' + (f1 >= 100 ? f1 : (f1 <= yy ? f1 + cc : f1 + cc - 100)); 17571239cb6SGreg Roach } 17671239cb6SGreg Roach } 17771239cb6SGreg Roach } 17871239cb6SGreg Roach } 17971239cb6SGreg Roach 18071239cb6SGreg Roach // Shortcuts for date ranges 18171239cb6SGreg Roach datestr = datestr.replace(/^[>]([\w ]+)$/, 'AFT $1'); 18271239cb6SGreg Roach datestr = datestr.replace(/^[<]([\w ]+)$/, 'BEF $1'); 18371239cb6SGreg Roach datestr = datestr.replace(/^([\w ]+)[-]$/, 'FROM $1'); 18471239cb6SGreg Roach datestr = datestr.replace(/^[-]([\w ]+)$/, 'TO $1'); 18571239cb6SGreg Roach datestr = datestr.replace(/^[~]([\w ]+)$/, 'ABT $1'); 18671239cb6SGreg Roach datestr = datestr.replace(/^[*]([\w ]+)$/, 'EST $1'); 18771239cb6SGreg Roach datestr = datestr.replace(/^[#]([\w ]+)$/, 'CAL $1'); 18871239cb6SGreg Roach datestr = datestr.replace(/^([\w ]+) ?- ?([\w ]+)$/, 'BET $1 AND $2'); 18971239cb6SGreg Roach datestr = datestr.replace(/^([\w ]+) ?~ ?([\w ]+)$/, 'FROM $1 TO $2'); 19071239cb6SGreg Roach 19171239cb6SGreg Roach // Convert full months to short months 19271239cb6SGreg Roach datestr = datestr.replace(/(JANUARY)/, 'JAN'); 19371239cb6SGreg Roach datestr = datestr.replace(/(FEBRUARY)/, 'FEB'); 19471239cb6SGreg Roach datestr = datestr.replace(/(MARCH)/, 'MAR'); 19571239cb6SGreg Roach datestr = datestr.replace(/(APRIL)/, 'APR'); 19671239cb6SGreg Roach datestr = datestr.replace(/(MAY)/, 'MAY'); 19771239cb6SGreg Roach datestr = datestr.replace(/(JUNE)/, 'JUN'); 19871239cb6SGreg Roach datestr = datestr.replace(/(JULY)/, 'JUL'); 19971239cb6SGreg Roach datestr = datestr.replace(/(AUGUST)/, 'AUG'); 20071239cb6SGreg Roach datestr = datestr.replace(/(SEPTEMBER)/, 'SEP'); 20171239cb6SGreg Roach datestr = datestr.replace(/(OCTOBER)/, 'OCT'); 20271239cb6SGreg Roach datestr = datestr.replace(/(NOVEMBER)/, 'NOV'); 20371239cb6SGreg Roach datestr = datestr.replace(/(DECEMBER)/, 'DEC'); 20471239cb6SGreg Roach 20571239cb6SGreg Roach // Americans frequently enter dates as SEP 20, 1999 20671239cb6SGreg Roach // No need to internationalise this, as this is an english-language issue 20771239cb6SGreg Roach datestr = datestr.replace(/(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)\.? (\d\d?)[, ]+(\d\d\d\d)/, '$2 $1 $3'); 20871239cb6SGreg Roach 20971239cb6SGreg Roach // Apply leading zero to day numbers 21071239cb6SGreg Roach datestr = datestr.replace(/(^| )(\d [A-Z]{3,5} \d{4})/, '$10$2'); 21171239cb6SGreg Roach 21271239cb6SGreg Roach if (datephrase) { 21371239cb6SGreg Roach datestr = datestr + ' (' + datephrase; 21471239cb6SGreg Roach } 21571239cb6SGreg Roach // Only update it if is has been corrected - otherwise input focus 21671239cb6SGreg Roach // moves to the end of the field unnecessarily 21771239cb6SGreg Roach if (datefield.value !== datestr) { 21871239cb6SGreg Roach datefield.value = datestr; 21971239cb6SGreg Roach } 22071239cb6SGreg Roach} 22171239cb6SGreg Roach 22271239cb6SGreg Roachvar monthLabels = []; 22371239cb6SGreg RoachmonthLabels[1] = 'January'; 22471239cb6SGreg RoachmonthLabels[2] = 'February'; 22571239cb6SGreg RoachmonthLabels[3] = 'March'; 22671239cb6SGreg RoachmonthLabels[4] = 'April'; 22771239cb6SGreg RoachmonthLabels[5] = 'May'; 22871239cb6SGreg RoachmonthLabels[6] = 'June'; 22971239cb6SGreg RoachmonthLabels[7] = 'July'; 23071239cb6SGreg RoachmonthLabels[8] = 'August'; 23171239cb6SGreg RoachmonthLabels[9] = 'September'; 23271239cb6SGreg RoachmonthLabels[10] = 'October'; 23371239cb6SGreg RoachmonthLabels[11] = 'November'; 23471239cb6SGreg RoachmonthLabels[12] = 'December'; 23571239cb6SGreg Roach 23671239cb6SGreg Roachvar monthShort = []; 23771239cb6SGreg RoachmonthShort[1] = 'JAN'; 23871239cb6SGreg RoachmonthShort[2] = 'FEB'; 23971239cb6SGreg RoachmonthShort[3] = 'MAR'; 24071239cb6SGreg RoachmonthShort[4] = 'APR'; 24171239cb6SGreg RoachmonthShort[5] = 'MAY'; 24271239cb6SGreg RoachmonthShort[6] = 'JUN'; 24371239cb6SGreg RoachmonthShort[7] = 'JUL'; 24471239cb6SGreg RoachmonthShort[8] = 'AUG'; 24571239cb6SGreg RoachmonthShort[9] = 'SEP'; 24671239cb6SGreg RoachmonthShort[10] = 'OCT'; 24771239cb6SGreg RoachmonthShort[11] = 'NOV'; 24871239cb6SGreg RoachmonthShort[12] = 'DEC'; 24971239cb6SGreg Roach 25071239cb6SGreg Roachvar daysOfWeek = []; 25171239cb6SGreg RoachdaysOfWeek[0] = 'S'; 25271239cb6SGreg RoachdaysOfWeek[1] = 'M'; 25371239cb6SGreg RoachdaysOfWeek[2] = 'T'; 25471239cb6SGreg RoachdaysOfWeek[3] = 'W'; 25571239cb6SGreg RoachdaysOfWeek[4] = 'T'; 25671239cb6SGreg RoachdaysOfWeek[5] = 'F'; 25771239cb6SGreg RoachdaysOfWeek[6] = 'S'; 25871239cb6SGreg Roach 25971239cb6SGreg Roachvar weekStart = 0; 26071239cb6SGreg Roach 261*efd89170SGreg Roachfunction cal_setMonthNames (jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec) { 26271239cb6SGreg Roach monthLabels[1] = jan; 26371239cb6SGreg Roach monthLabels[2] = feb; 26471239cb6SGreg Roach monthLabels[3] = mar; 26571239cb6SGreg Roach monthLabels[4] = apr; 26671239cb6SGreg Roach monthLabels[5] = may; 26771239cb6SGreg Roach monthLabels[6] = jun; 26871239cb6SGreg Roach monthLabels[7] = jul; 26971239cb6SGreg Roach monthLabels[8] = aug; 27071239cb6SGreg Roach monthLabels[9] = sep; 27171239cb6SGreg Roach monthLabels[10] = oct; 27271239cb6SGreg Roach monthLabels[11] = nov; 27371239cb6SGreg Roach monthLabels[12] = dec; 27471239cb6SGreg Roach} 27571239cb6SGreg Roach 276*efd89170SGreg Roachfunction cal_setDayHeaders (sun, mon, tue, wed, thu, fri, sat) { 27771239cb6SGreg Roach daysOfWeek[0] = sun; 27871239cb6SGreg Roach daysOfWeek[1] = mon; 27971239cb6SGreg Roach daysOfWeek[2] = tue; 28071239cb6SGreg Roach daysOfWeek[3] = wed; 28171239cb6SGreg Roach daysOfWeek[4] = thu; 28271239cb6SGreg Roach daysOfWeek[5] = fri; 28371239cb6SGreg Roach daysOfWeek[6] = sat; 28471239cb6SGreg Roach} 28571239cb6SGreg Roach 286*efd89170SGreg Roachfunction cal_setWeekStart (day) { 28771239cb6SGreg Roach if (day >= 0 && day < 7) { 28871239cb6SGreg Roach weekStart = day; 28971239cb6SGreg Roach } 29071239cb6SGreg Roach} 29171239cb6SGreg Roach 292*efd89170SGreg Roachfunction calendarWidget (dateDivId, dateFieldId) { 29371239cb6SGreg Roach var dateDiv = document.getElementById(dateDivId); 29471239cb6SGreg Roach var dateField = document.getElementById(dateFieldId); 29571239cb6SGreg Roach 29671239cb6SGreg Roach if (dateDiv.style.visibility === 'visible') { 29771239cb6SGreg Roach dateDiv.style.visibility = 'hidden'; 29871239cb6SGreg Roach return false; 29971239cb6SGreg Roach } 30071239cb6SGreg Roach if (dateDiv.style.visibility === 'show') { 30171239cb6SGreg Roach dateDiv.style.visibility = 'hide'; 30271239cb6SGreg Roach return false; 30371239cb6SGreg Roach } 30471239cb6SGreg Roach 30571239cb6SGreg Roach /* Javascript calendar functions only work with precise gregorian dates "D M Y" or "Y" */ 30671239cb6SGreg Roach var greg_regex = /((\d+ (JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC) )?\d+)/i; 30771239cb6SGreg Roach var date; 30871239cb6SGreg Roach if (greg_regex.exec(dateField.value)) { 30971239cb6SGreg Roach date = new Date(RegExp.$1); 31071239cb6SGreg Roach } else { 31171239cb6SGreg Roach date = new Date(); 31271239cb6SGreg Roach } 31371239cb6SGreg Roach 31471239cb6SGreg Roach dateDiv.innerHTML = cal_generateSelectorContent(dateFieldId, dateDivId, date); 31571239cb6SGreg Roach if (dateDiv.style.visibility === 'hidden') { 31671239cb6SGreg Roach dateDiv.style.visibility = 'visible'; 31771239cb6SGreg Roach return false; 31871239cb6SGreg Roach } 31971239cb6SGreg Roach if (dateDiv.style.visibility === 'hide') { 32071239cb6SGreg Roach dateDiv.style.visibility = 'show'; 32171239cb6SGreg Roach return false; 32271239cb6SGreg Roach } 32371239cb6SGreg Roach 32471239cb6SGreg Roach return false; 32571239cb6SGreg Roach} 32671239cb6SGreg Roach 327*efd89170SGreg Roachfunction cal_generateSelectorContent (dateFieldId, dateDivId, date) { 32871239cb6SGreg Roach var i, j; 32971239cb6SGreg Roach var content = '<table border="1"><tr>'; 33071239cb6SGreg Roach content += '<td><select class="form-control" id="' + dateFieldId + '_daySelect" onchange="return cal_updateCalendar(\'' + dateFieldId + '\', \'' + dateDivId + '\');">'; 33171239cb6SGreg Roach for (i = 1; i < 32; i++) { 33271239cb6SGreg Roach content += '<option value="' + i + '"'; 33371239cb6SGreg Roach if (date.getDate() === i) { 33471239cb6SGreg Roach content += ' selected="selected"'; 33571239cb6SGreg Roach } 33671239cb6SGreg Roach content += '>' + i + '</option>'; 33771239cb6SGreg Roach } 33871239cb6SGreg Roach content += '</select></td>'; 33971239cb6SGreg Roach content += '<td><select class="form-control" id="' + dateFieldId + '_monSelect" onchange="return cal_updateCalendar(\'' + dateFieldId + '\', \'' + dateDivId + '\');">'; 34071239cb6SGreg Roach for (i = 1; i < 13; i++) { 34171239cb6SGreg Roach content += '<option value="' + i + '"'; 34271239cb6SGreg Roach if (date.getMonth() + 1 === i) { 34371239cb6SGreg Roach content += ' selected="selected"'; 34471239cb6SGreg Roach } 34571239cb6SGreg Roach content += '>' + monthLabels[i] + '</option>'; 34671239cb6SGreg Roach } 34771239cb6SGreg Roach content += '</select></td>'; 34871239cb6SGreg Roach content += '<td><input class="form-control" type="text" id="' + dateFieldId + '_yearInput" size="5" value="' + date.getFullYear() + '" onchange="return cal_updateCalendar(\'' + dateFieldId + '\', \'' + dateDivId + '\');" /></td></tr>'; 34971239cb6SGreg Roach content += '<tr><td colspan="3">'; 35071239cb6SGreg Roach content += '<table width="100%">'; 35171239cb6SGreg Roach content += '<tr>'; 35271239cb6SGreg Roach j = weekStart; 35371239cb6SGreg Roach for (i = 0; i < 7; i++) { 35471239cb6SGreg Roach content += '<td '; 35571239cb6SGreg Roach content += 'class="descriptionbox"'; 35671239cb6SGreg Roach content += '>'; 35771239cb6SGreg Roach content += daysOfWeek[j]; 35871239cb6SGreg Roach content += '</td>'; 35971239cb6SGreg Roach j++; 36071239cb6SGreg Roach if (j > 6) { 36171239cb6SGreg Roach j = 0; 36271239cb6SGreg Roach } 36371239cb6SGreg Roach } 36471239cb6SGreg Roach content += '</tr>'; 36571239cb6SGreg Roach 36671239cb6SGreg Roach var tdate = new Date(date.getFullYear(), date.getMonth(), 1); 36771239cb6SGreg Roach var day = tdate.getDay(); 36871239cb6SGreg Roach day = day - weekStart; 36971239cb6SGreg Roach var daymilli = 1000 * 60 * 60 * 24; 37071239cb6SGreg Roach tdate = tdate.getTime() - (day * daymilli) + (daymilli / 2); 37171239cb6SGreg Roach tdate = new Date(tdate); 37271239cb6SGreg Roach 37371239cb6SGreg Roach for (j = 0; j < 6; j++) { 37471239cb6SGreg Roach content += '<tr>'; 37571239cb6SGreg Roach for (i = 0; i < 7; i++) { 37671239cb6SGreg Roach content += '<td '; 37771239cb6SGreg Roach if (tdate.getMonth() === date.getMonth()) { 37871239cb6SGreg Roach if (tdate.getDate() === date.getDate()) { 37971239cb6SGreg Roach content += 'class="descriptionbox"'; 38071239cb6SGreg Roach } else { 38171239cb6SGreg Roach content += 'class="optionbox"'; 38271239cb6SGreg Roach } 38371239cb6SGreg Roach } else { 38471239cb6SGreg Roach content += 'style="background-color:#EAEAEA; border: solid #AAAAAA 1px;"'; 38571239cb6SGreg Roach } 38671239cb6SGreg Roach content += '><a href="#" onclick="return cal_dateClicked(\'' + dateFieldId + '\', \'' + dateDivId + '\', ' + tdate.getFullYear() + ', ' + tdate.getMonth() + ', ' + tdate.getDate() + ');">'; 38771239cb6SGreg Roach content += tdate.getDate(); 38871239cb6SGreg Roach content += '</a></td>'; 38971239cb6SGreg Roach var datemilli = tdate.getTime() + daymilli; 39071239cb6SGreg Roach tdate = new Date(datemilli); 39171239cb6SGreg Roach } 39271239cb6SGreg Roach content += '</tr>'; 39371239cb6SGreg Roach } 39471239cb6SGreg Roach content += '</table>'; 39571239cb6SGreg Roach content += '</td></tr>'; 39671239cb6SGreg Roach content += '</table>'; 39771239cb6SGreg Roach 39871239cb6SGreg Roach return content; 39971239cb6SGreg Roach} 40071239cb6SGreg Roach 401*efd89170SGreg Roachfunction cal_setDateField (dateFieldId, year, month, day) { 40271239cb6SGreg Roach var dateField = document.getElementById(dateFieldId); 40371239cb6SGreg Roach if (!dateField) { 40471239cb6SGreg Roach return false; 40571239cb6SGreg Roach } 40671239cb6SGreg Roach if (day < 10) { 40771239cb6SGreg Roach day = '0' + day; 40871239cb6SGreg Roach } 40971239cb6SGreg Roach dateField.value = day + ' ' + monthShort[month + 1] + ' ' + year; 41071239cb6SGreg Roach return false; 41171239cb6SGreg Roach} 41271239cb6SGreg Roach 413*efd89170SGreg Roachfunction cal_updateCalendar (dateFieldId, dateDivId) { 41471239cb6SGreg Roach var dateSel = document.getElementById(dateFieldId + '_daySelect'); 41571239cb6SGreg Roach if (!dateSel) { 41671239cb6SGreg Roach return false; 41771239cb6SGreg Roach } 41871239cb6SGreg Roach var monthSel = document.getElementById(dateFieldId + '_monSelect'); 41971239cb6SGreg Roach if (!monthSel) { 42071239cb6SGreg Roach return false; 42171239cb6SGreg Roach } 42271239cb6SGreg Roach var yearInput = document.getElementById(dateFieldId + '_yearInput'); 42371239cb6SGreg Roach if (!yearInput) { 42471239cb6SGreg Roach return false; 42571239cb6SGreg Roach } 42671239cb6SGreg Roach 42771239cb6SGreg Roach var month = parseInt(monthSel.options[monthSel.selectedIndex].value, 10); 42871239cb6SGreg Roach month = month - 1; 42971239cb6SGreg Roach 43071239cb6SGreg Roach var date = new Date(yearInput.value, month, dateSel.options[dateSel.selectedIndex].value); 43171239cb6SGreg Roach cal_setDateField(dateFieldId, date.getFullYear(), date.getMonth(), date.getDate()); 43271239cb6SGreg Roach 43371239cb6SGreg Roach var dateDiv = document.getElementById(dateDivId); 43471239cb6SGreg Roach if (!dateDiv) { 43571239cb6SGreg Roach alert('no dateDiv ' + dateDivId); 43671239cb6SGreg Roach return false; 43771239cb6SGreg Roach } 43871239cb6SGreg Roach dateDiv.innerHTML = cal_generateSelectorContent(dateFieldId, dateDivId, date); 43971239cb6SGreg Roach 44071239cb6SGreg Roach return false; 44171239cb6SGreg Roach} 44271239cb6SGreg Roach 443*efd89170SGreg Roachfunction cal_dateClicked (dateFieldId, dateDivId, year, month, day) { 44471239cb6SGreg Roach cal_setDateField(dateFieldId, year, month, day); 44571239cb6SGreg Roach calendarWidget(dateDivId, dateFieldId); 44671239cb6SGreg Roach return false; 44771239cb6SGreg Roach} 44871239cb6SGreg Roach 449*efd89170SGreg Roachfunction openerpasteid (id) { 45071239cb6SGreg Roach if (window.opener.paste_id) { 45171239cb6SGreg Roach window.opener.paste_id(id); 45271239cb6SGreg Roach } 45371239cb6SGreg Roach window.close(); 45471239cb6SGreg Roach} 45571239cb6SGreg Roach 456*efd89170SGreg Roachfunction paste_id (value) { 45771239cb6SGreg Roach pastefield.value = value; 45871239cb6SGreg Roach} 45971239cb6SGreg Roach 460*efd89170SGreg Roachfunction pastename (name) { 46171239cb6SGreg Roach if (nameElement) { 46271239cb6SGreg Roach nameElement.innerHTML = name; 46371239cb6SGreg Roach } 46471239cb6SGreg Roach if (remElement) { 46571239cb6SGreg Roach remElement.style.display = 'block'; 46671239cb6SGreg Roach } 46771239cb6SGreg Roach} 46871239cb6SGreg Roach 469*efd89170SGreg Roachfunction paste_char (value) { 47071239cb6SGreg Roach if (document.selection) { 47171239cb6SGreg Roach // IE 47271239cb6SGreg Roach pastefield.focus(); 47371239cb6SGreg Roach document.selection.createRange().text = value; 47471239cb6SGreg Roach } else if (pastefield.selectionStart || pastefield.selectionStart === 0) { 47571239cb6SGreg Roach // Mozilla/Chrome/Safari 47671239cb6SGreg Roach pastefield.value = 47771239cb6SGreg Roach pastefield.value.substring(0, pastefield.selectionStart) + 47871239cb6SGreg Roach value + 47971239cb6SGreg Roach pastefield.value.substring(pastefield.selectionEnd, pastefield.value.length); 48071239cb6SGreg Roach pastefield.selectionStart = pastefield.selectionEnd = pastefield.selectionStart + value.length; 48171239cb6SGreg Roach } else { 48271239cb6SGreg Roach // Fallback? - just append 48371239cb6SGreg Roach pastefield.value += value; 48471239cb6SGreg Roach } 48571239cb6SGreg Roach 48671239cb6SGreg Roach if (pastefield.id === 'NPFX' || pastefield.id === 'GIVN' || pastefield.id === 'SPFX' || pastefield.id === 'SURN' || pastefield.id === 'NSFX') { 48771239cb6SGreg Roach updatewholename(); 48871239cb6SGreg Roach } 48971239cb6SGreg Roach} 49071239cb6SGreg Roach 49171239cb6SGreg Roach/** 49271239cb6SGreg Roach * Persistant checkbox options to hide/show extra data. 49371239cb6SGreg Roach 49464490ee2SGreg Roach * @param element_id 49571239cb6SGreg Roach */ 496*efd89170SGreg Roachfunction persistent_toggle (element_id) { 497*efd89170SGreg Roach const element = document.getElementById(element_id); 498*efd89170SGreg Roach const key = 'state-of-' + element_id; 499*efd89170SGreg Roach const state = localStorage.getItem(key); 50071239cb6SGreg Roach 50164490ee2SGreg Roach // Previously selected? 50264490ee2SGreg Roach if (state === 'true') { 50364490ee2SGreg Roach $(element).click(); 50471239cb6SGreg Roach } 50571239cb6SGreg Roach 50664490ee2SGreg Roach // Remember state for the next page load. 50764490ee2SGreg Roach $(element).on('change', function () { localStorage.setItem(key, element.checked); }); 50871239cb6SGreg Roach} 50971239cb6SGreg Roach 510*efd89170SGreg Roachfunction valid_lati_long (field, pos, neg) { 51171239cb6SGreg Roach // valid LATI or LONG according to Gedcom standard 51271239cb6SGreg Roach // pos (+) : N or E 51371239cb6SGreg Roach // neg (-) : S or W 51471239cb6SGreg Roach var txt = field.value.toUpperCase(); 51571239cb6SGreg Roach txt = txt.replace(/(^\s*)|(\s*$)/g, ''); // trim 51671239cb6SGreg Roach txt = txt.replace(/ /g, ':'); // N12 34 ==> N12.34 51771239cb6SGreg Roach txt = txt.replace(/\+/g, ''); // +17.1234 ==> 17.1234 51871239cb6SGreg Roach txt = txt.replace(/-/g, neg); // -0.5698 ==> W0.5698 51971239cb6SGreg Roach txt = txt.replace(/,/g, '.'); // 0,5698 ==> 0.5698 52071239cb6SGreg Roach // 0°34'11 ==> 0:34:11 52171239cb6SGreg Roach txt = txt.replace(/\u00b0/g, ':'); // ° 52271239cb6SGreg Roach txt = txt.replace(/\u0027/g, ':'); // ' 52371239cb6SGreg Roach // 0:34:11.2W ==> W0.5698 52471239cb6SGreg Roach txt = txt.replace(/^([0-9]+):([0-9]+):([0-9.]+)(.*)/g, function ($0, $1, $2, $3, $4) { 52571239cb6SGreg Roach var n = parseFloat($1); 52671239cb6SGreg Roach n += ($2 / 60); 52771239cb6SGreg Roach n += ($3 / 3600); 52871239cb6SGreg Roach n = Math.round(n * 1E4) / 1E4; 52971239cb6SGreg Roach return $4 + n; 53071239cb6SGreg Roach }); 53171239cb6SGreg Roach // 0:34W ==> W0.5667 53271239cb6SGreg Roach txt = txt.replace(/^([0-9]+):([0-9]+)(.*)/g, function ($0, $1, $2, $3) { 53371239cb6SGreg Roach var n = parseFloat($1); 53471239cb6SGreg Roach n += ($2 / 60); 53571239cb6SGreg Roach n = Math.round(n * 1E4) / 1E4; 53671239cb6SGreg Roach return $3 + n; 53771239cb6SGreg Roach }); 53871239cb6SGreg Roach // 0.5698W ==> W0.5698 53971239cb6SGreg Roach txt = txt.replace(/(.*)([N|S|E|W]+)$/g, '$2$1'); 54071239cb6SGreg Roach // 17.1234 ==> N17.1234 54171239cb6SGreg Roach if (txt && txt.charAt(0) !== neg && txt.charAt(0) !== pos) { 54271239cb6SGreg Roach txt = pos + txt; 54371239cb6SGreg Roach } 54471239cb6SGreg Roach field.value = txt; 54571239cb6SGreg Roach} 54671239cb6SGreg Roach 54771239cb6SGreg Roach// Initialize autocomplete elements. 548*efd89170SGreg Roachfunction autocomplete (selector) { 54971239cb6SGreg Roach // Use typeahead/bloodhound for autocomplete 55071239cb6SGreg Roach $(selector).each(function () { 551*efd89170SGreg Roach const that = this; 55271239cb6SGreg Roach $(this).typeahead(null, { 55371239cb6SGreg Roach display: 'value', 5545e6816beSGreg Roach limit: 0, 55571239cb6SGreg Roach source: new Bloodhound({ 55671239cb6SGreg Roach datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), 55771239cb6SGreg Roach queryTokenizer: Bloodhound.tokenizers.whitespace, 55871239cb6SGreg Roach remote: { 55971239cb6SGreg Roach url: this.dataset.autocompleteUrl, 560f4abaf12SGreg Roach replace: function (url, uriEncodedQuery) { 561f4abaf12SGreg Roach if (that.dataset.autocompleteExtra) { 562*efd89170SGreg Roach const extra = $(document.querySelector(that.dataset.autocompleteExtra)).val(); 563*efd89170SGreg Roach return url.replace('QUERY', uriEncodedQuery) + '&extra=' + encodeURIComponent(extra); 564f4abaf12SGreg Roach } 565*efd89170SGreg Roach return url.replace('QUERY', uriEncodedQuery); 566f4abaf12SGreg Roach }, 567*efd89170SGreg Roach wildcard: 'QUERY' 568f4abaf12SGreg Roach 56971239cb6SGreg Roach } 57071239cb6SGreg Roach }) 57171239cb6SGreg Roach }); 57271239cb6SGreg Roach }); 57371239cb6SGreg Roach} 57471239cb6SGreg Roach 57571239cb6SGreg Roach/** 57671239cb6SGreg Roach * Insert text at the current cursor position in an input field. 57771239cb6SGreg Roach * 57871239cb6SGreg Roach * @param e The input element. 57971239cb6SGreg Roach * @param t The text to insert. 58071239cb6SGreg Roach */ 581*efd89170SGreg Roachfunction insertTextAtCursor (e, t) { 58271239cb6SGreg Roach var scrollTop = e.scrollTop; 58371239cb6SGreg Roach var selectionStart = e.selectionStart; 58471239cb6SGreg Roach var prefix = e.value.substring(0, selectionStart); 58571239cb6SGreg Roach var suffix = e.value.substring(e.selectionEnd, e.value.length); 58671239cb6SGreg Roach e.value = prefix + t + suffix; 58771239cb6SGreg Roach e.selectionStart = selectionStart + t.length; 58871239cb6SGreg Roach e.selectionEnd = e.selectionStart; 58971239cb6SGreg Roach e.focus(); 59071239cb6SGreg Roach e.scrollTop = scrollTop; 59171239cb6SGreg Roach} 59271239cb6SGreg Roach 59371239cb6SGreg Roach// Send the CSRF token on all AJAX requests 59471239cb6SGreg Roach$.ajaxSetup({ 59571239cb6SGreg Roach headers: { 59671239cb6SGreg Roach 'X-CSRF-TOKEN': $('meta[name=csrf]').attr('content') 59771239cb6SGreg Roach } 59871239cb6SGreg Roach}); 59971239cb6SGreg Roach 60071239cb6SGreg Roach// Initialisation 60171239cb6SGreg Roach$(function () { 60271239cb6SGreg Roach // Page elements that load automaticaly via AJAX. 60371239cb6SGreg Roach // This prevents bad robots from crawling resource-intensive pages. 604*efd89170SGreg Roach $('[data-ajax-url]').each(function () { 60571239cb6SGreg Roach $(this).load($(this).data('ajaxUrl')); 60671239cb6SGreg Roach }); 60771239cb6SGreg Roach 60871239cb6SGreg Roach // Select2 - format entries in the select list 609*efd89170SGreg Roach function templateOptionForSelect2 (data) { 61071239cb6SGreg Roach if (data.loading) { 61171239cb6SGreg Roach // If we're waiting for the server, this will be a "waiting..." message 61271239cb6SGreg Roach return data.text; 61371239cb6SGreg Roach } else { 61471239cb6SGreg Roach // The response from the server is already in HTML, so no need to format it here. 61571239cb6SGreg Roach return data.text; 61671239cb6SGreg Roach } 61771239cb6SGreg Roach } 61871239cb6SGreg Roach 61971239cb6SGreg Roach // Autocomplete 62071239cb6SGreg Roach autocomplete('input[data-autocomplete-url]'); 62171239cb6SGreg Roach 62271239cb6SGreg Roach // Select2 - activate autocomplete fields 623bdbdb10cSGreg Roach const lang = document.documentElement.lang; 624bdbdb10cSGreg Roach const select2_languages = { 625bdbdb10cSGreg Roach 'zh-Hans': 'zh-CN', 626*efd89170SGreg Roach 'zh-Hant': 'zh-TW' 627bdbdb10cSGreg Roach }; 628*efd89170SGreg Roach $('select.select2').select2({ 629bdbdb10cSGreg Roach language: select2_languages[lang] || lang, 630aee7167dSGreg Roach // Needed for elements that are initially hidden. 631*efd89170SGreg Roach width: '100%', 632896a5721SGreg Roach // Do not escape - we do it on the server. 63371239cb6SGreg Roach escapeMarkup: function (x) { 6348ec20abdSGreg Roach return x; 635*efd89170SGreg Roach } 636896a5721SGreg Roach }); 637896a5721SGreg Roach 638896a5721SGreg Roach // If we clear the select (using the "X" button), we need an empty value 639896a5721SGreg Roach // (rather than no value at all) for (non-multiple) selects with name="array[]" 640*efd89170SGreg Roach $('select.select2:not([multiple])') 641*efd89170SGreg Roach .on('select2:unselect', function (evt) { 642*efd89170SGreg Roach $(evt.delegateTarget).html('<option value="" selected></option>'); 643bdbdb10cSGreg Roach }); 64471239cb6SGreg Roach 64571239cb6SGreg Roach // Datatables - locale aware sorting 64671239cb6SGreg Roach $.fn.dataTableExt.oSort['text-asc'] = function (x, y) { 647*efd89170SGreg Roach return x.localeCompare(y, document.documentElement.lang, { sensitivity: 'base' }); 64871239cb6SGreg Roach }; 64971239cb6SGreg Roach $.fn.dataTableExt.oSort['text-desc'] = function (x, y) { 650*efd89170SGreg Roach return y.localeCompare(x, document.documentElement.lang, { sensitivity: 'base' }); 65171239cb6SGreg Roach }; 65271239cb6SGreg Roach 65371239cb6SGreg Roach // DataTables - start hidden to prevent FOUC. 65471239cb6SGreg Roach $('table.datatables').each(function () { 6554843b94fSGreg Roach $(this).DataTable(); 6564843b94fSGreg Roach $(this).removeClass('d-none'); 6574843b94fSGreg Roach }); 6584843b94fSGreg Roach 6594843b94fSGreg Roach // Save button state between pages 660*efd89170SGreg Roach document.querySelectorAll('[data-toggle=button][data-persist]').forEach((element) => { 6614843b94fSGreg Roach // Previously selected? 662*efd89170SGreg Roach if (localStorage.getItem('state-of-' + element.dataset.persist) === 'T') { 6634843b94fSGreg Roach element.click(); 6644843b94fSGreg Roach } 6654843b94fSGreg Roach // Save state on change 666*efd89170SGreg Roach element.addEventListener('click', (event) => { 6674843b94fSGreg Roach // Event occurs *before* the state changes, so reverse T/F. 668*efd89170SGreg Roach localStorage.setItem('state-of-' + event.target.dataset.persist, event.target.classList.contains('active') ? 'F' : 'T'); 6694843b94fSGreg Roach }); 6704843b94fSGreg Roach }); 67171239cb6SGreg Roach 67271239cb6SGreg Roach // Activate the on-screen keyboard 67371239cb6SGreg Roach var osk_focus_element; 67471239cb6SGreg Roach $('.wt-osk-trigger').click(function () { 67571239cb6SGreg Roach // When a user clicks the icon, set focus to the corresponding input 67671239cb6SGreg Roach osk_focus_element = document.getElementById($(this).data('id')); 67771239cb6SGreg Roach osk_focus_element.focus(); 67871239cb6SGreg Roach $('.wt-osk').show(); 67971239cb6SGreg Roach }); 68071239cb6SGreg Roach $('.wt-osk-script-button').change(function () { 68171239cb6SGreg Roach $('.wt-osk-script').prop('hidden', true); 68271239cb6SGreg Roach $('.wt-osk-script-' + $(this).data('script')).prop('hidden', false); 68371239cb6SGreg Roach }); 68471239cb6SGreg Roach $('.wt-osk-shift-button').click(function () { 68571239cb6SGreg Roach document.querySelector('.wt-osk-keys').classList.toggle('shifted'); 68671239cb6SGreg Roach }); 68771239cb6SGreg Roach $('.wt-osk-keys').on('click', '.wt-osk-key', function () { 68871239cb6SGreg Roach var key = $(this).contents().get(0).nodeValue; 68971239cb6SGreg Roach var shift_state = $('.wt-osk-shift-button').hasClass('active'); 69071239cb6SGreg Roach var shift_key = $('sup', this)[0]; 69171239cb6SGreg Roach if (shift_state && shift_key !== undefined) { 69271239cb6SGreg Roach key = shift_key.innerText; 69371239cb6SGreg Roach } 6940d2905f7SGreg Roach webtrees.pasteAtCursor(osk_focus_element, key); 69571239cb6SGreg Roach if ($('.wt-osk-pin-button').hasClass('active') === false) { 69671239cb6SGreg Roach $('.wt-osk').hide(); 69771239cb6SGreg Roach } 69871239cb6SGreg Roach }); 69971239cb6SGreg Roach 70071239cb6SGreg Roach $('.wt-osk-close').on('click', function () { 70171239cb6SGreg Roach $('.wt-osk').hide(); 70271239cb6SGreg Roach }); 70371239cb6SGreg Roach}); 7047adfb8e5SGreg Roach 705b3a775f6SGreg Roach// Convert data-confirm and data-post-url attributes into useful behavior. 706*efd89170SGreg Roachdocument.addEventListener('click', (event) => { 707*efd89170SGreg Roach const target = event.target.closest('a'); 7087adfb8e5SGreg Roach 7097adfb8e5SGreg Roach if (target === null) { 7107adfb8e5SGreg Roach return; 7117adfb8e5SGreg Roach } 7127adfb8e5SGreg Roach 713*efd89170SGreg Roach if ('confirm' in target.dataset && !confirm(target.dataset.confirm)) { 7147adfb8e5SGreg Roach event.preventDefault(); 7157adfb8e5SGreg Roach return; 7167adfb8e5SGreg Roach } 7177adfb8e5SGreg Roach 718*efd89170SGreg Roach if ('postUrl' in target.dataset) { 719*efd89170SGreg Roach const request = new XMLHttpRequest(); 720*efd89170SGreg Roach const token = document.querySelector('meta[name=csrf]').content; 721*efd89170SGreg Roach request.open('POST', target.dataset.postUrl, true); 722*efd89170SGreg Roach request.setRequestHeader('X-CSRF-TOKEN', token); 7237adfb8e5SGreg Roach request.onreadystatechange = () => { 7247adfb8e5SGreg Roach if (request.readyState === request.DONE) { 7257adfb8e5SGreg Roach document.location.reload(); 7267adfb8e5SGreg Roach } 7277adfb8e5SGreg Roach }; 7287adfb8e5SGreg Roach request.send(); 7297adfb8e5SGreg Roach event.preventDefault(); 7307adfb8e5SGreg Roach } 7317adfb8e5SGreg Roach}); 732