forked from zendesk/copenhagen_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
1030 lines (864 loc) · 34.9 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
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function () {
'use strict';
// Original functionality preserved (all the existing code)
// 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");
if (menuButton && menuList) {
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"
);
if (toggle) {
element.addEventListener("click", () => {
toggleNavigation(toggle, element);
});
element.addEventListener("keyup", (event) => {
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");
if (trigger) {
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");
});
}
}
});
// Initialize Dark Theme Components
initDarkTheme();
});
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);
});
document.querySelectorAll("form[role='search'], #searchBar").forEach(form => {
form.addEventListener('submit', function(event) {
const searchInput = this.querySelector('input[type="search"], .search-query');
if (!searchInput || !searchInput.value.trim()) {
// Prevent form submission if search is empty
event.preventDefault();
}
});
});
});
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();
}
});
// Cache for DOM selectors to avoid repeated queries
const selectorCache = {};
function getElements(selector) {
if (!selectorCache[selector]) {
selectorCache[selector] = document.querySelectorAll(selector);
}
return selectorCache[selector];
}
// Optimized article footer update
function updateArticleFooter() {
const articleFoot = document.querySelector('.articleFoot');
if (!articleFoot || articleFoot.querySelector('.feedbackDiv')) {
// Exit early if no footer or already processed
return;
}
// Create elements once and append in a single operation
const fragment = document.createDocumentFragment();
const feedbackDiv = document.createElement('div');
feedbackDiv.innerText = 'Have feedback? ';
feedbackDiv.className = 'feedbackDiv';
const feedbackLink = document.createElement('a');
feedbackLink.className = 'feedbackLink';
feedbackLink.innerText = 'Let us know!';
feedbackLink.href = 'mailto:hello@superhuman.com?subject=Help%20Center%20Feedback';
feedbackDiv.appendChild(feedbackLink);
fragment.appendChild(feedbackDiv);
// Format date in the time element
const timeElement = articleFoot.querySelector('time.lu');
if (timeElement) {
const timestamp = timeElement.textContent.replace('Last updated on ', '');
const date = new Date(timestamp);
if (!isNaN(date)) {
const options = { year: 'numeric', month: 'long', day: 'numeric' };
timeElement.textContent = 'Last updated on ' + date.toLocaleDateString('en-US', options);
}
}
// Add to DOM in a single operation
articleFoot.insertBefore(fragment, articleFoot.firstChild);
// Move article ratings to the end if they exist
const articleRatings = document.querySelector('.articleRatings');
if (articleRatings && articleRatings.parentNode !== articleFoot) {
articleFoot.appendChild(articleRatings);
}
}
// Optimize next page button fix with batched processing
function fixNextPageButtons() {
// Use more specific selector to reduce search space
const nextPageButtons = document.querySelectorAll('.nextPageButton');
if (!nextPageButtons.length) return;
// Process in batches for better performance
const batchSize = 5;
let index = 0;
function processBatch() {
const endIndex = Math.min(index + batchSize, nextPageButtons.length);
for (let i = index; i < endIndex; i++) {
const button = nextPageButtons[i];
// Skip if already processed
if (button.dataset.processed) continue;
const currentHTML = button.innerHTML;
const textContent = button.textContent.trim();
if (
(currentHTML.includes(' ') && currentHTML.includes('Up Next')) ||
(textContent.startsWith('Up Next') && !currentHTML.includes('<p>Up Next</p>')) ||
/Up Next\s*<a/.test(currentHTML)
) {
const linkMatches = currentHTML.match(/<a[^>]*>([^<]*)<\/a>/g);
const links = linkMatches ? linkMatches.join('') : '';
button.innerHTML = `<p>Up Next</p>${links}`;
}
// Mark as processed
button.dataset.processed = 'true';
}
index = endIndex;
// Continue processing if there are more items
if (index < nextPageButtons.length) {
requestAnimationFrame(processBatch);
}
}
// Start processing
requestAnimationFrame(processBatch);
}
function enhanceSidebarSearch() {
// Target the Zendesk search component in the sidebar
const searchForm = document.querySelector('#sidebar form.sidebar-search');
if (searchForm && !searchForm.dataset.enhanced) {
// Hide during changes
searchForm.style.opacity = '0';
// Create all new elements in a document fragment (off-DOM)
const fragment = document.createDocumentFragment();
// Create the new search button
const newButton = document.createElement('button');
newButton.type = 'submit';
newButton.innerHTML = '<span class="sr-only">Toggle Search</span><i class="icon-search"></i>';
// Create the dropdown container
const resultsContainer = document.createElement('div');
resultsContainer.id = 'serp-dd';
resultsContainer.className = 'sb';
resultsContainer.style.display = 'none';
resultsContainer.innerHTML = '<ul class="result"></ul>';
// Prepare the search input
const searchInput = searchForm.querySelector('input[type="search"]');
if (searchInput) {
searchInput.className = 'search-query';
searchInput.placeholder = 'Search';
searchInput.setAttribute('aria-label', 'Search');
}
// Perform a single operation to remove all elements at once
searchForm.querySelectorAll('button:not(.clear-button), input[type="submit"], .search-button, .search-button-wrapper, .search-controls, .search-submit-wrapper, .search-results-column, .search-box-separator').forEach(el => {
el.remove();
});
// Set classes and ID
searchForm.id = 'searchBar';
searchForm.classList.add('sm');
searchForm.dataset.enhanced = 'true';
// Add all new elements in one batch
fragment.appendChild(newButton);
fragment.appendChild(resultsContainer);
searchForm.appendChild(fragment);
// Use requestAnimationFrame to ensure browser has processed the changes before showing
requestAnimationFrame(() => {
searchForm.style.opacity = '1';
});
}
}
/**
* Initializes the dark theme and handles various UI enhancements
* This function runs once and makes itself a no-op on subsequent calls
*/
function initDarkTheme() {
// Prevent this function from running multiple times
// by redefining it as an empty function after first execution
initDarkTheme = function() {
// Do nothing on subsequent calls
console.log("Dark theme already initialized");
};
// PHASE 1: Handle critical UI updates first
// ----------------------------------------
// Show the background element that's already in the HTML
const backgroundElement = document.querySelector('.background');
if (backgroundElement) {
// Force a layout recalculation before adding the visible class
// This ensures a smooth transition effect
backgroundElement.getBoundingClientRect();
backgroundElement.classList.add('visible');
}
// PHASE 2: Schedule sidebar highlighting for the next animation frame
// ------------------------------------------------------------------
requestAnimationFrame(function() {
// PHASE 3: Enhance search UI components
// ------------------------------------
// Enhance the search button with proper styling
const searchButton = document.querySelector('form.search.search-full input[type="submit"], form.search.search-full input[name="commit"]');
if (searchButton && !searchButton.parentElement.classList.contains('search-button-wrapper')) {
// Create a wrapper for better styling and positioning
const wrapper = document.createElement('div');
wrapper.className = 'search-button-wrapper';
// Insert wrapper before the button
searchButton.parentNode.insertBefore(wrapper, searchButton);
// Move the button into the wrapper
wrapper.appendChild(searchButton);
}
// Enhance the sidebar search functionality
// enhanceSidebarSearch();
// Set up observer for autocomplete dropdown to fix its positioning
const autocompleteObserver = new MutationObserver(function(mutations) {
const autocomplete = document.querySelector('#sidebar zd-autocomplete');
if (autocomplete) {
fixSidebarAutocomplete();
}
});
// Start observing DOM changes to detect autocomplete appearance
autocompleteObserver.observe(document.body, { childList: true, subtree: true });
// Handle window resize to reposition autocomplete dropdown
// window.addEventListener('resize', fixSidebarAutocomplete);
// Add input event listener to sidebar search for autocomplete positioning
const searchInput = document.querySelector('#sidebar .search-query, #sidebar input[type="search"]');
if (searchInput) {
searchInput.addEventListener('input', function() {
// Use setTimeout to ensure the autocomplete has time to appear
setTimeout(fixSidebarAutocomplete, 100);
});
}
});
// PHASE 4: Schedule non-critical UI updates for idle time
// -----------------------------------------------------
if ('requestIdleCallback' in window) {
// Use requestIdleCallback if available for non-critical tasks
requestIdleCallback(function() {
// Update article footer with feedback link and formatted date
updateArticleFooter();
// Fix formatting of "next page" buttons
fixNextPageButtons();
}, { timeout: 500 }); // Ensure it runs within 500ms even if the browser remains busy
} else {
// Fallback to setTimeout for browsers that don't support requestIdleCallback
setTimeout(function() {
updateArticleFooter();
fixNextPageButtons();
}, 50);
}
}
// Add this to your script.js file
// function swapSearchBar() {
// console.log('Swap function triggered');
// // Find the original search form
// const originalSearchForm = document.querySelector('#sidebar form.sidebar-search');
// console.log('Original search found:', !!originalSearchForm);
// if (!originalSearchForm) return;
// // Create your custom search form
// const customSearch = document.createElement('div');
// customSearch.innerHTML = `
// <form role="search" class="search search-full sidebar-search sm" id="searchBar" data-instant="true" autocomplete="off" action="/hc/en-us/search" method="get">
// <input type="search" name="query" id="sidebar-query" class="search-query" placeholder="Search" autocomplete="off" aria-label="Search">
// <button type="submit">
// <span class="sr-only">Toggle Search</span>
// <i class="icon-search"></i>
// </button>
// <div id="serp-dd" class="sb" style="display: none;">
// <ul class="result"></ul>
// </div>
// </form>
// `;
// // Get the actual form element
// const newSearchForm = customSearch.firstElementChild;
// // Find the original search form
// const originalSearch = document.querySelector('#sidebar form.sidebar-search');
// if (!originalSearch) return;
// // Copy any hidden inputs and other necessary elements from the original form
// originalSearch.querySelectorAll('input[type="hidden"]').forEach(input => {
// const clone = input.cloneNode(true);
// newSearchForm.appendChild(clone);
// });
// // Copy any data attributes from the original form
// Array.from(originalSearch.attributes)
// .filter(attr => attr.name.startsWith('data-'))
// .forEach(attr => {
// newSearchForm.setAttribute(attr.name, attr.value);
// });
// // Copy the action URL to ensure it goes to the right place
// newSearchForm.action = originalSearch.action || '/hc/en-us/search';
// // Prevent empty submissions
// newSearchForm.addEventListener('submit', function(event) {
// const searchInput = this.querySelector('input[type="search"]');
// if (!searchInput || !searchInput.value.trim()) {
// event.preventDefault();
// }
// });
// // Before replacing, log some info
// console.log('About to replace search form');
// console.log('Original parent:', originalSearch.parentNode);
// // Replace the original search with our custom version
// originalSearch.parentNode.replaceChild(newSearchForm, originalSearch);
// }
// // Execute the swap when Zendesk has finished its initial processing
// // Use a MutationObserver to detect when Zendesk has finished initializing the search
// document.addEventListener('DOMContentLoaded', function() {
// // First, add a style to hide the search form until we're ready
// const style = document.createElement('style');
// style.textContent = '#sidebar form.sidebar-search { visibility: hidden; }';
// document.head.appendChild(style);
// // Create a mutation observer to watch for Zendesk autocomplete elements
// const observer = new MutationObserver(function(mutations) {
// for (const mutation of mutations) {
// if (mutation.type === 'childList') {
// for (const node of mutation.addedNodes) {