-
Notifications
You must be signed in to change notification settings - Fork 403
/
script.js
661 lines (556 loc) · 19.4 KB
/
script.js
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
(function () {
'use strict';
// Key map
const ENTER = 13;
const ESCAPE = 27;
function toggleNavigation(toggle, menu) {
const isExpanded = menu.getAttribute("aria-expanded") === "true";
menu.setAttribute("aria-expanded", !isExpanded);
toggle.setAttribute("aria-expanded", !isExpanded);
}
function closeNavigation(toggle, menu) {
menu.setAttribute("aria-expanded", false);
toggle.setAttribute("aria-expanded", false);
toggle.focus();
}
// Navigation
window.addEventListener("DOMContentLoaded", () => {
const menuButton = document.querySelector(".header .menu-button-mobile");
const menuList = document.querySelector("#user-nav-mobile");
menuButton.addEventListener("click", (event) => {
event.stopPropagation();
toggleNavigation(menuButton, menuList);
});
menuList.addEventListener("keyup", (event) => {
if (event.keyCode === ESCAPE) {
event.stopPropagation();
closeNavigation(menuButton, menuList);
}
});
// Toggles expanded aria to collapsible elements
const collapsible = document.querySelectorAll(
".collapsible-nav, .collapsible-sidebar"
);
collapsible.forEach((element) => {
const toggle = element.querySelector(
".collapsible-nav-toggle, .collapsible-sidebar-toggle"
);
element.addEventListener("click", () => {
toggleNavigation(toggle, element);
});
element.addEventListener("keyup", (event) => {
console.log("escape");
if (event.keyCode === ESCAPE) {
closeNavigation(toggle, element);
}
});
});
// If multibrand search has more than 5 help centers or categories collapse the list
const multibrandFilterLists = document.querySelectorAll(
".multibrand-filter-list"
);
multibrandFilterLists.forEach((filter) => {
if (filter.children.length > 6) {
// Display the show more button
const trigger = filter.querySelector(".see-all-filters");
trigger.setAttribute("aria-hidden", false);
// Add event handler for click
trigger.addEventListener("click", (event) => {
event.stopPropagation();
trigger.parentNode.removeChild(trigger);
filter.classList.remove("multibrand-filter-list--collapsed");
});
}
});
});
const isPrintableChar = (str) => {
return str.length === 1 && str.match(/^\S$/);
};
function Dropdown(toggle, menu) {
this.toggle = toggle;
this.menu = menu;
this.menuPlacement = {
top: menu.classList.contains("dropdown-menu-top"),
end: menu.classList.contains("dropdown-menu-end"),
};
this.toggle.addEventListener("click", this.clickHandler.bind(this));
this.toggle.addEventListener("keydown", this.toggleKeyHandler.bind(this));
this.menu.addEventListener("keydown", this.menuKeyHandler.bind(this));
document.body.addEventListener("click", this.outsideClickHandler.bind(this));
const toggleId = this.toggle.getAttribute("id") || crypto.randomUUID();
const menuId = this.menu.getAttribute("id") || crypto.randomUUID();
this.toggle.setAttribute("id", toggleId);
this.menu.setAttribute("id", menuId);
this.toggle.setAttribute("aria-controls", menuId);
this.menu.setAttribute("aria-labelledby", toggleId);
this.menu.setAttribute("tabindex", -1);
this.menuItems.forEach((menuItem) => {
menuItem.tabIndex = -1;
});
this.focusedIndex = -1;
}
Dropdown.prototype = {
get isExpanded() {
return this.toggle.getAttribute("aria-expanded") === "true";
},
get menuItems() {
return Array.prototype.slice.call(
this.menu.querySelectorAll("[role='menuitem'], [role='menuitemradio']")
);
},
dismiss: function () {
if (!this.isExpanded) return;
this.toggle.removeAttribute("aria-expanded");
this.menu.classList.remove("dropdown-menu-end", "dropdown-menu-top");
this.focusedIndex = -1;
},
open: function () {
if (this.isExpanded) return;
this.toggle.setAttribute("aria-expanded", true);
this.handleOverflow();
},
handleOverflow: function () {
var rect = this.menu.getBoundingClientRect();
var overflow = {
right: rect.left < 0 || rect.left + rect.width > window.innerWidth,
bottom: rect.top < 0 || rect.top + rect.height > window.innerHeight,
};
if (overflow.right || this.menuPlacement.end) {
this.menu.classList.add("dropdown-menu-end");
}
if (overflow.bottom || this.menuPlacement.top) {
this.menu.classList.add("dropdown-menu-top");
}
if (this.menu.getBoundingClientRect().top < 0) {
this.menu.classList.remove("dropdown-menu-top");
}
},
focusByIndex: function (index) {
if (!this.menuItems.length) return;
this.menuItems.forEach((item, itemIndex) => {
if (itemIndex === index) {
item.tabIndex = 0;
item.focus();
} else {
item.tabIndex = -1;
}
});
this.focusedIndex = index;
},
focusFirstMenuItem: function () {
this.focusByIndex(0);
},
focusLastMenuItem: function () {
this.focusByIndex(this.menuItems.length - 1);
},
focusNextMenuItem: function (currentItem) {
if (!this.menuItems.length) return;
const currentIndex = this.menuItems.indexOf(currentItem);
const nextIndex = (currentIndex + 1) % this.menuItems.length;
this.focusByIndex(nextIndex);
},
focusPreviousMenuItem: function (currentItem) {
if (!this.menuItems.length) return;
const currentIndex = this.menuItems.indexOf(currentItem);
const previousIndex =
currentIndex <= 0 ? this.menuItems.length - 1 : currentIndex - 1;
this.focusByIndex(previousIndex);
},
focusByChar: function (currentItem, char) {
char = char.toLowerCase();
const itemChars = this.menuItems.map((menuItem) =>
menuItem.textContent.trim()[0].toLowerCase()
);
const startIndex =
(this.menuItems.indexOf(currentItem) + 1) % this.menuItems.length;
// look up starting from current index
let index = itemChars.indexOf(char, startIndex);
// if not found, start from start
if (index === -1) {
index = itemChars.indexOf(char, 0);
}
if (index > -1) {
this.focusByIndex(index);
}
},
outsideClickHandler: function (e) {
if (
this.isExpanded &&
!this.toggle.contains(e.target) &&
!e.composedPath().includes(this.menu)
) {
this.dismiss();
this.toggle.focus();
}
},
clickHandler: function (event) {
event.stopPropagation();
event.preventDefault();
if (this.isExpanded) {
this.dismiss();
this.toggle.focus();
} else {
this.open();
this.focusFirstMenuItem();
}
},
toggleKeyHandler: function (e) {
const key = e.key;
switch (key) {
case "Enter":
case " ":
case "ArrowDown":
case "Down": {
e.stopPropagation();
e.preventDefault();
this.open();
this.focusFirstMenuItem();
break;
}
case "ArrowUp":
case "Up": {
e.stopPropagation();
e.preventDefault();
this.open();
this.focusLastMenuItem();
break;
}
case "Esc":
case "Escape": {
e.stopPropagation();
e.preventDefault();
this.dismiss();
this.toggle.focus();
break;
}
}
},
menuKeyHandler: function (e) {
const key = e.key;
const currentElement = this.menuItems[this.focusedIndex];
if (e.ctrlKey || e.altKey || e.metaKey) {
return;
}
switch (key) {
case "Esc":
case "Escape": {
e.stopPropagation();
e.preventDefault();
this.dismiss();
this.toggle.focus();
break;
}
case "ArrowDown":
case "Down": {
e.stopPropagation();
e.preventDefault();
this.focusNextMenuItem(currentElement);
break;
}
case "ArrowUp":
case "Up": {
e.stopPropagation();
e.preventDefault();
this.focusPreviousMenuItem(currentElement);
break;
}
case "Home":
case "PageUp": {
e.stopPropagation();
e.preventDefault();
this.focusFirstMenuItem();
break;
}
case "End":
case "PageDown": {
e.stopPropagation();
e.preventDefault();
this.focusLastMenuItem();
break;
}
case "Tab": {
if (e.shiftKey) {
e.stopPropagation();
e.preventDefault();
this.dismiss();
this.toggle.focus();
} else {
this.dismiss();
}
break;
}
default: {
if (isPrintableChar(key)) {
e.stopPropagation();
e.preventDefault();
this.focusByChar(currentElement, key);
}
}
}
},
};
// Drodowns
window.addEventListener("DOMContentLoaded", () => {
const dropdowns = [];
const dropdownToggles = document.querySelectorAll(".dropdown-toggle");
dropdownToggles.forEach((toggle) => {
const menu = toggle.nextElementSibling;
if (menu && menu.classList.contains("dropdown-menu")) {
dropdowns.push(new Dropdown(toggle, menu));
}
});
});
// Share
window.addEventListener("DOMContentLoaded", () => {
const links = document.querySelectorAll(".share a");
links.forEach((anchor) => {
anchor.addEventListener("click", (event) => {
event.preventDefault();
window.open(anchor.href, "", "height = 500, width = 500");
});
});
});
// Vanilla JS debounce function, by Josh W. Comeau:
// https://www.joshwcomeau.com/snippets/javascript/debounce/
function debounce(callback, wait) {
let timeoutId = null;
return (...args) => {
window.clearTimeout(timeoutId);
timeoutId = window.setTimeout(() => {
callback.apply(null, args);
}, wait);
};
}
// Define variables for search field
let searchFormFilledClassName = "search-has-value";
let searchFormSelector = "form[role='search']";
// Clear the search input, and then return focus to it
function clearSearchInput(event) {
event.target
.closest(searchFormSelector)
.classList.remove(searchFormFilledClassName);
let input;
if (event.target.tagName === "INPUT") {
input = event.target;
} else if (event.target.tagName === "BUTTON") {
input = event.target.previousElementSibling;
} else {
input = event.target.closest("button").previousElementSibling;
}
input.value = "";
input.focus();
}
// Have the search input and clear button respond
// when someone presses the escape key, per:
// https://twitter.com/adambsilver/status/1152452833234554880
function clearSearchInputOnKeypress(event) {
const searchInputDeleteKeys = ["Delete", "Escape"];
if (searchInputDeleteKeys.includes(event.key)) {
clearSearchInput(event);
}
}
// Create an HTML button that all users -- especially keyboard users --
// can interact with, to clear the search input.
// To learn more about this, see:
// https://adrianroselli.com/2019/07/ignore-typesearch.html#Delete
// https://www.scottohara.me/blog/2022/02/19/custom-clear-buttons.html
function buildClearSearchButton(inputId) {
const button = document.createElement("button");
button.setAttribute("type", "button");
button.setAttribute("aria-controls", inputId);
button.classList.add("clear-button");
const buttonLabel = window.searchClearButtonLabelLocalized;
const icon = `<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' role='img' viewBox='0 0 12 12' aria-label='${buttonLabel}'><path stroke='currentColor' stroke-linecap='round' stroke-width='2' d='M3 9l6-6m0 6L3 3'/></svg>`;
button.innerHTML = icon;
button.addEventListener("click", clearSearchInput);
button.addEventListener("keyup", clearSearchInputOnKeypress);
return button;
}
// Append the clear button to the search form
function appendClearSearchButton(input, form) {
const searchClearButton = buildClearSearchButton(input.id);
form.append(searchClearButton);
if (input.value.length > 0) {
form.classList.add(searchFormFilledClassName);
}
}
// Add a class to the search form when the input has a value;
// Remove that class from the search form when the input doesn't have a value.
// Do this on a delay, rather than on every keystroke.
const toggleClearSearchButtonAvailability = debounce((event) => {
const form = event.target.closest(searchFormSelector);
form.classList.toggle(
searchFormFilledClassName,
event.target.value.length > 0
);
}, 200);
// Search
window.addEventListener("DOMContentLoaded", () => {
// Set up clear functionality for the search field
const searchForms = [...document.querySelectorAll(searchFormSelector)];
const searchInputs = searchForms.map((form) =>
form.querySelector("input[type='search']")
);
searchInputs.forEach((input) => {
appendClearSearchButton(input, input.closest(searchFormSelector));
input.addEventListener("keyup", clearSearchInputOnKeypress);
input.addEventListener("keyup", toggleClearSearchButtonAvailability);
});
});
const key = "returnFocusTo";
function saveFocus() {
const activeElementId = document.activeElement.getAttribute("id");
sessionStorage.setItem(key, "#" + activeElementId);
}
function returnFocus() {
const returnFocusTo = sessionStorage.getItem(key);
if (returnFocusTo) {
sessionStorage.removeItem("returnFocusTo");
const returnFocusToEl = document.querySelector(returnFocusTo);
returnFocusToEl && returnFocusToEl.focus && returnFocusToEl.focus();
}
}
// Forms
window.addEventListener("DOMContentLoaded", () => {
// In some cases we should preserve focus after page reload
returnFocus();
// show form controls when the textarea receives focus or back button is used and value exists
const commentContainerTextarea = document.querySelector(
".comment-container textarea"
);
const commentContainerFormControls = document.querySelector(
".comment-form-controls, .comment-ccs"
);
if (commentContainerTextarea) {
commentContainerTextarea.addEventListener(
"focus",
function focusCommentContainerTextarea() {
commentContainerFormControls.style.display = "block";
commentContainerTextarea.removeEventListener(
"focus",
focusCommentContainerTextarea
);
}
);
if (commentContainerTextarea.value !== "") {
commentContainerFormControls.style.display = "block";
}
}
// Expand Request comment form when Add to conversation is clicked
const showRequestCommentContainerTrigger = document.querySelector(
".request-container .comment-container .comment-show-container"
);
const requestCommentFields = document.querySelectorAll(
".request-container .comment-container .comment-fields"
);
const requestCommentSubmit = document.querySelector(
".request-container .comment-container .request-submit-comment"
);
if (showRequestCommentContainerTrigger) {
showRequestCommentContainerTrigger.addEventListener("click", () => {
showRequestCommentContainerTrigger.style.display = "none";
Array.prototype.forEach.call(requestCommentFields, (element) => {
element.style.display = "block";
});
requestCommentSubmit.style.display = "inline-block";
if (commentContainerTextarea) {
commentContainerTextarea.focus();
}
});
}
// Mark as solved button
const requestMarkAsSolvedButton = document.querySelector(
".request-container .mark-as-solved:not([data-disabled])"
);
const requestMarkAsSolvedCheckbox = document.querySelector(
".request-container .comment-container input[type=checkbox]"
);
const requestCommentSubmitButton = document.querySelector(
".request-container .comment-container input[type=submit]"
);
if (requestMarkAsSolvedButton) {
requestMarkAsSolvedButton.addEventListener("click", () => {
requestMarkAsSolvedCheckbox.setAttribute("checked", true);
requestCommentSubmitButton.disabled = true;
requestMarkAsSolvedButton.setAttribute("data-disabled", true);
requestMarkAsSolvedButton.form.submit();
});
}
// Change Mark as solved text according to whether comment is filled
const requestCommentTextarea = document.querySelector(
".request-container .comment-container textarea"
);
const usesWysiwyg =
requestCommentTextarea &&
requestCommentTextarea.dataset.helper === "wysiwyg";
function isEmptyPlaintext(s) {
return s.trim() === "";
}
function isEmptyHtml(xml) {
const doc = new DOMParser().parseFromString(`<_>${xml}</_>`, "text/xml");
const img = doc.querySelector("img");
return img === null && isEmptyPlaintext(doc.children[0].textContent);
}
const isEmpty = usesWysiwyg ? isEmptyHtml : isEmptyPlaintext;
if (requestCommentTextarea) {
requestCommentTextarea.addEventListener("input", () => {
if (isEmpty(requestCommentTextarea.value)) {
if (requestMarkAsSolvedButton) {
requestMarkAsSolvedButton.innerText =
requestMarkAsSolvedButton.getAttribute("data-solve-translation");
}
} else {
if (requestMarkAsSolvedButton) {
requestMarkAsSolvedButton.innerText =
requestMarkAsSolvedButton.getAttribute(
"data-solve-and-submit-translation"
);
}
}
});
}
const selects = document.querySelectorAll(
"#request-status-select, #request-organization-select"
);
selects.forEach((element) => {
element.addEventListener("change", (event) => {
event.stopPropagation();
saveFocus();
element.form.submit();
});
});
// Submit requests filter form on search in the request list page
const quickSearch = document.querySelector("#quick-search");
if (quickSearch) {
quickSearch.addEventListener("keyup", (event) => {
if (event.keyCode === ENTER) {
event.stopPropagation();
saveFocus();
quickSearch.form.submit();
}
});
}
// Submit organization form in the request page
const requestOrganisationSelect = document.querySelector(
"#request-organization select"
);
if (requestOrganisationSelect) {
requestOrganisationSelect.addEventListener("change", () => {
requestOrganisationSelect.form.submit();
});
requestOrganisationSelect.addEventListener("click", (e) => {
// Prevents Ticket details collapsible-sidebar to close on mobile
e.stopPropagation();
});
}
// If there are any error notifications below an input field, focus that field
const notificationElm = document.querySelector(".notification-error");
if (
notificationElm &&
notificationElm.previousElementSibling &&
typeof notificationElm.previousElementSibling.focus === "function"
) {
notificationElm.previousElementSibling.focus();
}
});
})();