-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdom-text-utils.ts
1016 lines (924 loc) · 45.2 KB
/
dom-text-utils.ts
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
// ==LICENSE-BEGIN==
// Copyright 2017 European Digital Reading Lab. All rights reserved.
// Licensed to the Readium Foundation under one or more contributor license agreements.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file exposed on Github (readium) in the project repository.
// ==LICENSE-END==
import { split } from "sentence-splitter";
import { SKIP_LINK_ID } from "../../common/styles";
import { uniqueCssSelector } from "../common/cssselector3";
import { ReadiumElectronWebviewWindow } from "../webview/state";
// const IS_DEV = (process.env.NODE_ENV === "development" || process.env.NODE_ENV === "dev");
const win = global.window as ReadiumElectronWebviewWindow;
export function combineTextNodes(textNodes: Node[], skipNormalize?: boolean): string {
if (textNodes && textNodes.length) {
let str = "";
for (const textNode of textNodes) {
let txt = textNode.nodeValue;
if (txt) { // does not exclude purely-whitespace text nodes
// normalizeText() preserves prefix/suffix whitespace (collapsed to single), no trim()
// if (str.length) {
// str += " ";
// }
if (!txt.trim().length) {
txt = " ";
str += txt;
} else {
str += (skipNormalize ? txt : normalizeText(txt));
}
}
}
return str;
}
return "";
}
export function getLanguage(el: Element): string | undefined {
let currentElement = el;
while (currentElement && currentElement.nodeType === Node.ELEMENT_NODE) {
let lang = currentElement.getAttribute("xml:lang");
if (!lang) {
lang = currentElement.getAttributeNS("http://www.w3.org/XML/1998/namespace", "lang");
}
if (!lang) {
lang = currentElement.getAttribute("lang");
}
if (lang) {
return lang;
}
currentElement = currentElement.parentNode as Element;
}
return undefined;
}
export function getDirection(el: Element): string | undefined {
let currentElement = el;
while (currentElement && currentElement.nodeType === Node.ELEMENT_NODE) {
const dir = currentElement.getAttribute("dir");
if (dir) {
return dir;
}
currentElement = currentElement.parentNode as Element;
}
return undefined;
}
export function normalizeHtmlText(str: string): string {
return str.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">");
}
export function normalizeText(str: string): string {
// tslint:disable-next-line:max-line-length
return normalizeHtmlText(str).replace(/[\r\n]/g, " ").replace(/\s\s+/g, " "); // no trim(), we collapse multiple whitespaces into single, preserving prefix and suffix (if any)
}
export interface ITtsQueueItem {
dir: string | undefined;
lang: string | undefined;
parentElement: Element;
textNodes: Node[];
combinedText: string; // combineText(this.textNodes)
combinedTextSentences: string[] | undefined;
combinedTextSentencesRangeBegin: number[] | undefined;
combinedTextSentencesRangeEnd: number[] | undefined;
// isSkippable: boolean | undefined;
}
export interface ITtsQueueItemReference {
item: ITtsQueueItem;
iArray: number; // ITtsQueueItem[]
iSentence: number; // ITtsQueueItem.combinedTextSentences
iGlobal: number; // ITtsQueueItem[] and ITtsQueueItem.combinedTextSentences
}
export function consoleLogTtsQueueItem(i: ITtsQueueItem) {
console.log("<<----");
console.log(i.dir);
console.log(i.lang);
const cssSelector = uniqueCssSelector(i.parentElement, i.parentElement.ownerDocument as Document, {
// allow long CSS selectors with many steps, deep DOM element paths => minimise runtime querySelectorAll() calls to verify unicity in optimize() function (sacrifice memory footprint in locators for runtime efficiency and human readbility / debugging, better than CFI)
// seedMinLength: 1000,
// optimizedMinLength: 1001,
});
console.log(cssSelector);
console.log(i.parentElement.tagName);
console.log(i.combinedText);
if (i.combinedTextSentences) {
console.log(".......");
for (const j of i.combinedTextSentences) {
console.log(j);
}
console.log(".......");
}
console.log("---->>");
}
export function consoleLogTtsQueue(f: ITtsQueueItem[]) {
for (const i of f) {
consoleLogTtsQueueItem(i);
}
}
export function getTtsQueueLength(items: ITtsQueueItem[]) {
let l = 0;
for (const it of items) {
if (it.combinedTextSentences) {
l += it.combinedTextSentences.length;
} else {
l++;
}
}
return l;
}
export function getTtsQueueItemRefText(obj: ITtsQueueItemReference): string {
if (obj.iSentence === -1) {
return obj.item.combinedText;
}
if (obj.item.combinedTextSentences) {
return obj.item.combinedTextSentences[obj.iSentence];
}
return "";
}
export function getTtsQueueItemRef(items: ITtsQueueItem[], index: number): ITtsQueueItemReference | undefined {
let i = -1;
let k = -1;
for (const it of items) {
k++;
if (it.combinedTextSentences) {
let j = -1;
for (const _sent of it.combinedTextSentences) {
j++;
i++;
if (index === i) {
return { item: it, iArray: k, iGlobal: i, iSentence: j };
}
}
} else {
i++;
if (index === i) {
return { item: it, iArray: k, iGlobal: i, iSentence: -1 };
}
}
}
return undefined;
}
export function findTtsQueueItemIndex(
ttsQueue: ITtsQueueItem[],
element: Element,
startTextNode: Node | undefined,
startTextNodeOffset: number,
rootElem: Element): number {
let i = 0;
for (const ttsQueueItem of ttsQueue) {
if (startTextNode) {
if (ttsQueueItem.textNodes?.includes(startTextNode)) { // NOTE SECOND PASS!
if (ttsQueueItem.combinedTextSentences &&
ttsQueueItem.combinedTextSentencesRangeBegin &&
ttsQueueItem.combinedTextSentencesRangeEnd) {
let offset = 0;
for (const txtNode of ttsQueueItem.textNodes) {
if (!txtNode.nodeValue && txtNode.nodeValue !== "") {
continue;
}
if (txtNode === startTextNode) {
offset += startTextNodeOffset;
break;
}
offset += txtNode.nodeValue.length;
}
let j = i - 1;
// let iSent = -1;
for (const end of ttsQueueItem.combinedTextSentencesRangeEnd) {
// iSent++;
j++;
if (end < offset) {
continue;
}
return j;
}
return i;
} else { // ttsQueueItem.combinedText
return i;
}
}
} else if ( // (!startTextNode || !ttsQueueItem.textNodes?.length) && // NOTE SECOND PASS!
(
element === ttsQueueItem.parentElement
||
(ttsQueueItem.parentElement !== (element.ownerDocument as Document).body &&
ttsQueueItem.parentElement !== rootElem &&
ttsQueueItem.parentElement.contains(element))
||
element.contains(ttsQueueItem.parentElement))
) {
return i;
}
if (ttsQueueItem.combinedTextSentences) {
i += ttsQueueItem.combinedTextSentences.length;
} else { // ttsQueueItem.combinedText
i++;
}
}
// SECOND PASS, e.g. text nodes descendants of MathML
i = 0;
for (const ttsQueueItem of ttsQueue) {
if (startTextNode && ttsQueueItem.textNodes?.includes(startTextNode)) { // DIFF SECOND PASS!
if (ttsQueueItem.combinedTextSentences &&
ttsQueueItem.combinedTextSentencesRangeBegin &&
ttsQueueItem.combinedTextSentencesRangeEnd) {
let offset = 0;
for (const txtNode of ttsQueueItem.textNodes) {
if (!txtNode.nodeValue && txtNode.nodeValue !== "") {
continue;
}
if (txtNode === startTextNode) {
offset += startTextNodeOffset;
break;
}
offset += txtNode.nodeValue.length;
}
let j = i - 1;
// let iSent = -1;
for (const end of ttsQueueItem.combinedTextSentencesRangeEnd) {
// iSent++;
j++;
if (end < offset) {
continue;
}
return j;
}
return i;
} else { // ttsQueueItem.combinedText
return i;
}
} else if ((!startTextNode || !ttsQueueItem.textNodes?.length) && // DIFF SECOND PASS!
(
element === ttsQueueItem.parentElement
||
(ttsQueueItem.parentElement !== (element.ownerDocument as Document).body &&
ttsQueueItem.parentElement !== rootElem &&
ttsQueueItem.parentElement.contains(element))
||
element.contains(ttsQueueItem.parentElement))
) {
return i;
}
if (ttsQueueItem.combinedTextSentences) {
i += ttsQueueItem.combinedTextSentences.length;
} else { // ttsQueueItem.combinedText
i++;
}
}
return -1;
}
// tslint:disable-next-line:max-line-length
const _putInElementStackTagNames = ["h1", "h2", "h3", "h4", "h5", "h6", "p", "th", "td", "caption", "li", "blockquote", "q", "dt", "dd", "figcaption", "div", "pre"];
// tslint:disable-next-line:max-line-length
const _doNotProcessDeepChildTagNames = ["svg", "img", "sup", "sub", "audio", "video", "source", "button", "canvas", "del", "dialog", "embed", "form", "head", "iframe", "meter", "noscript", "object", "s", "script", "select", "style", "textarea"]; // "code", "nav", "dl", "figure", "table", "ul", "ol"
// https://www.w3.org/TR/epub-33/#sec-behaviors-skip-escape
// https://www.w3.org/TR/epub-ssv-11/
const _skippables = [
"footnote",
"endnote",
"pagebreak",
//
"note",
"rearnote",
"sidebar",
"marginalia",
"annotation",
// "practice",
// "help",
];
// TODO: invisible page breaks but labeled (aria-label, title, etc.) can occur mid-sentence as span/etc. elements without descendant text content or with display:none (edge case or common practice?),
// so ideally we should ignore the fragment and merge together the adjacent text(s) to form the utterance ...
// but this is technically challenging in this algorithm (previous/next may have different language, etc.),
export const computeEpubTypes = (childElement: Element) => {
let epubType = childElement.getAttribute("epub:type");
if (!epubType) {
epubType = childElement.getAttributeNS("http://www.idpf.org/2007/ops", "type");
if (!epubType) { // TODO merge epub:type and role instead of fallback?
epubType = childElement.getAttribute("role");
if (epubType) {
epubType = epubType.replace(/doc-/g, "");
}
}
}
if (epubType) {
epubType = epubType.replace(/\s\s+/g, " ").trim();
if (epubType.length === 0) {
epubType = null;
}
}
const epubTypes = epubType ? epubType.split(" ") : [];
return epubTypes;
};
export function generateTtsQueue(rootElement: Element, splitSentences: boolean): ITtsQueueItem[] {
let ttsQueue: ITtsQueueItem[] = [];
const elementStack: Element[] = [];
function processTextNode(textNode: Node) {
if (textNode.nodeType !== Node.TEXT_NODE) {
return;
}
// test for word regexp? || !/\w/.test(textNode.nodeValue)
if (!textNode.nodeValue) {
return;
}
// we need significant spaces between <span> etc.
// if (!textNode.nodeValue.trim().length) {
// return;
// }
const parentElement = elementStack[elementStack.length - 1];
if (!parentElement) {
return;
}
let current = ttsQueue[ttsQueue.length - 1];
// note that isSkippable===true never reaches into a ttsQueueItem because we eject at compilation time instead of runtime / playback:
// if (win.READIUM2.ttsSkippabilityEnabled && current && current.isSkippable) {
// return;
// }
const lang = textNode.parentElement ? getLanguage(textNode.parentElement) : undefined;
const dir = textNode.parentElement ? getDirection(textNode.parentElement) : undefined;
if (!current || current.parentElement !== parentElement || current.lang !== lang || current.dir !== dir) {
// note that isSkippable===true never reaches into a ttsQueueItem because we eject at compilation time instead of runtime / playback:
if (win.READIUM2.ttsSkippabilityEnabled) {
const epubTypes = computeEpubTypes(parentElement);
const isSkippable = epubTypes.find((et) => _skippables.includes(et)) ? true : undefined;
if (isSkippable) {
return;
}
}
current = {
combinedText: "", // filled in later (see finalizeTextNodes())
combinedTextSentences: undefined, // filled in later, if text is further chunkable
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement,
textNodes: [],
// isSkippable: undefined,
};
ttsQueue.push(current);
}
current.textNodes.push(textNode);
}
let first = true;
function processElement(element: Element) {
if (element.nodeType !== Node.ELEMENT_NODE) {
first = false;
return;
}
// const documant = element.ownerDocument as Document;
function isHidden(el: Element): boolean {
if (el.getAttribute("id") === SKIP_LINK_ID) {
return true;
}
const lower = el.tagName?.toLowerCase();
if (lower === "rt" || lower === "rp") { // ruby child
return true;
}
let curEl = el;
do {
if (curEl.nodeType === Node.ELEMENT_NODE &&
curEl.tagName?.toLowerCase() === "details" &&
// curEl.getAttribute("open")
// === "open" or === "true" ... it's in fact a "boolean attr"
// (much like 'hidden' below),
// so only its non-existence means "not open"
!(curEl as HTMLDetailsElement).open) {
return true;
}
} while (curEl.parentNode && curEl.parentNode.nodeType === Node.ELEMENT_NODE &&
(curEl = curEl.parentNode as Element));
const elStyle = win.getComputedStyle(el);
if (elStyle) {
const display = elStyle.getPropertyValue("display");
if (display === "none") {
return true;
} else {
const opacity = elStyle.getPropertyValue("opacity");
if (opacity === "0") {
return true;
}
}
// Cannot be relied upon, because web browser engine reports
// invisible when out of view in scrolled columns!!
// const visibility = elStyle.getPropertyValue("visibility");
// if (visibility === "hidden") {
// return true;
// }
}
// === "hidden" or === "true" ... it's a "boolean attr"
// (much like details.open above),
// so only its non-existence means "not hidden"
if (el.getAttribute("hidden") ||
el.getAttribute("aria-hidden") === "true") {
return true;
}
return false;
}
const hidden = isHidden(element);
if (hidden) {
first = false;
return;
}
// note that isSkippable===true never reaches into a ttsQueueItem because we eject at compilation time instead of runtime / playback:
if (win.READIUM2.ttsSkippabilityEnabled) {
const epubTypes = computeEpubTypes(element);
const isSkippable = epubTypes.find((et) => _skippables.includes(et)) ? true : undefined;
if (isSkippable) {
first = false;
return;
}
}
const tagNameLow = element.tagName ? element.tagName.toLowerCase() : undefined;
const putInElementStack = first ||
tagNameLow && _putInElementStackTagNames.includes(tagNameLow)
// tslint:disable-next-line:max-line-length
// element.matches("h1, h2, h3, h4, h5, h6, p, th, td, caption, li, blockquote, q, dt, dd, figcaption, div, pre")
;
first = false;
if (putInElementStack) {
elementStack.push(element);
}
for (const childNode of element.childNodes) {
switch (childNode.nodeType) {
case Node.ELEMENT_NODE:
const childElement = childNode as Element;
const childTagNameLow = childElement.tagName ? childElement.tagName.toLowerCase() : undefined;
const hidden = isHidden(childElement);
const epubTypes = computeEpubTypes(childElement);
const isSkippable = epubTypes.find((et) => _skippables.includes(et)) ? true : undefined;
// note that isSkippable===true never reaches into a ttsQueueItem because we eject at compilation time instead of runtime / playback:
if (win.READIUM2.ttsSkippabilityEnabled && isSkippable) {
continue; // next child node
}
// const isPageBreak = epubType ? epubType.indexOf("pagebreak") >= 0 : false; // this includes doc-*
const isPageBreak = epubTypes.find((et) => et === "pagebreak") ? true : false;
let pageBreakNeedsDeepDive = isPageBreak && !hidden;
if (pageBreakNeedsDeepDive) {
let altAttr = childElement.getAttribute("title");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
pageBreakNeedsDeepDive = false;
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
} else {
altAttr = childElement.getAttribute("aria-label");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
pageBreakNeedsDeepDive = false;
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
}
}
}
const isLink = childTagNameLow === "a" && (childElement as HTMLLinkElement).href; // excludes anchors
let linkNeedsDeepDive = isLink && !hidden;
if (linkNeedsDeepDive) {
let altAttr = childElement.getAttribute("title");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
linkNeedsDeepDive = false;
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
} else {
altAttr = childElement.getAttribute("aria-label");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
linkNeedsDeepDive = false;
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
}
}
}
const isMathJax = childTagNameLow && childTagNameLow.startsWith("mjx-");
const isMathML = childTagNameLow === "math";
const processDeepChild =
pageBreakNeedsDeepDive ||
linkNeedsDeepDive ||
(
!isPageBreak &&
!isLink &&
!isMathJax &&
!isMathML &&
childTagNameLow && !_doNotProcessDeepChildTagNames.includes(childTagNameLow)
// tslint:disable-next-line:max-line-length
// !childElement.matches("svg, img, sup, sub, audio, video, source, button, canvas, del, dialog, embed, form, head, iframe, meter, noscript, object, s, script, select, style, textarea")
// code, nav, dl, figure, table, ul, ol
)
;
if (processDeepChild) {
processElement(childElement);
} else if (!hidden) {
if (isPageBreak || isLink) {
// do nothing, already dealt with above (either shallow or deep)
} else if (isMathML) {
const altAttr = childElement.getAttribute("alttext");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
} else {
const txt = childElement.textContent?.trim();
if (txt) {
const lang = getLanguage(childElement);
const dir = getDirection(childElement);
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
}
} else if (isMathJax) {
if (childTagNameLow === "mjx-container") {
let mathJaxEl: Element | undefined;
let mathJaxElMathML: Element | undefined;
const mathJaxContainerChildren = Array.from(childElement.children);
for (const mathJaxContainerChild of mathJaxContainerChildren) {
if (mathJaxContainerChild.tagName?.toLowerCase() === "mjx-math") {
mathJaxEl = mathJaxContainerChild;
} else if (mathJaxContainerChild.tagName?.toLowerCase() === "mjx-assistive-mml") {
const mathJaxAMMLChildren = Array.from(mathJaxContainerChild.children);
for (const mathJaxAMMLChild of mathJaxAMMLChildren) {
if (mathJaxAMMLChild.tagName?.toLowerCase() === "math") {
mathJaxElMathML = mathJaxAMMLChild;
break;
}
}
}
}
const altAttr = childElement.getAttribute("aria-label");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: mathJaxEl ?? childElement,
textNodes: [],
// isSkippable,
});
}
} else if (mathJaxElMathML) {
const altAttr = mathJaxElMathML.getAttribute("alttext");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
const lang = getLanguage(mathJaxElMathML);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: mathJaxEl ?? childElement,
textNodes: [],
// isSkippable,
});
}
} else {
const txt = mathJaxElMathML.textContent?.trim();
if (txt) {
const lang = getLanguage(mathJaxElMathML);
const dir = getDirection(mathJaxElMathML);
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: mathJaxEl ?? childElement,
textNodes: [],
// isSkippable,
});
}
}
break;
}
}
} else if (childTagNameLow === "img" &&
(childElement as HTMLImageElement).src) {
let altAttr = childElement.getAttribute("alt");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
} else {
altAttr = childElement.getAttribute("aria-label");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
}
}
} else if (childTagNameLow === "svg") {
let done = false;
const altAttr = childElement.getAttribute("aria-label");
if (altAttr) {
const txt = altAttr.trim();
if (txt) {
done = true;
const lang = getLanguage(childElement);
const dir = undefined;
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
} else {
const svgChildren = Array.from(childElement.children);
for (const svgChild of svgChildren) {
if (svgChild.tagName?.toLowerCase() === "title") {
const txt = svgChild.textContent?.trim();
if (txt) {
done = true;
const lang = getLanguage(svgChild);
const dir = getDirection(svgChild);
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: childElement,
textNodes: [],
// isSkippable,
});
}
break;
}
}
}
if (!done) {
// this causes an infinite loop / GUI lockup with some SVG, not sure why!?
// const parentElement = elementStack[elementStack.length - 1];
// if (parentElement !== childElement) {
// // putInElementStack = true;
// elementStack.push(childElement);
// }
const iter = win.document.createNodeIterator(
childElement, // win.document.body
NodeFilter.SHOW_ELEMENT,
{
// tspan breaks words / sentences
acceptNode: (node) => {
const low = node.nodeName.toLowerCase();
return low === "text"
|| low === "math" // inside foreignObject
?
NodeFilter.FILTER_ACCEPT
:
NodeFilter.FILTER_REJECT;
},
},
);
let n: Node | null;
while (n = iter.nextNode()) {
const el = n as Element;
const parentElement = elementStack[elementStack.length - 1];
if (parentElement !== el) {
// putInElementStack = true;
elementStack.push(el);
}
try {
processElement(el);
} catch (err) {
console.log("SVG TTS error: ", err);
const txt = el.textContent?.trim();
if (txt) {
const lang = getLanguage(el);
const dir = getDirection(el);
ttsQueue.push({
combinedText: txt,
combinedTextSentences: undefined,
combinedTextSentencesRangeBegin: undefined,
combinedTextSentencesRangeEnd: undefined,
dir,
lang,
parentElement: el,
textNodes: [],
// isSkippable,
});
}
}
elementStack.pop();
}
// elementStack.pop();
}
}
}
break;
case Node.TEXT_NODE:
if (elementStack.length !== 0) {
processTextNode(childNode);
}
break;
default:
break;
}
}
if (putInElementStack) {
elementStack.pop();
}
}
processElement(rootElement);
// post-processTextNode()
function finalizeTextNodes(ttsQueueItem: ITtsQueueItem) {
if (!ttsQueueItem.textNodes || !ttsQueueItem.textNodes.length) {
// img@alt can set combinedText (no text nodes)
if (!ttsQueueItem.combinedText || !ttsQueueItem.combinedText.length) {
ttsQueueItem.combinedText = "";
}
ttsQueueItem.combinedTextSentences = undefined;
return;
}
ttsQueueItem.combinedText = combineTextNodes(ttsQueueItem.textNodes, true).replace(/[\r\n]/g, " ");
// normalizeText ===
// normalizeHtmlText(str).replace(/[\r\n]/g, " ").replace(/\s\s+/g, " "); // no trim(), we collapse
// will be ejected with .filter()
if (!ttsQueueItem.combinedText.trim().length) {
ttsQueueItem.combinedText = "";
ttsQueueItem.combinedTextSentences = undefined;
return;
}
// console.log("--TTS ttsQueueItem.combinedText: [" + ttsQueueItem.combinedText + "]");
// ttsQueueItem.combinedText = ttsQueueItem.combinedTextSentences ?
// combineTextNodes(ttsQueueItem.textNodes, false).trim() :
// combineTextNodes(ttsQueueItem.textNodes, true);
let skipSplitSentences = false;
let parent: Element | null = ttsQueueItem.parentElement;
while (parent) {
if (parent.tagName) {
const tag = parent.tagName.toLowerCase();
if (tag === "pre" || tag === "code" ||
tag === "video" || tag === "audio" ||
tag === "img" || tag === "svg" ||
tag === "math" || tag.startsWith("mjx-")) {
skipSplitSentences = true;
break;
}
}
parent = parent.parentElement;
}
if (splitSentences && !skipSplitSentences) {
try {
const txt = ttsQueueItem.combinedText; // no further transforms?
ttsQueueItem.combinedTextSentences = undefined;
const sentences = split(txt);
ttsQueueItem.combinedTextSentences = [];
ttsQueueItem.combinedTextSentencesRangeBegin = [];
ttsQueueItem.combinedTextSentencesRangeEnd = [];
for (const sentence of sentences) {
if (sentence.type === "Sentence") {
// console.log(sentence.raw, JSON.stringify(sentence.range, null, 2));
ttsQueueItem.combinedTextSentences.push(sentence.raw);
ttsQueueItem.combinedTextSentencesRangeBegin.push(sentence.range[0]);
ttsQueueItem.combinedTextSentencesRangeEnd.push(sentence.range[1]);
}
// else {
// console.log(sentence.type);
// }
}
if (ttsQueueItem.combinedTextSentences.length === 0 ||
ttsQueueItem.combinedTextSentences.length === 1) {
ttsQueueItem.combinedTextSentences = undefined;
} else {
// let total = 0;
// ttsQueueItem.combinedTextSentences.forEach((sent) => {
// total += sent.length;
// });
// const expectedWhiteSpacesSeparators = ttsQueueItem.combinedTextSentences.length - 1;
// if (total !== ttsQueueItem.combinedText.length &&
// ((ttsQueueItem.combinedText.length - total) !== expectedWhiteSpacesSeparators)) {
// console.log("sentences total !== item.combinedText.length");
// console.log(total + " !== " + ttsQueueItem.combinedText.length);
// consoleLogTtsQueueItem(ttsQueueItem);
// console.log(JSON.stringify(sentences, null, 4));
// }
}
} catch (err) {
console.log(err);
ttsQueueItem.combinedTextSentences = undefined;
}
} else {