@d-i-t-a/reader 2.1.0-beta.5 → 2.1.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +577 -626
- package/dist/esm/index.js.map +3 -3
- package/dist/injectables/style/popup.css +2 -2
- package/dist/reader.js +39 -39
- package/dist/reader.js.map +3 -3
- package/dist/types/model/Locator.d.ts +0 -4
- package/dist/types/model/user-settings/UserSettings.d.ts +1 -1
- package/dist/types/modules/search/SearchModule.d.ts +1 -3
- package/dist/types/navigator/IFrameNavigator.d.ts +1 -2
- package/dist/types/utils/index.d.ts +0 -5
- package/package.json +2 -1
package/dist/esm/index.js
CHANGED
|
@@ -13677,6 +13677,231 @@ and ensure you are accounting for this risk.
|
|
|
13677
13677
|
}
|
|
13678
13678
|
});
|
|
13679
13679
|
|
|
13680
|
+
// node_modules/loglevel/lib/loglevel.js
|
|
13681
|
+
var require_loglevel = __commonJS({
|
|
13682
|
+
"node_modules/loglevel/lib/loglevel.js"(exports, module) {
|
|
13683
|
+
init_polyfills();
|
|
13684
|
+
(function(root, definition) {
|
|
13685
|
+
"use strict";
|
|
13686
|
+
if (typeof define === "function" && define.amd) {
|
|
13687
|
+
define(definition);
|
|
13688
|
+
} else if (typeof module === "object" && module.exports) {
|
|
13689
|
+
module.exports = definition();
|
|
13690
|
+
} else {
|
|
13691
|
+
root.log = definition();
|
|
13692
|
+
}
|
|
13693
|
+
})(exports, function() {
|
|
13694
|
+
"use strict";
|
|
13695
|
+
var noop = function() {
|
|
13696
|
+
};
|
|
13697
|
+
var undefinedType = "undefined";
|
|
13698
|
+
var isIE2 = typeof window !== undefinedType && typeof window.navigator !== undefinedType && /Trident\/|MSIE /.test(window.navigator.userAgent);
|
|
13699
|
+
var logMethods = [
|
|
13700
|
+
"trace",
|
|
13701
|
+
"debug",
|
|
13702
|
+
"info",
|
|
13703
|
+
"warn",
|
|
13704
|
+
"error"
|
|
13705
|
+
];
|
|
13706
|
+
function bindMethod(obj, methodName) {
|
|
13707
|
+
var method = obj[methodName];
|
|
13708
|
+
if (typeof method.bind === "function") {
|
|
13709
|
+
return method.bind(obj);
|
|
13710
|
+
} else {
|
|
13711
|
+
try {
|
|
13712
|
+
return Function.prototype.bind.call(method, obj);
|
|
13713
|
+
} catch (e) {
|
|
13714
|
+
return function() {
|
|
13715
|
+
return Function.prototype.apply.apply(method, [obj, arguments]);
|
|
13716
|
+
};
|
|
13717
|
+
}
|
|
13718
|
+
}
|
|
13719
|
+
}
|
|
13720
|
+
function traceForIE() {
|
|
13721
|
+
if (console.log) {
|
|
13722
|
+
if (console.log.apply) {
|
|
13723
|
+
console.log.apply(console, arguments);
|
|
13724
|
+
} else {
|
|
13725
|
+
Function.prototype.apply.apply(console.log, [console, arguments]);
|
|
13726
|
+
}
|
|
13727
|
+
}
|
|
13728
|
+
if (console.trace)
|
|
13729
|
+
console.trace();
|
|
13730
|
+
}
|
|
13731
|
+
function realMethod(methodName) {
|
|
13732
|
+
if (methodName === "debug") {
|
|
13733
|
+
methodName = "log";
|
|
13734
|
+
}
|
|
13735
|
+
if (typeof console === undefinedType) {
|
|
13736
|
+
return false;
|
|
13737
|
+
} else if (methodName === "trace" && isIE2) {
|
|
13738
|
+
return traceForIE;
|
|
13739
|
+
} else if (console[methodName] !== void 0) {
|
|
13740
|
+
return bindMethod(console, methodName);
|
|
13741
|
+
} else if (console.log !== void 0) {
|
|
13742
|
+
return bindMethod(console, "log");
|
|
13743
|
+
} else {
|
|
13744
|
+
return noop;
|
|
13745
|
+
}
|
|
13746
|
+
}
|
|
13747
|
+
function replaceLoggingMethods(level, loggerName) {
|
|
13748
|
+
for (var i = 0; i < logMethods.length; i++) {
|
|
13749
|
+
var methodName = logMethods[i];
|
|
13750
|
+
this[methodName] = i < level ? noop : this.methodFactory(methodName, level, loggerName);
|
|
13751
|
+
}
|
|
13752
|
+
this.log = this.debug;
|
|
13753
|
+
}
|
|
13754
|
+
function enableLoggingWhenConsoleArrives(methodName, level, loggerName) {
|
|
13755
|
+
return function() {
|
|
13756
|
+
if (typeof console !== undefinedType) {
|
|
13757
|
+
replaceLoggingMethods.call(this, level, loggerName);
|
|
13758
|
+
this[methodName].apply(this, arguments);
|
|
13759
|
+
}
|
|
13760
|
+
};
|
|
13761
|
+
}
|
|
13762
|
+
function defaultMethodFactory(methodName, level, loggerName) {
|
|
13763
|
+
return realMethod(methodName) || enableLoggingWhenConsoleArrives.apply(this, arguments);
|
|
13764
|
+
}
|
|
13765
|
+
function Logger(name, defaultLevel, factory) {
|
|
13766
|
+
var self2 = this;
|
|
13767
|
+
var currentLevel;
|
|
13768
|
+
defaultLevel = defaultLevel == null ? "WARN" : defaultLevel;
|
|
13769
|
+
var storageKey = "loglevel";
|
|
13770
|
+
if (typeof name === "string") {
|
|
13771
|
+
storageKey += ":" + name;
|
|
13772
|
+
} else if (typeof name === "symbol") {
|
|
13773
|
+
storageKey = void 0;
|
|
13774
|
+
}
|
|
13775
|
+
function persistLevelIfPossible(levelNum) {
|
|
13776
|
+
var levelName = (logMethods[levelNum] || "silent").toUpperCase();
|
|
13777
|
+
if (typeof window === undefinedType || !storageKey)
|
|
13778
|
+
return;
|
|
13779
|
+
try {
|
|
13780
|
+
window.localStorage[storageKey] = levelName;
|
|
13781
|
+
return;
|
|
13782
|
+
} catch (ignore) {
|
|
13783
|
+
}
|
|
13784
|
+
try {
|
|
13785
|
+
window.document.cookie = encodeURIComponent(storageKey) + "=" + levelName + ";";
|
|
13786
|
+
} catch (ignore) {
|
|
13787
|
+
}
|
|
13788
|
+
}
|
|
13789
|
+
function getPersistedLevel() {
|
|
13790
|
+
var storedLevel;
|
|
13791
|
+
if (typeof window === undefinedType || !storageKey)
|
|
13792
|
+
return;
|
|
13793
|
+
try {
|
|
13794
|
+
storedLevel = window.localStorage[storageKey];
|
|
13795
|
+
} catch (ignore) {
|
|
13796
|
+
}
|
|
13797
|
+
if (typeof storedLevel === undefinedType) {
|
|
13798
|
+
try {
|
|
13799
|
+
var cookie = window.document.cookie;
|
|
13800
|
+
var location = cookie.indexOf(encodeURIComponent(storageKey) + "=");
|
|
13801
|
+
if (location !== -1) {
|
|
13802
|
+
storedLevel = /^([^;]+)/.exec(cookie.slice(location))[1];
|
|
13803
|
+
}
|
|
13804
|
+
} catch (ignore) {
|
|
13805
|
+
}
|
|
13806
|
+
}
|
|
13807
|
+
if (self2.levels[storedLevel] === void 0) {
|
|
13808
|
+
storedLevel = void 0;
|
|
13809
|
+
}
|
|
13810
|
+
return storedLevel;
|
|
13811
|
+
}
|
|
13812
|
+
function clearPersistedLevel() {
|
|
13813
|
+
if (typeof window === undefinedType || !storageKey)
|
|
13814
|
+
return;
|
|
13815
|
+
try {
|
|
13816
|
+
window.localStorage.removeItem(storageKey);
|
|
13817
|
+
return;
|
|
13818
|
+
} catch (ignore) {
|
|
13819
|
+
}
|
|
13820
|
+
try {
|
|
13821
|
+
window.document.cookie = encodeURIComponent(storageKey) + "=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
|
|
13822
|
+
} catch (ignore) {
|
|
13823
|
+
}
|
|
13824
|
+
}
|
|
13825
|
+
self2.name = name;
|
|
13826
|
+
self2.levels = {
|
|
13827
|
+
"TRACE": 0,
|
|
13828
|
+
"DEBUG": 1,
|
|
13829
|
+
"INFO": 2,
|
|
13830
|
+
"WARN": 3,
|
|
13831
|
+
"ERROR": 4,
|
|
13832
|
+
"SILENT": 5
|
|
13833
|
+
};
|
|
13834
|
+
self2.methodFactory = factory || defaultMethodFactory;
|
|
13835
|
+
self2.getLevel = function() {
|
|
13836
|
+
return currentLevel;
|
|
13837
|
+
};
|
|
13838
|
+
self2.setLevel = function(level, persist) {
|
|
13839
|
+
if (typeof level === "string" && self2.levels[level.toUpperCase()] !== void 0) {
|
|
13840
|
+
level = self2.levels[level.toUpperCase()];
|
|
13841
|
+
}
|
|
13842
|
+
if (typeof level === "number" && level >= 0 && level <= self2.levels.SILENT) {
|
|
13843
|
+
currentLevel = level;
|
|
13844
|
+
if (persist !== false) {
|
|
13845
|
+
persistLevelIfPossible(level);
|
|
13846
|
+
}
|
|
13847
|
+
replaceLoggingMethods.call(self2, level, name);
|
|
13848
|
+
if (typeof console === undefinedType && level < self2.levels.SILENT) {
|
|
13849
|
+
return "No console available for logging";
|
|
13850
|
+
}
|
|
13851
|
+
} else {
|
|
13852
|
+
throw "log.setLevel() called with invalid level: " + level;
|
|
13853
|
+
}
|
|
13854
|
+
};
|
|
13855
|
+
self2.setDefaultLevel = function(level) {
|
|
13856
|
+
defaultLevel = level;
|
|
13857
|
+
if (!getPersistedLevel()) {
|
|
13858
|
+
self2.setLevel(level, false);
|
|
13859
|
+
}
|
|
13860
|
+
};
|
|
13861
|
+
self2.resetLevel = function() {
|
|
13862
|
+
self2.setLevel(defaultLevel, false);
|
|
13863
|
+
clearPersistedLevel();
|
|
13864
|
+
};
|
|
13865
|
+
self2.enableAll = function(persist) {
|
|
13866
|
+
self2.setLevel(self2.levels.TRACE, persist);
|
|
13867
|
+
};
|
|
13868
|
+
self2.disableAll = function(persist) {
|
|
13869
|
+
self2.setLevel(self2.levels.SILENT, persist);
|
|
13870
|
+
};
|
|
13871
|
+
var initialLevel = getPersistedLevel();
|
|
13872
|
+
if (initialLevel == null) {
|
|
13873
|
+
initialLevel = defaultLevel;
|
|
13874
|
+
}
|
|
13875
|
+
self2.setLevel(initialLevel, false);
|
|
13876
|
+
}
|
|
13877
|
+
var defaultLogger = new Logger();
|
|
13878
|
+
var _loggersByName = {};
|
|
13879
|
+
defaultLogger.getLogger = function getLogger(name) {
|
|
13880
|
+
if (typeof name !== "symbol" && typeof name !== "string" || name === "") {
|
|
13881
|
+
throw new TypeError("You must supply a name when creating a logger.");
|
|
13882
|
+
}
|
|
13883
|
+
var logger = _loggersByName[name];
|
|
13884
|
+
if (!logger) {
|
|
13885
|
+
logger = _loggersByName[name] = new Logger(name, defaultLogger.getLevel(), defaultLogger.methodFactory);
|
|
13886
|
+
}
|
|
13887
|
+
return logger;
|
|
13888
|
+
};
|
|
13889
|
+
var _log = typeof window !== undefinedType ? window.log : void 0;
|
|
13890
|
+
defaultLogger.noConflict = function() {
|
|
13891
|
+
if (typeof window !== undefinedType && window.log === defaultLogger) {
|
|
13892
|
+
window.log = _log;
|
|
13893
|
+
}
|
|
13894
|
+
return defaultLogger;
|
|
13895
|
+
};
|
|
13896
|
+
defaultLogger.getLoggers = function getLoggers() {
|
|
13897
|
+
return _loggersByName;
|
|
13898
|
+
};
|
|
13899
|
+
defaultLogger["default"] = defaultLogger;
|
|
13900
|
+
return defaultLogger;
|
|
13901
|
+
});
|
|
13902
|
+
}
|
|
13903
|
+
});
|
|
13904
|
+
|
|
13680
13905
|
// node_modules/debounce/index.js
|
|
13681
13906
|
var require_debounce = __commonJS({
|
|
13682
13907
|
"node_modules/debounce/index.js"(exports, module) {
|
|
@@ -34597,15 +34822,6 @@ function setAttr(element, attr, value) {
|
|
|
34597
34822
|
element.setAttribute(attr, value);
|
|
34598
34823
|
}
|
|
34599
34824
|
|
|
34600
|
-
// src/utils/index.ts
|
|
34601
|
-
init_polyfills();
|
|
34602
|
-
function delay(t, v) {
|
|
34603
|
-
return new Promise(function(resolve) {
|
|
34604
|
-
setTimeout(resolve.bind(null, v), t);
|
|
34605
|
-
});
|
|
34606
|
-
}
|
|
34607
|
-
var IS_DEV = false;
|
|
34608
|
-
|
|
34609
34825
|
// src/utils/EventHandler.ts
|
|
34610
34826
|
init_polyfills();
|
|
34611
34827
|
|
|
@@ -34811,6 +35027,7 @@ var Popup = class {
|
|
|
34811
35027
|
};
|
|
34812
35028
|
|
|
34813
35029
|
// src/utils/EventHandler.ts
|
|
35030
|
+
var import_loglevel = __toModule(require_loglevel());
|
|
34814
35031
|
function addEventListenerOptional(element, eventType, eventListener) {
|
|
34815
35032
|
if (element) {
|
|
34816
35033
|
element.addEventListener(eventType, eventListener, true);
|
|
@@ -34842,20 +35059,17 @@ var EventHandler = class {
|
|
|
34842
35059
|
return !link.Rel?.includes("external") && this.navigator.publication.getRelativeHref(clickedHref).includes(link.Href);
|
|
34843
35060
|
});
|
|
34844
35061
|
this.isReadingOrderInternal = (clickedLink) => {
|
|
34845
|
-
|
|
34846
|
-
console.log("clickedLink: ", clickedLink);
|
|
35062
|
+
import_loglevel.default.log("clickedLink: ", clickedLink);
|
|
34847
35063
|
const isEpubInternal = this.linkInPublication(this.navigator.publication.readingOrder, clickedLink.href);
|
|
34848
35064
|
return isEpubInternal;
|
|
34849
35065
|
};
|
|
34850
35066
|
this.isResourceInternal = (clickedLink) => {
|
|
34851
|
-
|
|
34852
|
-
console.log("clickedLink: ", clickedLink);
|
|
35067
|
+
import_loglevel.default.log("clickedLink: ", clickedLink);
|
|
34853
35068
|
const isEpubInternal = this.linkInPublication(this.navigator.publication.resources, clickedLink.href);
|
|
34854
35069
|
return isEpubInternal;
|
|
34855
35070
|
};
|
|
34856
35071
|
this.handleLinks = async (event) => {
|
|
34857
|
-
|
|
34858
|
-
console.log("R2 Click Handler");
|
|
35072
|
+
import_loglevel.default.log("R2 Click Handler");
|
|
34859
35073
|
const link = this.checkForLink(event);
|
|
34860
35074
|
if (link) {
|
|
34861
35075
|
const isSameOrigin = window.location.protocol === link.protocol && window.location.port === link.port && window.location.hostname === link.hostname;
|
|
@@ -35352,6 +35566,7 @@ var FixedBookView = class {
|
|
|
35352
35566
|
};
|
|
35353
35567
|
|
|
35354
35568
|
// src/model/user-settings/UserSettings.ts
|
|
35569
|
+
var import_loglevel2 = __toModule(require_loglevel());
|
|
35355
35570
|
var _UserSettings = class {
|
|
35356
35571
|
constructor(store, headerMenu, api, injectables, layout) {
|
|
35357
35572
|
this.USERSETTINGS = "userSetting";
|
|
@@ -35390,7 +35605,7 @@ var _UserSettings = class {
|
|
|
35390
35605
|
}
|
|
35391
35606
|
async isPaginated() {
|
|
35392
35607
|
let scroll = await this.getPropertyAndFallback("verticalScroll", ReadiumCSS.SCROLL_KEY);
|
|
35393
|
-
return scroll
|
|
35608
|
+
return !scroll;
|
|
35394
35609
|
}
|
|
35395
35610
|
async isScrollMode() {
|
|
35396
35611
|
return !await this.isPaginated();
|
|
@@ -35410,8 +35625,7 @@ var _UserSettings = class {
|
|
|
35410
35625
|
prop.value = settings.verticalScroll;
|
|
35411
35626
|
await settings.saveProperty(prop);
|
|
35412
35627
|
}
|
|
35413
|
-
|
|
35414
|
-
console.log(settings.verticalScroll);
|
|
35628
|
+
import_loglevel2.default.log(settings.verticalScroll);
|
|
35415
35629
|
}
|
|
35416
35630
|
if (initialUserSettings.appearance) {
|
|
35417
35631
|
settings.appearance = _UserSettings.appearanceValues.findIndex((el) => el === initialUserSettings.appearance);
|
|
@@ -35420,8 +35634,7 @@ var _UserSettings = class {
|
|
|
35420
35634
|
prop.value = settings.appearance;
|
|
35421
35635
|
await settings.saveProperty(prop);
|
|
35422
35636
|
}
|
|
35423
|
-
|
|
35424
|
-
console.log(settings.appearance);
|
|
35637
|
+
import_loglevel2.default.log(settings.appearance);
|
|
35425
35638
|
}
|
|
35426
35639
|
if (initialUserSettings.fontSize) {
|
|
35427
35640
|
settings.fontSize = initialUserSettings.fontSize;
|
|
@@ -35430,8 +35643,7 @@ var _UserSettings = class {
|
|
|
35430
35643
|
prop.value = settings.fontSize;
|
|
35431
35644
|
await settings.saveProperty(prop);
|
|
35432
35645
|
}
|
|
35433
|
-
|
|
35434
|
-
console.log(settings.fontSize);
|
|
35646
|
+
import_loglevel2.default.log(settings.fontSize);
|
|
35435
35647
|
}
|
|
35436
35648
|
if (initialUserSettings.fontFamily) {
|
|
35437
35649
|
settings.fontFamily = _UserSettings.fontFamilyValues.findIndex((el) => el === initialUserSettings.fontFamily);
|
|
@@ -35440,8 +35652,7 @@ var _UserSettings = class {
|
|
|
35440
35652
|
prop.value = settings.fontFamily;
|
|
35441
35653
|
await settings.saveProperty(prop);
|
|
35442
35654
|
}
|
|
35443
|
-
|
|
35444
|
-
console.log(settings.fontFamily);
|
|
35655
|
+
import_loglevel2.default.log(settings.fontFamily);
|
|
35445
35656
|
if (settings.fontFamily !== 0) {
|
|
35446
35657
|
settings.fontOverride = true;
|
|
35447
35658
|
}
|
|
@@ -35453,8 +35664,7 @@ var _UserSettings = class {
|
|
|
35453
35664
|
prop.value = settings.textAlignment;
|
|
35454
35665
|
await settings.saveProperty(prop);
|
|
35455
35666
|
}
|
|
35456
|
-
|
|
35457
|
-
console.log(settings.textAlignment);
|
|
35667
|
+
import_loglevel2.default.log(settings.textAlignment);
|
|
35458
35668
|
}
|
|
35459
35669
|
if (initialUserSettings.columnCount) {
|
|
35460
35670
|
settings.columnCount = _UserSettings.columnCountValues.findIndex((el) => el === initialUserSettings.columnCount);
|
|
@@ -35463,8 +35673,7 @@ var _UserSettings = class {
|
|
|
35463
35673
|
prop.value = settings.columnCount;
|
|
35464
35674
|
await settings.saveProperty(prop);
|
|
35465
35675
|
}
|
|
35466
|
-
|
|
35467
|
-
console.log(settings.columnCount);
|
|
35676
|
+
import_loglevel2.default.log(settings.columnCount);
|
|
35468
35677
|
}
|
|
35469
35678
|
if (initialUserSettings.wordSpacing) {
|
|
35470
35679
|
settings.wordSpacing = initialUserSettings.wordSpacing;
|
|
@@ -35473,8 +35682,7 @@ var _UserSettings = class {
|
|
|
35473
35682
|
prop.value = settings.wordSpacing;
|
|
35474
35683
|
await settings.saveProperty(prop);
|
|
35475
35684
|
}
|
|
35476
|
-
|
|
35477
|
-
console.log(settings.wordSpacing);
|
|
35685
|
+
import_loglevel2.default.log(settings.wordSpacing);
|
|
35478
35686
|
}
|
|
35479
35687
|
if (initialUserSettings.letterSpacing) {
|
|
35480
35688
|
settings.letterSpacing = initialUserSettings.letterSpacing;
|
|
@@ -35483,8 +35691,7 @@ var _UserSettings = class {
|
|
|
35483
35691
|
prop.value = settings.letterSpacing;
|
|
35484
35692
|
await settings.saveProperty(prop);
|
|
35485
35693
|
}
|
|
35486
|
-
|
|
35487
|
-
console.log(settings.letterSpacing);
|
|
35694
|
+
import_loglevel2.default.log(settings.letterSpacing);
|
|
35488
35695
|
}
|
|
35489
35696
|
if (initialUserSettings.pageMargins) {
|
|
35490
35697
|
settings.pageMargins = initialUserSettings.pageMargins;
|
|
@@ -35493,8 +35700,7 @@ var _UserSettings = class {
|
|
|
35493
35700
|
prop.value = settings.pageMargins;
|
|
35494
35701
|
await settings.saveProperty(prop);
|
|
35495
35702
|
}
|
|
35496
|
-
|
|
35497
|
-
console.log(settings.pageMargins);
|
|
35703
|
+
import_loglevel2.default.log(settings.pageMargins);
|
|
35498
35704
|
}
|
|
35499
35705
|
if (initialUserSettings.lineHeight) {
|
|
35500
35706
|
settings.lineHeight = initialUserSettings.lineHeight;
|
|
@@ -35503,8 +35709,7 @@ var _UserSettings = class {
|
|
|
35503
35709
|
prop.value = settings.lineHeight;
|
|
35504
35710
|
await settings.saveProperty(prop);
|
|
35505
35711
|
}
|
|
35506
|
-
|
|
35507
|
-
console.log(settings.lineHeight);
|
|
35712
|
+
import_loglevel2.default.log(settings.lineHeight);
|
|
35508
35713
|
}
|
|
35509
35714
|
settings.userProperties = settings.getUserSettings();
|
|
35510
35715
|
await settings.initialise();
|
|
@@ -35513,9 +35718,7 @@ var _UserSettings = class {
|
|
|
35513
35718
|
return new Promise((resolve) => resolve(settings));
|
|
35514
35719
|
}
|
|
35515
35720
|
stop() {
|
|
35516
|
-
|
|
35517
|
-
console.log("book settings stop");
|
|
35518
|
-
}
|
|
35721
|
+
import_loglevel2.default.log("book settings stop");
|
|
35519
35722
|
}
|
|
35520
35723
|
async initialise() {
|
|
35521
35724
|
this.appearance = await this.getPropertyAndFallback("appearance", ReadiumCSS.APPEARANCE_KEY);
|
|
@@ -35673,9 +35876,9 @@ var _UserSettings = class {
|
|
|
35673
35876
|
this.view.iframe = iframe;
|
|
35674
35877
|
}
|
|
35675
35878
|
if (this.settingsView)
|
|
35676
|
-
|
|
35879
|
+
_UserSettings.renderControls(this.settingsView);
|
|
35677
35880
|
}
|
|
35678
|
-
renderControls(element) {
|
|
35881
|
+
static renderControls(element) {
|
|
35679
35882
|
addEventListenerOptional(findElement(element, "ul"), "click", (event) => {
|
|
35680
35883
|
event.stopPropagation();
|
|
35681
35884
|
});
|
|
@@ -35722,9 +35925,7 @@ var _UserSettings = class {
|
|
|
35722
35925
|
};
|
|
35723
35926
|
if (this.api?.updateSettings) {
|
|
35724
35927
|
this.api?.updateSettings(userSettings).then((_) => {
|
|
35725
|
-
|
|
35726
|
-
console.log("api updated user settings", userSettings);
|
|
35727
|
-
}
|
|
35928
|
+
import_loglevel2.default.log("api updated user settings", JSON.stringify(userSettings));
|
|
35728
35929
|
});
|
|
35729
35930
|
}
|
|
35730
35931
|
}
|
|
@@ -36459,7 +36660,7 @@ var HighlightType;
|
|
|
36459
36660
|
|
|
36460
36661
|
// src/modules/highlight/common/rect-utils.ts
|
|
36461
36662
|
init_polyfills();
|
|
36462
|
-
var
|
|
36663
|
+
var import_loglevel3 = __toModule(require_loglevel());
|
|
36463
36664
|
function getClientRectsNoOverlap(range, doNotMergeHorizontallyAlignedRects) {
|
|
36464
36665
|
const rangeClientRects = range.getClientRects();
|
|
36465
36666
|
return getClientRectsNoOverlap_(rangeClientRects, doNotMergeHorizontallyAlignedRects);
|
|
@@ -36486,24 +36687,16 @@ function getClientRectsNoOverlap_(clientRects, doNotMergeHorizontallyAlignedRect
|
|
|
36486
36687
|
const bigEnough = rect.width * rect.height > minArea;
|
|
36487
36688
|
if (!bigEnough) {
|
|
36488
36689
|
if (newRects.length > 1) {
|
|
36489
|
-
|
|
36490
|
-
console.log("CLIENT RECT: remove small");
|
|
36491
|
-
}
|
|
36690
|
+
import_loglevel3.default.log("CLIENT RECT: remove small");
|
|
36492
36691
|
newRects.splice(j, 1);
|
|
36493
36692
|
} else {
|
|
36494
|
-
|
|
36495
|
-
console.log("CLIENT RECT: remove small, but keep otherwise empty!");
|
|
36496
|
-
}
|
|
36693
|
+
import_loglevel3.default.log("CLIENT RECT: remove small, but keep otherwise empty!");
|
|
36497
36694
|
break;
|
|
36498
36695
|
}
|
|
36499
36696
|
}
|
|
36500
36697
|
}
|
|
36501
|
-
|
|
36502
|
-
|
|
36503
|
-
}
|
|
36504
|
-
if (IS_DEV2) {
|
|
36505
|
-
console.log(`CLIENT RECT: reduced ${originalRects.length} --> ${newRects.length}`);
|
|
36506
|
-
}
|
|
36698
|
+
checkOverlaps(newRects);
|
|
36699
|
+
import_loglevel3.default.log(`CLIENT RECT: reduced ${originalRects.length} --> ${newRects.length}`);
|
|
36507
36700
|
return newRects;
|
|
36508
36701
|
}
|
|
36509
36702
|
function almostEqual(a, b, tolerance) {
|
|
@@ -36620,9 +36813,7 @@ function mergeTouchingRects(rects, tolerance, doNotMergeHorizontallyAlignedRects
|
|
|
36620
36813
|
const rect1 = rects[i];
|
|
36621
36814
|
const rect2 = rects[j];
|
|
36622
36815
|
if (rect1 === rect2) {
|
|
36623
|
-
|
|
36624
|
-
console.log("mergeTouchingRects rect1 === rect2 ??!");
|
|
36625
|
-
}
|
|
36816
|
+
import_loglevel3.default.log("mergeTouchingRects rect1 === rect2 ??!");
|
|
36626
36817
|
continue;
|
|
36627
36818
|
}
|
|
36628
36819
|
const rectsLineUpVertically = almostEqual(rect1.top, rect2.top, tolerance) && almostEqual(rect1.bottom, rect2.bottom, tolerance);
|
|
@@ -36631,9 +36822,7 @@ function mergeTouchingRects(rects, tolerance, doNotMergeHorizontallyAlignedRects
|
|
|
36631
36822
|
const aligned = rectsLineUpHorizontally && horizontalAllowed || rectsLineUpVertically && !rectsLineUpHorizontally;
|
|
36632
36823
|
const canMerge = aligned && rectsTouchOrOverlap(rect1, rect2, tolerance);
|
|
36633
36824
|
if (canMerge) {
|
|
36634
|
-
|
|
36635
|
-
console.log(`CLIENT RECT: merging two into one, VERTICAL: ${rectsLineUpVertically} HORIZONTAL: ${rectsLineUpHorizontally} (${doNotMergeHorizontallyAlignedRects})`);
|
|
36636
|
-
}
|
|
36825
|
+
import_loglevel3.default.log(`CLIENT RECT: merging two into one, VERTICAL: ${rectsLineUpVertically} HORIZONTAL: ${rectsLineUpHorizontally} (${doNotMergeHorizontallyAlignedRects})`);
|
|
36637
36826
|
const newRects = rects.filter((rect) => {
|
|
36638
36827
|
return rect !== rect1 && rect !== rect2;
|
|
36639
36828
|
});
|
|
@@ -36651,9 +36840,7 @@ function replaceOverlappingRects(rects) {
|
|
|
36651
36840
|
const rect1 = rects[i];
|
|
36652
36841
|
const rect2 = rects[j];
|
|
36653
36842
|
if (rect1 === rect2) {
|
|
36654
|
-
|
|
36655
|
-
console.log("replaceOverlappingRects rect1 === rect2 ??!");
|
|
36656
|
-
}
|
|
36843
|
+
import_loglevel3.default.log("replaceOverlappingRects rect1 === rect2 ??!");
|
|
36657
36844
|
continue;
|
|
36658
36845
|
}
|
|
36659
36846
|
if (rectsTouchOrOverlap(rect1, rect2, -1)) {
|
|
@@ -36677,15 +36864,11 @@ function replaceOverlappingRects(rects) {
|
|
|
36677
36864
|
toPreserve = rect1;
|
|
36678
36865
|
}
|
|
36679
36866
|
}
|
|
36680
|
-
|
|
36681
|
-
|
|
36682
|
-
|
|
36683
|
-
|
|
36684
|
-
|
|
36685
|
-
}
|
|
36686
|
-
if (IS_DEV2) {
|
|
36687
|
-
console.log(`CLIENT RECT: overlap, cut one rect into ${toAdd.length}`);
|
|
36688
|
-
}
|
|
36867
|
+
const toCheck = [];
|
|
36868
|
+
toCheck.push(toPreserve);
|
|
36869
|
+
Array.prototype.push.apply(toCheck, toAdd);
|
|
36870
|
+
checkOverlaps(toCheck);
|
|
36871
|
+
import_loglevel3.default.log(`CLIENT RECT: overlap, cut one rect into ${toAdd.length}`);
|
|
36689
36872
|
const newRects = rects.filter((rect) => {
|
|
36690
36873
|
return rect !== toRemove;
|
|
36691
36874
|
});
|
|
@@ -36707,9 +36890,7 @@ function removeContainedRects(rects, tolerance) {
|
|
|
36707
36890
|
for (const rect of rects) {
|
|
36708
36891
|
const bigEnough = rect.width > 1 && rect.height > 1;
|
|
36709
36892
|
if (!bigEnough) {
|
|
36710
|
-
|
|
36711
|
-
console.log("CLIENT RECT: remove tiny");
|
|
36712
|
-
}
|
|
36893
|
+
import_loglevel3.default.log("CLIENT RECT: remove tiny");
|
|
36713
36894
|
rectsToKeep.delete(rect);
|
|
36714
36895
|
continue;
|
|
36715
36896
|
}
|
|
@@ -36721,9 +36902,7 @@ function removeContainedRects(rects, tolerance) {
|
|
|
36721
36902
|
continue;
|
|
36722
36903
|
}
|
|
36723
36904
|
if (rectContains(possiblyContainingRect, rect, tolerance)) {
|
|
36724
|
-
|
|
36725
|
-
console.log("CLIENT RECT: remove contained");
|
|
36726
|
-
}
|
|
36905
|
+
import_loglevel3.default.log("CLIENT RECT: remove contained");
|
|
36727
36906
|
rectsToKeep.delete(rect);
|
|
36728
36907
|
break;
|
|
36729
36908
|
}
|
|
@@ -36748,46 +36927,38 @@ function checkOverlaps(rects) {
|
|
|
36748
36927
|
if (!has2) {
|
|
36749
36928
|
stillOverlappingRects.push(rect2);
|
|
36750
36929
|
}
|
|
36751
|
-
|
|
36752
|
-
|
|
36753
|
-
|
|
36754
|
-
|
|
36755
|
-
|
|
36756
|
-
|
|
36757
|
-
|
|
36758
|
-
console.log(`yOverlap: ${yOverlap}`);
|
|
36759
|
-
}
|
|
36930
|
+
import_loglevel3.default.log("CLIENT RECT: overlap ---");
|
|
36931
|
+
import_loglevel3.default.log(`#1 TOP:${rect1.top} BOTTOM:${rect1.bottom} LEFT:${rect1.left} RIGHT:${rect1.right} WIDTH:${rect1.width} HEIGHT:${rect1.height}`);
|
|
36932
|
+
import_loglevel3.default.log(`#2 TOP:${rect2.top} BOTTOM:${rect2.bottom} LEFT:${rect2.left} RIGHT:${rect2.right} WIDTH:${rect2.width} HEIGHT:${rect2.height}`);
|
|
36933
|
+
const xOverlap = getRectOverlapX(rect1, rect2);
|
|
36934
|
+
import_loglevel3.default.log(`xOverlap: ${xOverlap}`);
|
|
36935
|
+
const yOverlap = getRectOverlapY(rect1, rect2);
|
|
36936
|
+
import_loglevel3.default.log(`yOverlap: ${yOverlap}`);
|
|
36760
36937
|
}
|
|
36761
36938
|
}
|
|
36762
36939
|
}
|
|
36763
36940
|
}
|
|
36764
36941
|
if (stillOverlappingRects.length) {
|
|
36765
|
-
|
|
36766
|
-
console.log(`CLIENT RECT: overlaps ${stillOverlappingRects.length}`);
|
|
36767
|
-
}
|
|
36942
|
+
import_loglevel3.default.log(`CLIENT RECT: overlaps ${stillOverlappingRects.length}`);
|
|
36768
36943
|
}
|
|
36769
36944
|
}
|
|
36770
36945
|
|
|
36771
36946
|
// src/modules/highlight/renderer/iframe/selection.ts
|
|
36772
36947
|
init_polyfills();
|
|
36773
|
-
var
|
|
36948
|
+
var import_loglevel4 = __toModule(require_loglevel());
|
|
36774
36949
|
function getCurrentSelectionInfo(win, getCssSelector) {
|
|
36775
36950
|
const selection = win ? win.getSelection() : null;
|
|
36776
36951
|
if (!selection) {
|
|
36777
36952
|
return void 0;
|
|
36778
36953
|
}
|
|
36779
36954
|
if (selection.isCollapsed) {
|
|
36780
|
-
|
|
36781
|
-
console.log("^^^ SELECTION COLLAPSED.");
|
|
36782
|
-
}
|
|
36955
|
+
import_loglevel4.default.log("^^^ SELECTION COLLAPSED.");
|
|
36783
36956
|
return void 0;
|
|
36784
36957
|
}
|
|
36785
36958
|
const rawText = selection.toString();
|
|
36786
36959
|
const cleanText = rawText.trim().replace(/\n/g, " ").replace(/\s\s+/g, " ");
|
|
36787
36960
|
if (cleanText.length === 0) {
|
|
36788
|
-
|
|
36789
|
-
console.log("^^^ SELECTION TEXT EMPTY.");
|
|
36790
|
-
}
|
|
36961
|
+
import_loglevel4.default.log("^^^ SELECTION TEXT EMPTY.");
|
|
36791
36962
|
return void 0;
|
|
36792
36963
|
}
|
|
36793
36964
|
if (!selection.anchorNode || !selection.focusNode) {
|
|
@@ -36795,45 +36966,31 @@ function getCurrentSelectionInfo(win, getCssSelector) {
|
|
|
36795
36966
|
}
|
|
36796
36967
|
const r = selection.rangeCount === 1 ? selection.getRangeAt(0) : createOrderedRange(selection.anchorNode, selection.anchorOffset, selection.focusNode, selection.focusOffset);
|
|
36797
36968
|
if (!r || r.collapsed) {
|
|
36798
|
-
|
|
36799
|
-
console.log("$$$$$$$$$$$$$$$$$ CANNOT GET NON-COLLAPSED SELECTION RANGE?!");
|
|
36800
|
-
}
|
|
36969
|
+
import_loglevel4.default.log("$$$$$$$$$$$$$$$$$ CANNOT GET NON-COLLAPSED SELECTION RANGE?!");
|
|
36801
36970
|
return void 0;
|
|
36802
36971
|
}
|
|
36803
36972
|
const range = normalizeRange(r);
|
|
36804
|
-
if (
|
|
36805
|
-
|
|
36806
|
-
|
|
36807
|
-
|
|
36808
|
-
|
|
36809
|
-
|
|
36810
|
-
|
|
36811
|
-
}
|
|
36812
|
-
|
|
36813
|
-
|
|
36814
|
-
|
|
36815
|
-
|
|
36816
|
-
|
|
36817
|
-
|
|
36818
|
-
|
|
36819
|
-
|
|
36820
|
-
|
|
36821
|
-
console.log(range.endContainer);
|
|
36822
|
-
console.log(r.endContainer);
|
|
36823
|
-
}
|
|
36824
|
-
}
|
|
36825
|
-
if (range.endOffset !== r.endOffset) {
|
|
36826
|
-
if (IS_DEV3) {
|
|
36827
|
-
console.log(">>>>>>>>>>>>>>>>>>>>>>> SELECTION RANGE NORMALIZE diff: endOffset");
|
|
36828
|
-
console.log(`${range.endOffset} !== ${r.endOffset}`);
|
|
36829
|
-
}
|
|
36830
|
-
}
|
|
36973
|
+
if (range.startContainer !== r.startContainer) {
|
|
36974
|
+
import_loglevel4.default.log(">>>>>>>>>>>>>>>>>>>>>>> SELECTION RANGE NORMALIZE diff: startContainer");
|
|
36975
|
+
import_loglevel4.default.log(range.startContainer);
|
|
36976
|
+
import_loglevel4.default.log(r.startContainer);
|
|
36977
|
+
}
|
|
36978
|
+
if (range.startOffset !== r.startOffset) {
|
|
36979
|
+
import_loglevel4.default.log(">>>>>>>>>>>>>>>>>>>>>>> SELECTION RANGE NORMALIZE diff: startOffset");
|
|
36980
|
+
import_loglevel4.default.log(`${range.startOffset} !== ${r.startOffset}`);
|
|
36981
|
+
}
|
|
36982
|
+
if (range.endContainer !== r.endContainer) {
|
|
36983
|
+
import_loglevel4.default.log(">>>>>>>>>>>>>>>>>>>>>>> SELECTION RANGE NORMALIZE diff: endContainer");
|
|
36984
|
+
import_loglevel4.default.log(range.endContainer);
|
|
36985
|
+
import_loglevel4.default.log(r.endContainer);
|
|
36986
|
+
}
|
|
36987
|
+
if (range.endOffset !== r.endOffset) {
|
|
36988
|
+
import_loglevel4.default.log(">>>>>>>>>>>>>>>>>>>>>>> SELECTION RANGE NORMALIZE diff: endOffset");
|
|
36989
|
+
import_loglevel4.default.log(`${range.endOffset} !== ${r.endOffset}`);
|
|
36831
36990
|
}
|
|
36832
36991
|
const rangeInfo = convertRange(range, getCssSelector);
|
|
36833
36992
|
if (!rangeInfo) {
|
|
36834
|
-
|
|
36835
|
-
console.log("^^^ SELECTION RANGE INFO FAIL?!");
|
|
36836
|
-
}
|
|
36993
|
+
import_loglevel4.default.log("^^^ SELECTION RANGE INFO FAIL?!");
|
|
36837
36994
|
return void 0;
|
|
36838
36995
|
}
|
|
36839
36996
|
return { rangeInfo, cleanText, rawText, range };
|
|
@@ -36844,26 +37001,18 @@ function createOrderedRange(startNode, startOffset, endNode, endOffset) {
|
|
|
36844
37001
|
range.setStart(startNode, startOffset);
|
|
36845
37002
|
range.setEnd(endNode, endOffset);
|
|
36846
37003
|
if (!range.collapsed) {
|
|
36847
|
-
|
|
36848
|
-
console.log(">>> createOrderedRange RANGE OK");
|
|
36849
|
-
}
|
|
37004
|
+
import_loglevel4.default.log(">>> createOrderedRange RANGE OK");
|
|
36850
37005
|
return range;
|
|
36851
37006
|
}
|
|
36852
|
-
|
|
36853
|
-
console.log(">>> createOrderedRange COLLAPSED ... RANGE REVERSE?");
|
|
36854
|
-
}
|
|
37007
|
+
import_loglevel4.default.log(">>> createOrderedRange COLLAPSED ... RANGE REVERSE?");
|
|
36855
37008
|
const rangeReverse = new Range();
|
|
36856
37009
|
rangeReverse.setStart(endNode, endOffset);
|
|
36857
37010
|
rangeReverse.setEnd(startNode, startOffset);
|
|
36858
37011
|
if (!rangeReverse.collapsed) {
|
|
36859
|
-
|
|
36860
|
-
console.log(">>> createOrderedRange RANGE REVERSE OK.");
|
|
36861
|
-
}
|
|
37012
|
+
import_loglevel4.default.log(">>> createOrderedRange RANGE REVERSE OK.");
|
|
36862
37013
|
return range;
|
|
36863
37014
|
}
|
|
36864
|
-
|
|
36865
|
-
console.log(">>> createOrderedRange RANGE REVERSE ALSO COLLAPSED?!");
|
|
36866
|
-
}
|
|
37015
|
+
import_loglevel4.default.log(">>> createOrderedRange RANGE REVERSE ALSO COLLAPSED?!");
|
|
36867
37016
|
return void 0;
|
|
36868
37017
|
} catch (err) {
|
|
36869
37018
|
console.warn(err.message);
|
|
@@ -36893,20 +37042,16 @@ function convertRange(range, getCssSelector) {
|
|
|
36893
37042
|
const endContainerElementCssSelector = getCssSelector(endContainerElement);
|
|
36894
37043
|
const commonElementAncestor = getCommonAncestorElement(range.startContainer, range.endContainer);
|
|
36895
37044
|
if (!commonElementAncestor) {
|
|
36896
|
-
|
|
36897
|
-
console.log("^^^ NO RANGE COMMON ANCESTOR?!");
|
|
36898
|
-
}
|
|
37045
|
+
import_loglevel4.default.log("^^^ NO RANGE COMMON ANCESTOR?!");
|
|
36899
37046
|
return void 0;
|
|
36900
37047
|
}
|
|
36901
37048
|
if (range.commonAncestorContainer) {
|
|
36902
37049
|
const rangeCommonAncestorElement = range.commonAncestorContainer.nodeType === Node.ELEMENT_NODE ? range.commonAncestorContainer : range.commonAncestorContainer.parentNode;
|
|
36903
37050
|
if (rangeCommonAncestorElement && rangeCommonAncestorElement.nodeType === Node.ELEMENT_NODE) {
|
|
36904
37051
|
if (commonElementAncestor !== rangeCommonAncestorElement) {
|
|
36905
|
-
|
|
36906
|
-
|
|
36907
|
-
|
|
36908
|
-
console.log(getCssSelector(rangeCommonAncestorElement));
|
|
36909
|
-
}
|
|
37052
|
+
import_loglevel4.default.log(">>>>>> COMMON ANCESTOR CONTAINER DIFF??!");
|
|
37053
|
+
import_loglevel4.default.log(getCssSelector(commonElementAncestor));
|
|
37054
|
+
import_loglevel4.default.log(getCssSelector(rangeCommonAncestorElement));
|
|
36910
37055
|
}
|
|
36911
37056
|
}
|
|
36912
37057
|
}
|
|
@@ -36926,47 +37071,35 @@ function convertRange(range, getCssSelector) {
|
|
|
36926
37071
|
function convertRangeInfo(documant, rangeInfo) {
|
|
36927
37072
|
const startElement = documant.querySelector(rangeInfo.startContainerElementCssSelector);
|
|
36928
37073
|
if (!startElement) {
|
|
36929
|
-
|
|
36930
|
-
console.log("^^^ convertRangeInfo NO START ELEMENT CSS SELECTOR?!");
|
|
36931
|
-
}
|
|
37074
|
+
import_loglevel4.default.log("^^^ convertRangeInfo NO START ELEMENT CSS SELECTOR?!");
|
|
36932
37075
|
return void 0;
|
|
36933
37076
|
}
|
|
36934
37077
|
let startContainer = startElement;
|
|
36935
37078
|
if (rangeInfo.startContainerChildTextNodeIndex >= 0) {
|
|
36936
37079
|
if (rangeInfo.startContainerChildTextNodeIndex >= startElement.childNodes.length) {
|
|
36937
|
-
|
|
36938
|
-
console.log("^^^ convertRangeInfo rangeInfo.startContainerChildTextNodeIndex >= startElement.childNodes.length?!");
|
|
36939
|
-
}
|
|
37080
|
+
import_loglevel4.default.log("^^^ convertRangeInfo rangeInfo.startContainerChildTextNodeIndex >= startElement.childNodes.length?!");
|
|
36940
37081
|
return void 0;
|
|
36941
37082
|
}
|
|
36942
37083
|
startContainer = startElement.childNodes[rangeInfo.startContainerChildTextNodeIndex];
|
|
36943
37084
|
if (startContainer.nodeType !== Node.TEXT_NODE) {
|
|
36944
|
-
|
|
36945
|
-
console.log("^^^ convertRangeInfo startContainer.nodeType !== Node.TEXT_NODE?!");
|
|
36946
|
-
}
|
|
37085
|
+
import_loglevel4.default.log("^^^ convertRangeInfo startContainer.nodeType !== Node.TEXT_NODE?!");
|
|
36947
37086
|
return void 0;
|
|
36948
37087
|
}
|
|
36949
37088
|
}
|
|
36950
37089
|
const endElement = documant.querySelector(rangeInfo.endContainerElementCssSelector);
|
|
36951
37090
|
if (!endElement) {
|
|
36952
|
-
|
|
36953
|
-
console.log("^^^ convertRangeInfo NO END ELEMENT CSS SELECTOR?!");
|
|
36954
|
-
}
|
|
37091
|
+
import_loglevel4.default.log("^^^ convertRangeInfo NO END ELEMENT CSS SELECTOR?!");
|
|
36955
37092
|
return void 0;
|
|
36956
37093
|
}
|
|
36957
37094
|
let endContainer = endElement;
|
|
36958
37095
|
if (rangeInfo.endContainerChildTextNodeIndex >= 0) {
|
|
36959
37096
|
if (rangeInfo.endContainerChildTextNodeIndex >= endElement.childNodes.length) {
|
|
36960
|
-
|
|
36961
|
-
console.log("^^^ convertRangeInfo rangeInfo.endContainerChildTextNodeIndex >= endElement.childNodes.length?!");
|
|
36962
|
-
}
|
|
37097
|
+
import_loglevel4.default.log("^^^ convertRangeInfo rangeInfo.endContainerChildTextNodeIndex >= endElement.childNodes.length?!");
|
|
36963
37098
|
return void 0;
|
|
36964
37099
|
}
|
|
36965
37100
|
endContainer = endElement.childNodes[rangeInfo.endContainerChildTextNodeIndex];
|
|
36966
37101
|
if (endContainer.nodeType !== Node.TEXT_NODE) {
|
|
36967
|
-
|
|
36968
|
-
console.log("^^^ convertRangeInfo endContainer.nodeType !== Node.TEXT_NODE?!");
|
|
36969
|
-
}
|
|
37102
|
+
import_loglevel4.default.log("^^^ convertRangeInfo endContainer.nodeType !== Node.TEXT_NODE?!");
|
|
36970
37103
|
return void 0;
|
|
36971
37104
|
}
|
|
36972
37105
|
}
|
|
@@ -37373,6 +37506,7 @@ var icons = {
|
|
|
37373
37506
|
|
|
37374
37507
|
// src/modules/highlight/TextHighlighter.ts
|
|
37375
37508
|
var lodash = __toModule(require_lodash());
|
|
37509
|
+
var import_loglevel5 = __toModule(require_loglevel());
|
|
37376
37510
|
var HighlightContainer;
|
|
37377
37511
|
(function(HighlightContainer2) {
|
|
37378
37512
|
HighlightContainer2["R2_ID_HIGHLIGHTS_CONTAINER"] = "R2_ID_HIGHLIGHTS_CONTAINER";
|
|
@@ -38150,9 +38284,7 @@ var TextHighlighter = class {
|
|
|
38150
38284
|
anno.highlight.note = prompt("Add your note here:");
|
|
38151
38285
|
}
|
|
38152
38286
|
self3.delegate.annotationModule?.updateAnnotation(anno).then(async () => {
|
|
38153
|
-
|
|
38154
|
-
console.log("update highlight " + anno.id);
|
|
38155
|
-
}
|
|
38287
|
+
import_loglevel5.default.log("update highlight " + anno.id);
|
|
38156
38288
|
});
|
|
38157
38289
|
}
|
|
38158
38290
|
});
|
|
@@ -38339,11 +38471,9 @@ var TextHighlighter = class {
|
|
|
38339
38471
|
range.detach();
|
|
38340
38472
|
return rect;
|
|
38341
38473
|
} catch (error) {
|
|
38342
|
-
|
|
38343
|
-
|
|
38344
|
-
|
|
38345
|
-
console.log(node.textContent);
|
|
38346
|
-
}
|
|
38474
|
+
import_loglevel5.default.log("measureTextNode " + error);
|
|
38475
|
+
import_loglevel5.default.log("measureTextNode " + node);
|
|
38476
|
+
import_loglevel5.default.log(`${node.textContent}`);
|
|
38347
38477
|
}
|
|
38348
38478
|
};
|
|
38349
38479
|
const body = findRequiredIframeElement(doc, "body");
|
|
@@ -38795,9 +38925,7 @@ var TextHighlighter = class {
|
|
|
38795
38925
|
const payload = {
|
|
38796
38926
|
highlight: foundHighlight
|
|
38797
38927
|
};
|
|
38798
|
-
|
|
38799
|
-
console.log(payload);
|
|
38800
|
-
}
|
|
38928
|
+
import_loglevel5.default.log(JSON.stringify(payload));
|
|
38801
38929
|
let self2 = this;
|
|
38802
38930
|
let anno;
|
|
38803
38931
|
if (self2.delegate.rights.enableAnnotations) {
|
|
@@ -38810,9 +38938,7 @@ var TextHighlighter = class {
|
|
|
38810
38938
|
});
|
|
38811
38939
|
}
|
|
38812
38940
|
if (anno?.id) {
|
|
38813
|
-
|
|
38814
|
-
console.log("selected highlight " + anno.id);
|
|
38815
|
-
}
|
|
38941
|
+
import_loglevel5.default.log("selected highlight " + anno.id);
|
|
38816
38942
|
self2.lastSelectedHighlight = anno.id;
|
|
38817
38943
|
let toolbox = document.getElementById("highlight-toolbox");
|
|
38818
38944
|
if (toolbox) {
|
|
@@ -38822,9 +38948,7 @@ var TextHighlighter = class {
|
|
|
38822
38948
|
let noteH = function() {
|
|
38823
38949
|
anno.highlight.note = prompt("Add your note here:");
|
|
38824
38950
|
self2.delegate.annotationModule?.updateAnnotation(anno).then(async () => {
|
|
38825
|
-
|
|
38826
|
-
console.log("update highlight " + anno.id);
|
|
38827
|
-
}
|
|
38951
|
+
import_loglevel5.default.log("update highlight " + anno.id);
|
|
38828
38952
|
if (toolbox) {
|
|
38829
38953
|
toolbox.style.display = "none";
|
|
38830
38954
|
}
|
|
@@ -38838,9 +38962,7 @@ var TextHighlighter = class {
|
|
|
38838
38962
|
}, deleteH = function() {
|
|
38839
38963
|
if (self2.delegate.rights.enableAnnotations) {
|
|
38840
38964
|
self2.delegate.annotationModule?.deleteSelectedHighlight(anno).then(async () => {
|
|
38841
|
-
|
|
38842
|
-
console.log("delete highlight " + anno.id);
|
|
38843
|
-
}
|
|
38965
|
+
import_loglevel5.default.log("delete highlight " + anno.id);
|
|
38844
38966
|
if (toolbox) {
|
|
38845
38967
|
toolbox.style.display = "none";
|
|
38846
38968
|
}
|
|
@@ -38848,9 +38970,7 @@ var TextHighlighter = class {
|
|
|
38848
38970
|
});
|
|
38849
38971
|
} else if (self2.delegate.rights.enableBookmarks) {
|
|
38850
38972
|
self2.delegate.bookmarkModule?.deleteSelectedHighlight(anno).then(async () => {
|
|
38851
|
-
|
|
38852
|
-
console.log("delete highlight " + anno.id);
|
|
38853
|
-
}
|
|
38973
|
+
import_loglevel5.default.log("delete highlight " + anno.id);
|
|
38854
38974
|
if (toolbox) {
|
|
38855
38975
|
toolbox.style.display = "none";
|
|
38856
38976
|
}
|
|
@@ -38919,7 +39039,7 @@ var TextHighlighter = class {
|
|
|
38919
39039
|
popup.showPopup(foundElement.dataset.definition, ev);
|
|
38920
39040
|
}
|
|
38921
39041
|
let result = this.delegate.definitionsModule?.properties?.definitions?.filter((el) => el.order === Number(foundElement?.dataset.order))[0];
|
|
38922
|
-
|
|
39042
|
+
import_loglevel5.default.log(result);
|
|
38923
39043
|
if (this.delegate.definitionsModule?.api?.click) {
|
|
38924
39044
|
this.delegate.definitionsModule.api?.click(lodash.omit(result, "callbacks"), lodash.omit(foundHighlight, "definition"));
|
|
38925
39045
|
this.delegate.emit("definition.click", result, foundHighlight);
|
|
@@ -39289,9 +39409,7 @@ var TextHighlighter = class {
|
|
|
39289
39409
|
} else if (self2.delegate.rights.enableBookmarks) {
|
|
39290
39410
|
anno = await self2.delegate.bookmarkModule?.getAnnotationByID(highlight.id);
|
|
39291
39411
|
}
|
|
39292
|
-
|
|
39293
|
-
console.log("selected highlight " + anno.id);
|
|
39294
|
-
}
|
|
39412
|
+
import_loglevel5.default.log("selected highlight " + anno.id);
|
|
39295
39413
|
self2.lastSelectedHighlight = anno.id;
|
|
39296
39414
|
let toolbox = document.getElementById("highlight-toolbox");
|
|
39297
39415
|
if (toolbox) {
|
|
@@ -39301,9 +39419,7 @@ var TextHighlighter = class {
|
|
|
39301
39419
|
let noteH = function() {
|
|
39302
39420
|
anno.highlight.note = prompt("Add your note here:");
|
|
39303
39421
|
self2.delegate.annotationModule?.updateAnnotation(anno).then(async () => {
|
|
39304
|
-
|
|
39305
|
-
console.log("update highlight " + anno.id);
|
|
39306
|
-
}
|
|
39422
|
+
import_loglevel5.default.log("update highlight " + anno.id);
|
|
39307
39423
|
toolbox.style.display = "none";
|
|
39308
39424
|
self2.selectionMenuClosed();
|
|
39309
39425
|
});
|
|
@@ -39312,17 +39428,13 @@ var TextHighlighter = class {
|
|
|
39312
39428
|
}, deleteH = function() {
|
|
39313
39429
|
if (self2.delegate.rights.enableAnnotations) {
|
|
39314
39430
|
self2.delegate.annotationModule?.deleteSelectedHighlight(anno).then(async () => {
|
|
39315
|
-
|
|
39316
|
-
console.log("delete highlight " + anno.id);
|
|
39317
|
-
}
|
|
39431
|
+
import_loglevel5.default.log("delete highlight " + anno.id);
|
|
39318
39432
|
toolbox.style.display = "none";
|
|
39319
39433
|
self2.selectionMenuClosed();
|
|
39320
39434
|
});
|
|
39321
39435
|
} else if (self2.delegate.rights.enableBookmarks) {
|
|
39322
39436
|
self2.delegate.bookmarkModule?.deleteSelectedHighlight(anno).then(async () => {
|
|
39323
|
-
|
|
39324
|
-
console.log("delete highlight " + anno.id);
|
|
39325
|
-
}
|
|
39437
|
+
import_loglevel5.default.log("delete highlight " + anno.id);
|
|
39326
39438
|
toolbox.style.display = "none";
|
|
39327
39439
|
self2.selectionMenuClosed();
|
|
39328
39440
|
});
|
|
@@ -39441,6 +39553,7 @@ var import_uuid = __toModule(require_uuid());
|
|
|
39441
39553
|
|
|
39442
39554
|
// src/modules/highlight/common/selection.ts
|
|
39443
39555
|
init_polyfills();
|
|
39556
|
+
var import_loglevel6 = __toModule(require_loglevel());
|
|
39444
39557
|
var _getCssSelectorOptions = {
|
|
39445
39558
|
className: (_str) => {
|
|
39446
39559
|
return true;
|
|
@@ -39455,6 +39568,7 @@ var _getCssSelectorOptions = {
|
|
|
39455
39568
|
|
|
39456
39569
|
// src/modules/AnnotationModule.ts
|
|
39457
39570
|
var lodash2 = __toModule(require_lodash());
|
|
39571
|
+
var import_loglevel7 = __toModule(require_loglevel());
|
|
39458
39572
|
var AnnotationModule = class {
|
|
39459
39573
|
constructor(annotator, rights, publication, delegate, initialAnnotations, properties, highlighter, api, headerMenu) {
|
|
39460
39574
|
this.hide = findElement(document, "#menu-button-hide");
|
|
@@ -39475,9 +39589,7 @@ var AnnotationModule = class {
|
|
|
39475
39589
|
return annotations;
|
|
39476
39590
|
}
|
|
39477
39591
|
async stop() {
|
|
39478
|
-
|
|
39479
|
-
console.log("Annotation module stop");
|
|
39480
|
-
}
|
|
39592
|
+
import_loglevel7.default.log("Annotation module stop");
|
|
39481
39593
|
}
|
|
39482
39594
|
async start() {
|
|
39483
39595
|
this.delegate.annotationModule = this;
|
|
@@ -39560,8 +39672,8 @@ var AnnotationModule = class {
|
|
|
39560
39672
|
return "";
|
|
39561
39673
|
}
|
|
39562
39674
|
} catch (err) {
|
|
39563
|
-
|
|
39564
|
-
|
|
39675
|
+
import_loglevel7.default.log("uniqueCssSelector:");
|
|
39676
|
+
import_loglevel7.default.error(err);
|
|
39565
39677
|
return "";
|
|
39566
39678
|
}
|
|
39567
39679
|
};
|
|
@@ -39582,9 +39694,7 @@ var AnnotationModule = class {
|
|
|
39582
39694
|
let book = this.delegate.highlighter?.createHighlight(this.delegate.highlighter?.dom(doc.body).getWindow(), selectionInfo, menuItem.highlight.color, true, AnnotationMarker.Bookmark, menuItem.icon, menuItem.popup, menuItem.highlight.style);
|
|
39583
39695
|
if (book) {
|
|
39584
39696
|
this.saveAnnotation(book[0]).then((anno) => {
|
|
39585
|
-
|
|
39586
|
-
console.log("saved bookmark " + anno.id);
|
|
39587
|
-
}
|
|
39697
|
+
import_loglevel7.default.log("saved bookmark " + anno.id);
|
|
39588
39698
|
});
|
|
39589
39699
|
}
|
|
39590
39700
|
}
|
|
@@ -39594,9 +39704,7 @@ var AnnotationModule = class {
|
|
|
39594
39704
|
}
|
|
39595
39705
|
}
|
|
39596
39706
|
async scrollToHighlight(id2) {
|
|
39597
|
-
|
|
39598
|
-
console.log("still need to scroll to " + id2);
|
|
39599
|
-
}
|
|
39707
|
+
import_loglevel7.default.log("still need to scroll to " + id2);
|
|
39600
39708
|
var position = await this.annotator?.getAnnotationPosition(id2, this.delegate.iframes[0].contentWindow);
|
|
39601
39709
|
window.scrollTo(0, position - window.innerHeight / 3);
|
|
39602
39710
|
}
|
|
@@ -39604,10 +39712,8 @@ var AnnotationModule = class {
|
|
|
39604
39712
|
if (this.annotator) {
|
|
39605
39713
|
let deleted = await this.annotator.deleteAnnotation(annotation.id);
|
|
39606
39714
|
let added = await this.addAnnotation(annotation);
|
|
39607
|
-
|
|
39608
|
-
|
|
39609
|
-
console.log("Highlight added " + JSON.stringify(added));
|
|
39610
|
-
}
|
|
39715
|
+
import_loglevel7.default.log("Highlight deleted " + JSON.stringify(deleted));
|
|
39716
|
+
import_loglevel7.default.log("Highlight added " + JSON.stringify(added));
|
|
39611
39717
|
await this.showHighlights();
|
|
39612
39718
|
await this.drawHighlights();
|
|
39613
39719
|
return added;
|
|
@@ -39618,9 +39724,7 @@ var AnnotationModule = class {
|
|
|
39618
39724
|
async deleteLocalHighlight(id2) {
|
|
39619
39725
|
if (this.annotator) {
|
|
39620
39726
|
var deleted = await this.annotator.deleteAnnotation(id2);
|
|
39621
|
-
|
|
39622
|
-
console.log("Highlight deleted " + JSON.stringify(deleted));
|
|
39623
|
-
}
|
|
39727
|
+
import_loglevel7.default.log("Highlight deleted " + JSON.stringify(deleted));
|
|
39624
39728
|
await this.showHighlights();
|
|
39625
39729
|
await this.drawHighlights();
|
|
39626
39730
|
return deleted;
|
|
@@ -39983,23 +40087,17 @@ var AnnotationModule = class {
|
|
|
39983
40087
|
this.delegate.stopReadAloud();
|
|
39984
40088
|
this.delegate.navigate(locator);
|
|
39985
40089
|
} else {
|
|
39986
|
-
|
|
39987
|
-
console.log("annotation data missing: ", event);
|
|
39988
|
-
}
|
|
40090
|
+
import_loglevel7.default.log("annotation data missing: ", event);
|
|
39989
40091
|
}
|
|
39990
40092
|
}
|
|
39991
40093
|
handleAnnotationLinkDeleteClick(type, event, locator) {
|
|
39992
|
-
|
|
39993
|
-
console.log("annotation data locator: ", locator);
|
|
39994
|
-
}
|
|
40094
|
+
import_loglevel7.default.log("annotation data locator: ", locator);
|
|
39995
40095
|
if (locator) {
|
|
39996
40096
|
if (type === AnnotationType.Annotation) {
|
|
39997
40097
|
this.deleteHighlight(locator);
|
|
39998
40098
|
}
|
|
39999
40099
|
} else {
|
|
40000
|
-
|
|
40001
|
-
console.log("annotation data missing: ", event);
|
|
40002
|
-
}
|
|
40100
|
+
import_loglevel7.default.log("annotation data missing: ", event);
|
|
40003
40101
|
}
|
|
40004
40102
|
}
|
|
40005
40103
|
static readableTimestamp(timestamp) {
|
|
@@ -40017,6 +40115,7 @@ var AnnotationModule = class {
|
|
|
40017
40115
|
// src/modules/BookmarkModule.ts
|
|
40018
40116
|
init_polyfills();
|
|
40019
40117
|
var import_uuid2 = __toModule(require_uuid());
|
|
40118
|
+
var import_loglevel8 = __toModule(require_loglevel());
|
|
40020
40119
|
var BookmarkModule = class {
|
|
40021
40120
|
static async create(config2) {
|
|
40022
40121
|
const module = new this(config2.annotator, config2.rights || { enableBookmarks: false }, config2.publication, config2.delegate, config2, config2.initialAnnotations, config2.api, config2.headerMenu);
|
|
@@ -40034,9 +40133,7 @@ var BookmarkModule = class {
|
|
|
40034
40133
|
this.api = api;
|
|
40035
40134
|
}
|
|
40036
40135
|
stop() {
|
|
40037
|
-
|
|
40038
|
-
console.log("Bookmark module stop");
|
|
40039
|
-
}
|
|
40136
|
+
import_loglevel8.default.log("Bookmark module stop");
|
|
40040
40137
|
}
|
|
40041
40138
|
async start() {
|
|
40042
40139
|
this.delegate.bookmarkModule = this;
|
|
@@ -40086,17 +40183,13 @@ var BookmarkModule = class {
|
|
|
40086
40183
|
if (this.api?.deleteBookmark) {
|
|
40087
40184
|
await this.api?.deleteBookmark(bookmark);
|
|
40088
40185
|
let deleted = await this.annotator.deleteBookmark(bookmark);
|
|
40089
|
-
|
|
40090
|
-
console.log("Bookmark deleted " + JSON.stringify(deleted));
|
|
40091
|
-
}
|
|
40186
|
+
import_loglevel8.default.log("Bookmark deleted " + JSON.stringify(deleted));
|
|
40092
40187
|
await this.showBookmarks();
|
|
40093
40188
|
await this.drawBookmarks();
|
|
40094
40189
|
return deleted;
|
|
40095
40190
|
} else {
|
|
40096
40191
|
let deleted = await this.annotator.deleteBookmark(bookmark);
|
|
40097
|
-
|
|
40098
|
-
console.log("Bookmark deleted " + JSON.stringify(deleted));
|
|
40099
|
-
}
|
|
40192
|
+
import_loglevel8.default.log("Bookmark deleted " + JSON.stringify(deleted));
|
|
40100
40193
|
await this.showBookmarks();
|
|
40101
40194
|
await this.drawBookmarks();
|
|
40102
40195
|
return deleted;
|
|
@@ -40153,20 +40246,15 @@ var BookmarkModule = class {
|
|
|
40153
40246
|
if (result) {
|
|
40154
40247
|
bookmark = result;
|
|
40155
40248
|
}
|
|
40156
|
-
|
|
40157
|
-
console.log(bookmark);
|
|
40249
|
+
import_loglevel8.default.log(bookmark);
|
|
40158
40250
|
let saved = this.annotator.saveBookmark(bookmark);
|
|
40159
|
-
|
|
40160
|
-
console.log("Bookmark added " + JSON.stringify(saved));
|
|
40161
|
-
}
|
|
40251
|
+
import_loglevel8.default.log("Bookmark added " + JSON.stringify(saved));
|
|
40162
40252
|
this.showBookmarks();
|
|
40163
40253
|
await this.drawBookmarks();
|
|
40164
40254
|
return saved;
|
|
40165
40255
|
} else {
|
|
40166
40256
|
let saved = this.annotator.saveBookmark(bookmark);
|
|
40167
|
-
|
|
40168
|
-
console.log("Bookmark added " + JSON.stringify(saved));
|
|
40169
|
-
}
|
|
40257
|
+
import_loglevel8.default.log("Bookmark added " + JSON.stringify(saved));
|
|
40170
40258
|
this.showBookmarks();
|
|
40171
40259
|
await this.drawBookmarks();
|
|
40172
40260
|
return saved;
|
|
@@ -40262,9 +40350,7 @@ var BookmarkModule = class {
|
|
|
40262
40350
|
this.delegate.iframes[0].contentDocument?.getSelection()?.removeAllRanges();
|
|
40263
40351
|
if (book) {
|
|
40264
40352
|
return this.saveAnnotation(book[0]).then((anno) => {
|
|
40265
|
-
|
|
40266
|
-
console.log("saved bookmark " + anno?.id);
|
|
40267
|
-
}
|
|
40353
|
+
import_loglevel8.default.log("saved bookmark " + anno?.id);
|
|
40268
40354
|
});
|
|
40269
40355
|
}
|
|
40270
40356
|
}
|
|
@@ -40442,9 +40528,7 @@ var BookmarkModule = class {
|
|
|
40442
40528
|
async deleteLocalHighlight(id2) {
|
|
40443
40529
|
if (this.annotator) {
|
|
40444
40530
|
var deleted = await this.annotator.deleteAnnotation(id2);
|
|
40445
|
-
|
|
40446
|
-
console.log("Highlight deleted " + JSON.stringify(deleted));
|
|
40447
|
-
}
|
|
40531
|
+
import_loglevel8.default.log("Highlight deleted " + JSON.stringify(deleted));
|
|
40448
40532
|
await this.showBookmarks();
|
|
40449
40533
|
await this.drawBookmarks();
|
|
40450
40534
|
return deleted;
|
|
@@ -40554,23 +40638,17 @@ var BookmarkModule = class {
|
|
|
40554
40638
|
this.delegate.stopReadAloud();
|
|
40555
40639
|
this.delegate.navigate(locator);
|
|
40556
40640
|
} else {
|
|
40557
|
-
|
|
40558
|
-
console.log("bookmark data missing: ", event);
|
|
40559
|
-
}
|
|
40641
|
+
import_loglevel8.default.log("bookmark data missing: ", event);
|
|
40560
40642
|
}
|
|
40561
40643
|
}
|
|
40562
40644
|
handleAnnotationLinkDeleteClick(type, event, locator) {
|
|
40563
|
-
|
|
40564
|
-
console.log("bookmark data locator: ", locator);
|
|
40565
|
-
}
|
|
40645
|
+
import_loglevel8.default.log("bookmark data locator: ", locator);
|
|
40566
40646
|
if (locator) {
|
|
40567
40647
|
if (type === AnnotationType.Bookmark) {
|
|
40568
40648
|
this.deleteBookmark(locator);
|
|
40569
40649
|
}
|
|
40570
40650
|
} else {
|
|
40571
|
-
|
|
40572
|
-
console.log("bookmark data missing: ", event);
|
|
40573
|
-
}
|
|
40651
|
+
import_loglevel8.default.log("bookmark data missing: ", event);
|
|
40574
40652
|
}
|
|
40575
40653
|
}
|
|
40576
40654
|
static readableTimestamp(timestamp) {
|
|
@@ -40591,6 +40669,7 @@ var import_media_overlay = __toModule(require_media_overlay());
|
|
|
40591
40669
|
|
|
40592
40670
|
// src/modules/mediaoverlays/MediaOverlaySettings.ts
|
|
40593
40671
|
init_polyfills();
|
|
40672
|
+
var import_loglevel9 = __toModule(require_loglevel());
|
|
40594
40673
|
var R2_MO_CLASS_ACTIVE = "r2-mo-active";
|
|
40595
40674
|
var _MEDIAOVERLAYREFS = class {
|
|
40596
40675
|
};
|
|
@@ -40622,7 +40701,7 @@ var MediaOverlaySettings = class {
|
|
|
40622
40701
|
this.api = api;
|
|
40623
40702
|
this.headerMenu = headerMenu;
|
|
40624
40703
|
this.initialise();
|
|
40625
|
-
|
|
40704
|
+
import_loglevel9.default.log(this.api);
|
|
40626
40705
|
}
|
|
40627
40706
|
static create(config2) {
|
|
40628
40707
|
const settings = new this(config2.store, config2.api, config2.headerMenu);
|
|
@@ -40630,42 +40709,34 @@ var MediaOverlaySettings = class {
|
|
|
40630
40709
|
let initialSettings = config2.initialMediaOverlaySettings;
|
|
40631
40710
|
if (initialSettings?.color) {
|
|
40632
40711
|
settings.color = initialSettings.color;
|
|
40633
|
-
|
|
40634
|
-
console.log(settings.color);
|
|
40712
|
+
import_loglevel9.default.log(settings.color);
|
|
40635
40713
|
}
|
|
40636
40714
|
if (initialSettings?.autoScroll) {
|
|
40637
40715
|
settings.autoScroll = initialSettings.autoScroll;
|
|
40638
|
-
|
|
40639
|
-
console.log(settings.autoScroll);
|
|
40716
|
+
import_loglevel9.default.log(settings.autoScroll);
|
|
40640
40717
|
}
|
|
40641
40718
|
if (initialSettings?.autoTurn) {
|
|
40642
40719
|
settings.autoTurn = initialSettings.autoTurn;
|
|
40643
|
-
|
|
40644
|
-
console.log(settings.autoTurn);
|
|
40720
|
+
import_loglevel9.default.log(settings.autoScroll);
|
|
40645
40721
|
}
|
|
40646
40722
|
if (initialSettings?.volume) {
|
|
40647
40723
|
settings.volume = initialSettings.volume;
|
|
40648
|
-
|
|
40649
|
-
console.log(settings.volume);
|
|
40724
|
+
import_loglevel9.default.log(settings.volume);
|
|
40650
40725
|
}
|
|
40651
40726
|
if (initialSettings?.rate) {
|
|
40652
40727
|
settings.rate = initialSettings.rate;
|
|
40653
|
-
|
|
40654
|
-
console.log(settings.rate);
|
|
40728
|
+
import_loglevel9.default.log(settings.rate);
|
|
40655
40729
|
}
|
|
40656
40730
|
if (initialSettings?.wait) {
|
|
40657
40731
|
settings.wait = initialSettings.wait;
|
|
40658
|
-
|
|
40659
|
-
console.log(settings.wait);
|
|
40732
|
+
import_loglevel9.default.log(settings.wait);
|
|
40660
40733
|
}
|
|
40661
40734
|
}
|
|
40662
40735
|
settings.initializeSelections();
|
|
40663
40736
|
return settings;
|
|
40664
40737
|
}
|
|
40665
40738
|
stop() {
|
|
40666
|
-
|
|
40667
|
-
console.log("MediaOverlay settings stop");
|
|
40668
|
-
}
|
|
40739
|
+
import_loglevel9.default.log("MediaOverlay settings stop");
|
|
40669
40740
|
}
|
|
40670
40741
|
initialise() {
|
|
40671
40742
|
this.autoScroll = this.getProperty(MEDIAOVERLAYREFS.AUTO_SCROLL_KEY) != null ? this.getProperty(MEDIAOVERLAYREFS.AUTO_SCROLL_KEY).value : this.autoScroll;
|
|
@@ -40731,9 +40802,7 @@ var MediaOverlaySettings = class {
|
|
|
40731
40802
|
this.applyMediaOverlaySettings(syncSettings);
|
|
40732
40803
|
if (this.api?.updateSettings) {
|
|
40733
40804
|
this.api?.updateSettings(syncSettings).then(async (settings) => {
|
|
40734
|
-
|
|
40735
|
-
console.log("api updated sync settings", settings);
|
|
40736
|
-
}
|
|
40805
|
+
import_loglevel9.default.log("api updated sync settings", settings);
|
|
40737
40806
|
});
|
|
40738
40807
|
}
|
|
40739
40808
|
}
|
|
@@ -40788,8 +40857,7 @@ var MediaOverlaySettings = class {
|
|
|
40788
40857
|
this.settingsChangeCallback();
|
|
40789
40858
|
}
|
|
40790
40859
|
if (mediaOverlaySettings.autoScroll !== void 0) {
|
|
40791
|
-
|
|
40792
|
-
console.log("autoScroll " + this.autoScroll);
|
|
40860
|
+
import_loglevel9.default.log("autoScroll " + this.autoScroll);
|
|
40793
40861
|
this.autoScroll = mediaOverlaySettings.autoScroll;
|
|
40794
40862
|
let prop = this.userProperties.getByRef(MEDIAOVERLAYREFS.AUTO_SCROLL_REF);
|
|
40795
40863
|
if (prop) {
|
|
@@ -40799,8 +40867,7 @@ var MediaOverlaySettings = class {
|
|
|
40799
40867
|
this.settingsChangeCallback();
|
|
40800
40868
|
}
|
|
40801
40869
|
if (mediaOverlaySettings.autoTurn !== void 0) {
|
|
40802
|
-
|
|
40803
|
-
console.log("autoTurn " + this.autoTurn);
|
|
40870
|
+
import_loglevel9.default.log("autoTurn " + this.autoTurn);
|
|
40804
40871
|
this.autoTurn = mediaOverlaySettings.autoTurn;
|
|
40805
40872
|
let prop = this.userProperties.getByRef(MEDIAOVERLAYREFS.AUTO_TURN_REF);
|
|
40806
40873
|
if (prop) {
|
|
@@ -40810,8 +40877,7 @@ var MediaOverlaySettings = class {
|
|
|
40810
40877
|
this.settingsChangeCallback();
|
|
40811
40878
|
}
|
|
40812
40879
|
if (mediaOverlaySettings.volume) {
|
|
40813
|
-
|
|
40814
|
-
console.log("volume " + this.volume);
|
|
40880
|
+
import_loglevel9.default.log("volume " + this.volume);
|
|
40815
40881
|
this.volume = mediaOverlaySettings.volume;
|
|
40816
40882
|
let prop = this.userProperties.getByRef(MEDIAOVERLAYREFS.VOLUME_REF);
|
|
40817
40883
|
if (prop) {
|
|
@@ -40821,8 +40887,7 @@ var MediaOverlaySettings = class {
|
|
|
40821
40887
|
this.settingsChangeCallback();
|
|
40822
40888
|
}
|
|
40823
40889
|
if (mediaOverlaySettings.rate) {
|
|
40824
|
-
|
|
40825
|
-
console.log("rate " + this.rate);
|
|
40890
|
+
import_loglevel9.default.log("rate " + this.rate);
|
|
40826
40891
|
this.rate = mediaOverlaySettings.rate;
|
|
40827
40892
|
let prop = this.userProperties.getByRef(MEDIAOVERLAYREFS.RATE_REF);
|
|
40828
40893
|
if (prop) {
|
|
@@ -40900,6 +40965,7 @@ var MediaOverlaySettings = class {
|
|
|
40900
40965
|
};
|
|
40901
40966
|
|
|
40902
40967
|
// src/modules/mediaoverlays/MediaOverlayModule.ts
|
|
40968
|
+
var import_loglevel10 = __toModule(require_loglevel());
|
|
40903
40969
|
var MediaOverlayModule = class {
|
|
40904
40970
|
constructor(delegate, publication, settings, properties) {
|
|
40905
40971
|
this.play = findElement(document, "#menu-button-play");
|
|
@@ -40908,8 +40974,7 @@ var MediaOverlayModule = class {
|
|
|
40908
40974
|
this.pid = void 0;
|
|
40909
40975
|
this.__ontimeupdate = false;
|
|
40910
40976
|
this.ontimeupdate = async (_v) => {
|
|
40911
|
-
|
|
40912
|
-
console.log("ontimeupdate");
|
|
40977
|
+
import_loglevel10.default.log("ontimeupdate");
|
|
40913
40978
|
this.trackCurrentTime();
|
|
40914
40979
|
};
|
|
40915
40980
|
this.ensureOnTimeUpdate = (remove, replace) => {
|
|
@@ -40942,13 +41007,11 @@ var MediaOverlayModule = class {
|
|
|
40942
41007
|
return mediaOverlay;
|
|
40943
41008
|
}
|
|
40944
41009
|
stop() {
|
|
40945
|
-
|
|
40946
|
-
console.log("MediaOverlay module stop");
|
|
41010
|
+
import_loglevel10.default.log("MediaOverlay module stop");
|
|
40947
41011
|
}
|
|
40948
41012
|
start() {
|
|
40949
41013
|
this.delegate.mediaOverlayModule = this;
|
|
40950
|
-
|
|
40951
|
-
console.log("MediaOverlay module start");
|
|
41014
|
+
import_loglevel10.default.log("MediaOverlay module start");
|
|
40952
41015
|
}
|
|
40953
41016
|
async initialize() {
|
|
40954
41017
|
return new Promise(async (resolve) => {
|
|
@@ -40981,8 +41044,7 @@ var MediaOverlayModule = class {
|
|
|
40981
41044
|
return;
|
|
40982
41045
|
}
|
|
40983
41046
|
if (!response.ok) {
|
|
40984
|
-
|
|
40985
|
-
console.log("BAD RESPONSE?!");
|
|
41047
|
+
import_loglevel10.default.log("BAD RESPONSE?!");
|
|
40986
41048
|
}
|
|
40987
41049
|
let moJson;
|
|
40988
41050
|
try {
|
|
@@ -40991,8 +41053,7 @@ var MediaOverlayModule = class {
|
|
|
40991
41053
|
console.error(e);
|
|
40992
41054
|
}
|
|
40993
41055
|
if (!moJson) {
|
|
40994
|
-
|
|
40995
|
-
console.log("## moJson" + moJson);
|
|
41056
|
+
import_loglevel10.default.log("## moJson" + moJson);
|
|
40996
41057
|
return;
|
|
40997
41058
|
}
|
|
40998
41059
|
link.MediaOverlays = TaJsonDeserialize(moJson, import_media_overlay.MediaOverlayNode);
|
|
@@ -41078,8 +41139,7 @@ var MediaOverlayModule = class {
|
|
|
41078
41139
|
}
|
|
41079
41140
|
}
|
|
41080
41141
|
findDepthFirstTextAudioPair(textHref, mo, textFragmentIDChain) {
|
|
41081
|
-
|
|
41082
|
-
console.log("findDepthFirstTextAudioPair()");
|
|
41142
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair()");
|
|
41083
41143
|
let isTextUrlMatch;
|
|
41084
41144
|
let isFragmentIDMatch;
|
|
41085
41145
|
if (mo.Text) {
|
|
@@ -41100,21 +41160,16 @@ var MediaOverlayModule = class {
|
|
|
41100
41160
|
isTextUrlMatch = false;
|
|
41101
41161
|
}
|
|
41102
41162
|
}
|
|
41103
|
-
|
|
41104
|
-
|
|
41105
|
-
console.log("isTextUrlMatch: " + isTextUrlMatch);
|
|
41106
|
-
}
|
|
41163
|
+
import_loglevel10.default.log("isFragmentIDMatch: " + isFragmentIDMatch);
|
|
41164
|
+
import_loglevel10.default.log("isTextUrlMatch: " + isTextUrlMatch);
|
|
41107
41165
|
if (!mo.Children || !mo.Children.length) {
|
|
41108
|
-
|
|
41109
|
-
console.log("findDepthFirstTextAudioPair() - leaf text/audio pair");
|
|
41166
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - leaf text/audio pair");
|
|
41110
41167
|
if (!isTextUrlMatch) {
|
|
41111
|
-
|
|
41112
|
-
console.log("findDepthFirstTextAudioPair() - leaf - !isTextUrlMatch");
|
|
41168
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - leaf - !isTextUrlMatch");
|
|
41113
41169
|
return void 0;
|
|
41114
41170
|
}
|
|
41115
41171
|
if (isFragmentIDMatch || isTextUrlMatch && !textFragmentIDChain) {
|
|
41116
|
-
|
|
41117
|
-
console.log("findDepthFirstTextAudioPair() - leaf - isFragmentIDMatch || (isTextUrlMatch && !textFragmentIDChain");
|
|
41172
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - leaf - isFragmentIDMatch || (isTextUrlMatch && !textFragmentIDChain");
|
|
41118
41173
|
return mo;
|
|
41119
41174
|
}
|
|
41120
41175
|
return void 0;
|
|
@@ -41122,34 +41177,25 @@ var MediaOverlayModule = class {
|
|
|
41122
41177
|
const textFragmentIDChainOriginal = textFragmentIDChain;
|
|
41123
41178
|
let frags = textFragmentIDChain;
|
|
41124
41179
|
for (const child of mo.Children) {
|
|
41125
|
-
|
|
41126
|
-
|
|
41127
|
-
console.log(JSON.stringify(child));
|
|
41128
|
-
}
|
|
41180
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - child");
|
|
41181
|
+
import_loglevel10.default.log(JSON.stringify(child));
|
|
41129
41182
|
const match = this.findDepthFirstTextAudioPair(textHref, child, frags);
|
|
41130
41183
|
if (match === null) {
|
|
41131
|
-
|
|
41132
|
-
console.log("findDepthFirstTextAudioPair() - child - match null (skip)");
|
|
41133
|
-
}
|
|
41184
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - child - match null (skip)");
|
|
41134
41185
|
frags = void 0;
|
|
41135
41186
|
}
|
|
41136
41187
|
if (match) {
|
|
41137
|
-
|
|
41138
|
-
|
|
41139
|
-
console.log(JSON.stringify(match));
|
|
41140
|
-
}
|
|
41188
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - child - match");
|
|
41189
|
+
import_loglevel10.default.log(JSON.stringify(match));
|
|
41141
41190
|
return match;
|
|
41142
41191
|
}
|
|
41143
41192
|
}
|
|
41144
41193
|
if (isFragmentIDMatch) {
|
|
41145
|
-
|
|
41146
|
-
console.log("findDepthFirstTextAudioPair() - post isFragmentIDMatch");
|
|
41194
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - post isFragmentIDMatch");
|
|
41147
41195
|
const match = this.findDepthFirstTextAudioPair(textHref, mo, void 0);
|
|
41148
41196
|
if (match) {
|
|
41149
|
-
|
|
41150
|
-
|
|
41151
|
-
console.log(JSON.stringify(match));
|
|
41152
|
-
}
|
|
41197
|
+
import_loglevel10.default.log("findDepthFirstTextAudioPair() - post isFragmentIDMatch - match");
|
|
41198
|
+
import_loglevel10.default.log(JSON.stringify(match));
|
|
41153
41199
|
return match;
|
|
41154
41200
|
} else {
|
|
41155
41201
|
return match;
|
|
@@ -41165,8 +41211,7 @@ var MediaOverlayModule = class {
|
|
|
41165
41211
|
if (this.mediaOverlayTextAudioPair) {
|
|
41166
41212
|
try {
|
|
41167
41213
|
if (this.currentAudioEnd && this.audioElement.currentTime >= this.currentAudioEnd - 0.05) {
|
|
41168
|
-
|
|
41169
|
-
console.log("ontimeupdate - mediaOverlaysNext()");
|
|
41214
|
+
import_loglevel10.default.log("ontimeupdate - mediaOverlaysNext()");
|
|
41170
41215
|
this.mediaOverlaysNext();
|
|
41171
41216
|
}
|
|
41172
41217
|
const match_i = this.mediaOverlayTextAudioPair.Text.lastIndexOf("#");
|
|
@@ -41178,13 +41223,11 @@ var MediaOverlayModule = class {
|
|
|
41178
41223
|
}
|
|
41179
41224
|
}
|
|
41180
41225
|
mediaOverlaysNext(escape2) {
|
|
41181
|
-
|
|
41182
|
-
console.log("mediaOverlaysNext()");
|
|
41226
|
+
import_loglevel10.default.log("mediaOverlaysNext()");
|
|
41183
41227
|
if (this.mediaOverlayRoot && this.mediaOverlayTextAudioPair) {
|
|
41184
41228
|
const nextTextAudioPair = this.findNextTextAudioPair(this.mediaOverlayRoot, this.mediaOverlayTextAudioPair, { prev: void 0 }, escape2 ? true : false);
|
|
41185
41229
|
if (!nextTextAudioPair) {
|
|
41186
|
-
|
|
41187
|
-
console.log("mediaOverlaysNext() - navLeftOrRight()");
|
|
41230
|
+
import_loglevel10.default.log("mediaOverlaysNext() - navLeftOrRight()");
|
|
41188
41231
|
this.mediaOverlaysStop();
|
|
41189
41232
|
if (this.currentLinks.length > 1 && this.currentLinkIndex === 0) {
|
|
41190
41233
|
this.currentLinkIndex++;
|
|
@@ -41204,25 +41247,21 @@ var MediaOverlayModule = class {
|
|
|
41204
41247
|
const hrefUrlObj1 = new URL("https://dita.digital/" + this.mediaOverlayTextAudioPair.Text);
|
|
41205
41248
|
const hrefUrlObj2 = new URL("https://dita.digital/" + nextTextAudioPair.Text);
|
|
41206
41249
|
if (hrefUrlObj1.pathname !== hrefUrlObj2.pathname) {
|
|
41207
|
-
|
|
41208
|
-
console.log("mediaOverlaysNext() SWITCH! " + hrefUrlObj1.pathname + " != " + hrefUrlObj2.pathname);
|
|
41209
|
-
}
|
|
41250
|
+
import_loglevel10.default.log("mediaOverlaysNext() SWITCH! " + hrefUrlObj1.pathname + " != " + hrefUrlObj2.pathname);
|
|
41210
41251
|
switchDoc = true;
|
|
41211
41252
|
}
|
|
41212
41253
|
}
|
|
41213
41254
|
if (switchDoc) {
|
|
41214
41255
|
this.mediaOverlaysStop();
|
|
41215
41256
|
} else {
|
|
41216
|
-
|
|
41217
|
-
console.log("mediaOverlaysNext() - playMediaOverlaysAudio()");
|
|
41257
|
+
import_loglevel10.default.log("mediaOverlaysNext() - playMediaOverlaysAudio()");
|
|
41218
41258
|
setTimeout(async () => {
|
|
41219
41259
|
await this.playMediaOverlaysAudio(nextTextAudioPair, void 0, void 0);
|
|
41220
41260
|
}, 0);
|
|
41221
41261
|
}
|
|
41222
41262
|
}
|
|
41223
41263
|
} else {
|
|
41224
|
-
|
|
41225
|
-
console.log("mediaOverlaysNext() - navLeftOrRight() 2");
|
|
41264
|
+
import_loglevel10.default.log("mediaOverlaysNext() - navLeftOrRight() 2");
|
|
41226
41265
|
this.mediaOverlaysStop();
|
|
41227
41266
|
if (this.currentLinks.length > 1 && this.currentLinkIndex === 0) {
|
|
41228
41267
|
this.currentLinkIndex++;
|
|
@@ -41239,15 +41278,13 @@ var MediaOverlayModule = class {
|
|
|
41239
41278
|
}
|
|
41240
41279
|
}
|
|
41241
41280
|
mediaOverlaysStop() {
|
|
41242
|
-
|
|
41243
|
-
console.log("mediaOverlaysStop()");
|
|
41281
|
+
import_loglevel10.default.log("mediaOverlaysStop()");
|
|
41244
41282
|
this.mediaOverlaysPause();
|
|
41245
41283
|
this.mediaOverlayRoot = void 0;
|
|
41246
41284
|
this.mediaOverlayTextAudioPair = void 0;
|
|
41247
41285
|
}
|
|
41248
41286
|
mediaOverlaysPause() {
|
|
41249
|
-
|
|
41250
|
-
console.log("mediaOverlaysPause()");
|
|
41287
|
+
import_loglevel10.default.log("mediaOverlaysPause()");
|
|
41251
41288
|
this.mediaOverlayHighlight(void 0);
|
|
41252
41289
|
if (this.audioElement) {
|
|
41253
41290
|
this.audioElement.pause();
|
|
@@ -41256,36 +41293,28 @@ var MediaOverlayModule = class {
|
|
|
41256
41293
|
findNextTextAudioPair(mo, moToMatch, previousMo, escape2) {
|
|
41257
41294
|
if (!mo.Children || !mo.Children.length) {
|
|
41258
41295
|
if (previousMo?.prev === moToMatch) {
|
|
41259
|
-
|
|
41260
|
-
console.log("findNextTextAudioPair() - prevMo === moToMatch");
|
|
41296
|
+
import_loglevel10.default.log("findNextTextAudioPair() - prevMo === moToMatch");
|
|
41261
41297
|
return mo;
|
|
41262
41298
|
}
|
|
41263
|
-
|
|
41264
|
-
|
|
41265
|
-
console.log(JSON.stringify(mo));
|
|
41266
|
-
}
|
|
41299
|
+
import_loglevel10.default.log("findNextTextAudioPair() - set previous");
|
|
41300
|
+
import_loglevel10.default.log(JSON.stringify(mo));
|
|
41267
41301
|
previousMo.prev = mo;
|
|
41268
41302
|
return void 0;
|
|
41269
41303
|
}
|
|
41270
41304
|
for (const child of mo.Children) {
|
|
41271
|
-
|
|
41272
|
-
|
|
41273
|
-
console.log(JSON.stringify(child));
|
|
41274
|
-
}
|
|
41305
|
+
import_loglevel10.default.log("findNextTextAudioPair() - child");
|
|
41306
|
+
import_loglevel10.default.log(JSON.stringify(child));
|
|
41275
41307
|
const match = this.findNextTextAudioPair(child, moToMatch, previousMo, escape2);
|
|
41276
41308
|
if (match) {
|
|
41277
|
-
|
|
41278
|
-
|
|
41279
|
-
console.log(JSON.stringify(match));
|
|
41280
|
-
}
|
|
41309
|
+
import_loglevel10.default.log("findNextTextAudioPair() - match");
|
|
41310
|
+
import_loglevel10.default.log(JSON.stringify(match));
|
|
41281
41311
|
return match;
|
|
41282
41312
|
}
|
|
41283
41313
|
}
|
|
41284
41314
|
return void 0;
|
|
41285
41315
|
}
|
|
41286
41316
|
async playMediaOverlaysAudio(moTextAudioPair, begin, end) {
|
|
41287
|
-
|
|
41288
|
-
console.log("playMediaOverlaysAudio()");
|
|
41317
|
+
import_loglevel10.default.log("playMediaOverlaysAudio()");
|
|
41289
41318
|
this.mediaOverlayTextAudioPair = moTextAudioPair;
|
|
41290
41319
|
if (!moTextAudioPair.Audio) {
|
|
41291
41320
|
return;
|
|
@@ -41309,14 +41338,14 @@ var MediaOverlayModule = class {
|
|
|
41309
41338
|
try {
|
|
41310
41339
|
this.currentAudioBegin = parseFloat(b);
|
|
41311
41340
|
} catch (err) {
|
|
41312
|
-
|
|
41341
|
+
import_loglevel10.default.error(err);
|
|
41313
41342
|
}
|
|
41314
41343
|
if (matches.length >= 3) {
|
|
41315
41344
|
const e = matches[3];
|
|
41316
41345
|
try {
|
|
41317
41346
|
this.currentAudioEnd = parseFloat(e);
|
|
41318
41347
|
} catch (err) {
|
|
41319
|
-
|
|
41348
|
+
import_loglevel10.default.error(err);
|
|
41320
41349
|
}
|
|
41321
41350
|
}
|
|
41322
41351
|
}
|
|
@@ -41325,9 +41354,7 @@ var MediaOverlayModule = class {
|
|
|
41325
41354
|
this.currentAudioBegin = begin;
|
|
41326
41355
|
this.currentAudioEnd = end;
|
|
41327
41356
|
}
|
|
41328
|
-
|
|
41329
|
-
console.log(`${urlFull} => [${this.currentAudioBegin}-${this.currentAudioEnd}]`);
|
|
41330
|
-
}
|
|
41357
|
+
import_loglevel10.default.log(`${urlFull} => [${this.currentAudioBegin}-${this.currentAudioEnd}]`);
|
|
41331
41358
|
const playClip = async (initial) => {
|
|
41332
41359
|
if (!this.audioElement) {
|
|
41333
41360
|
return;
|
|
@@ -41335,9 +41362,7 @@ var MediaOverlayModule = class {
|
|
|
41335
41362
|
const timeToSeekTo = this.currentAudioBegin ? this.currentAudioBegin : 0;
|
|
41336
41363
|
if (initial || this.audioElement.paused) {
|
|
41337
41364
|
if (initial && !timeToSeekTo || this.audioElement.currentTime === timeToSeekTo) {
|
|
41338
|
-
|
|
41339
|
-
console.log("playMediaOverlaysAudio() - playClip() - _currentAudioElement.play()");
|
|
41340
|
-
}
|
|
41365
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip() - _currentAudioElement.play()");
|
|
41341
41366
|
this.ensureOnTimeUpdate(false, false);
|
|
41342
41367
|
this.audioElement.playbackRate = this.settings.rate;
|
|
41343
41368
|
this.audioElement.volume = this.settings.volume;
|
|
@@ -41356,14 +41381,10 @@ var MediaOverlayModule = class {
|
|
|
41356
41381
|
checkReady();
|
|
41357
41382
|
}
|
|
41358
41383
|
} else {
|
|
41359
|
-
|
|
41360
|
-
console.log("playMediaOverlaysAudio() - playClip() - ontimeupdateSeeked");
|
|
41361
|
-
}
|
|
41384
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip() - ontimeupdateSeeked");
|
|
41362
41385
|
const ontimeupdateSeeked = async (_ev) => {
|
|
41363
41386
|
this.audioElement.removeEventListener("timeupdate", ontimeupdateSeeked);
|
|
41364
|
-
|
|
41365
|
-
console.log("playMediaOverlaysAudio() - playClip() - ontimeupdateSeeked - .play()");
|
|
41366
|
-
}
|
|
41387
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip() - ontimeupdateSeeked - .play()");
|
|
41367
41388
|
this.ensureOnTimeUpdate(false, false);
|
|
41368
41389
|
if (this.audioElement) {
|
|
41369
41390
|
this.audioElement.playbackRate = this.settings.rate;
|
|
@@ -41391,13 +41412,9 @@ var MediaOverlayModule = class {
|
|
|
41391
41412
|
const contiguous = this.previousAudioUrl === this.currentAudioUrl && typeof this.previousAudioEnd !== "undefined" && this.previousAudioEnd > timeToSeekTo - 0.02 && this.previousAudioEnd <= timeToSeekTo && this.audioElement.currentTime >= timeToSeekTo - 0.1;
|
|
41392
41413
|
this.ensureOnTimeUpdate(false, false);
|
|
41393
41414
|
if (contiguous) {
|
|
41394
|
-
|
|
41395
|
-
console.log("playMediaOverlaysAudio() - playClip() - ensureOnTimeUpdate");
|
|
41396
|
-
}
|
|
41415
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip() - ensureOnTimeUpdate");
|
|
41397
41416
|
} else {
|
|
41398
|
-
|
|
41399
|
-
console.log("playMediaOverlaysAudio() - playClip() - currentTime = timeToSeekTo");
|
|
41400
|
-
}
|
|
41417
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip() - currentTime = timeToSeekTo");
|
|
41401
41418
|
this.audioElement.currentTime = timeToSeekTo;
|
|
41402
41419
|
}
|
|
41403
41420
|
}
|
|
@@ -41405,9 +41422,7 @@ var MediaOverlayModule = class {
|
|
|
41405
41422
|
this.previousAudioUrl = this.currentAudioUrl;
|
|
41406
41423
|
if (!this.currentAudioUrl || urlNoQuery !== this.currentAudioUrl) {
|
|
41407
41424
|
this.currentAudioUrl = urlNoQuery;
|
|
41408
|
-
|
|
41409
|
-
console.log("playMediaOverlaysAudio() - RESET: " + this.previousAudioUrl + " => " + this.currentAudioUrl);
|
|
41410
|
-
}
|
|
41425
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - RESET: " + this.previousAudioUrl + " => " + this.currentAudioUrl);
|
|
41411
41426
|
this.audioElement = document.getElementById("AUDIO_MO_ID");
|
|
41412
41427
|
if (this.audioElement) {
|
|
41413
41428
|
this.audioElement.pause();
|
|
@@ -41424,23 +41439,21 @@ var MediaOverlayModule = class {
|
|
|
41424
41439
|
this.audioElement.playbackRate = this.settings.rate;
|
|
41425
41440
|
document.body.appendChild(this.audioElement);
|
|
41426
41441
|
this.audioElement.addEventListener("error", (ev) => {
|
|
41427
|
-
|
|
41442
|
+
import_loglevel10.default.log("-1) error: " + (this.currentAudioUrl !== ev.currentTarget.src ? this.currentAudioUrl + " -- " : "") + ev.currentTarget.src.substr(ev.currentTarget.src.lastIndexOf("/")));
|
|
41428
41443
|
if (this.audioElement && this.audioElement.error) {
|
|
41429
|
-
|
|
41430
|
-
|
|
41444
|
+
import_loglevel10.default.log(this.audioElement.error.code);
|
|
41445
|
+
import_loglevel10.default.log(this.audioElement.error.message);
|
|
41431
41446
|
}
|
|
41432
41447
|
});
|
|
41433
41448
|
const oncanplaythrough = async (ev) => {
|
|
41434
41449
|
const currentAudioElement = ev.currentTarget;
|
|
41435
41450
|
currentAudioElement.removeEventListener("canplaythrough", oncanplaythrough);
|
|
41436
|
-
|
|
41437
|
-
console.log("oncanplaythrough");
|
|
41451
|
+
import_loglevel10.default.log("oncanplaythrough");
|
|
41438
41452
|
await playClip(true);
|
|
41439
41453
|
};
|
|
41440
41454
|
this.audioElement.addEventListener("canplaythrough", oncanplaythrough);
|
|
41441
41455
|
const onended = async (_ev) => {
|
|
41442
|
-
|
|
41443
|
-
console.log("onended");
|
|
41456
|
+
import_loglevel10.default.log("onended");
|
|
41444
41457
|
if (this.currentLinks.length > 1 && this.currentLinkIndex === 0) {
|
|
41445
41458
|
this.currentLinkIndex++;
|
|
41446
41459
|
await this.playLink();
|
|
@@ -41457,42 +41470,35 @@ var MediaOverlayModule = class {
|
|
|
41457
41470
|
this.audioElement.playbackRate = this.settings.rate;
|
|
41458
41471
|
this.audioElement.setAttribute("src", this.currentAudioUrl);
|
|
41459
41472
|
} else {
|
|
41460
|
-
|
|
41461
|
-
console.log("playMediaOverlaysAudio() - playClip()");
|
|
41473
|
+
import_loglevel10.default.log("playMediaOverlaysAudio() - playClip()");
|
|
41462
41474
|
await playClip(false);
|
|
41463
41475
|
}
|
|
41464
41476
|
}
|
|
41465
41477
|
async playMediaOverlays(textHref, rootMo, textFragmentIDChain) {
|
|
41466
|
-
|
|
41467
|
-
console.log("playMediaOverlays()");
|
|
41478
|
+
import_loglevel10.default.log("playMediaOverlays()");
|
|
41468
41479
|
let textFragmentIDChain_ = textFragmentIDChain ? textFragmentIDChain.filter((id2) => id2) : void 0;
|
|
41469
41480
|
if (textFragmentIDChain_ && textFragmentIDChain_.length === 0) {
|
|
41470
41481
|
textFragmentIDChain_ = void 0;
|
|
41471
41482
|
}
|
|
41472
41483
|
let moTextAudioPair = this.findDepthFirstTextAudioPair(textHref, rootMo, textFragmentIDChain_);
|
|
41473
41484
|
if (!moTextAudioPair && textFragmentIDChain_) {
|
|
41474
|
-
|
|
41475
|
-
|
|
41476
|
-
|
|
41477
|
-
console.log(JSON.stringify(rootMo, null, 4));
|
|
41478
|
-
}
|
|
41485
|
+
import_loglevel10.default.log("playMediaOverlays() - findDepthFirstTextAudioPair() SECOND CHANCE ");
|
|
41486
|
+
import_loglevel10.default.log(JSON.stringify(textFragmentIDChain_, null, 4));
|
|
41487
|
+
import_loglevel10.default.log(JSON.stringify(rootMo, null, 4));
|
|
41479
41488
|
moTextAudioPair = this.findDepthFirstTextAudioPair(textHref, rootMo, void 0);
|
|
41480
41489
|
}
|
|
41481
41490
|
if (moTextAudioPair) {
|
|
41482
41491
|
if (moTextAudioPair.Audio) {
|
|
41483
|
-
|
|
41484
|
-
console.log("playMediaOverlays() - playMediaOverlaysAudio()");
|
|
41492
|
+
import_loglevel10.default.log("playMediaOverlays() - playMediaOverlaysAudio()");
|
|
41485
41493
|
this.mediaOverlayRoot = rootMo;
|
|
41486
41494
|
await this.playMediaOverlaysAudio(moTextAudioPair, void 0, void 0);
|
|
41487
41495
|
}
|
|
41488
41496
|
} else {
|
|
41489
|
-
|
|
41490
|
-
console.log("playMediaOverlays() - !moTextAudioPair " + textHref);
|
|
41497
|
+
import_loglevel10.default.log("playMediaOverlays() - !moTextAudioPair " + textHref);
|
|
41491
41498
|
}
|
|
41492
41499
|
}
|
|
41493
41500
|
mediaOverlayHighlight(id2) {
|
|
41494
|
-
|
|
41495
|
-
console.log("moHighlight: ## " + id2);
|
|
41501
|
+
import_loglevel10.default.log("moHighlight: ## " + id2);
|
|
41496
41502
|
let classActive = this.publication.Metadata?.MediaOverlay?.ActiveClass;
|
|
41497
41503
|
if (!classActive) {
|
|
41498
41504
|
classActive = this.settings.color;
|
|
@@ -41537,6 +41543,7 @@ var MediaOverlayModule = class {
|
|
|
41537
41543
|
|
|
41538
41544
|
// src/modules/positions/TimelineModule.ts
|
|
41539
41545
|
init_polyfills();
|
|
41546
|
+
var import_loglevel11 = __toModule(require_loglevel());
|
|
41540
41547
|
var TimelineModule = class {
|
|
41541
41548
|
static async create(config2) {
|
|
41542
41549
|
const timeline = new this(config2.delegate, config2.publication);
|
|
@@ -41548,9 +41555,7 @@ var TimelineModule = class {
|
|
|
41548
41555
|
this.publication = publication;
|
|
41549
41556
|
}
|
|
41550
41557
|
async stop() {
|
|
41551
|
-
|
|
41552
|
-
console.log("Timeline module stop");
|
|
41553
|
-
}
|
|
41558
|
+
import_loglevel11.default.log("Timeline module stop");
|
|
41554
41559
|
}
|
|
41555
41560
|
async start() {
|
|
41556
41561
|
this.delegate.timelineModule = this;
|
|
@@ -41619,8 +41624,7 @@ var TimelineModule = class {
|
|
|
41619
41624
|
title: link.Title
|
|
41620
41625
|
};
|
|
41621
41626
|
}
|
|
41622
|
-
|
|
41623
|
-
console.log(position);
|
|
41627
|
+
import_loglevel11.default.log(position);
|
|
41624
41628
|
this.delegate.navigate(position);
|
|
41625
41629
|
});
|
|
41626
41630
|
if (tocHrefAbs === this.delegate.currentChapterLink.href) {
|
|
@@ -41640,8 +41644,22 @@ var TimelineModule = class {
|
|
|
41640
41644
|
// src/modules/protection/ContentProtectionModule.ts
|
|
41641
41645
|
init_polyfills();
|
|
41642
41646
|
var import_debounce3 = __toModule(require_debounce());
|
|
41647
|
+
|
|
41648
|
+
// src/utils/index.ts
|
|
41649
|
+
init_polyfills();
|
|
41650
|
+
var import_loglevel12 = __toModule(require_loglevel());
|
|
41651
|
+
function delay(t, v) {
|
|
41652
|
+
return new Promise(function(resolve) {
|
|
41653
|
+
setTimeout(resolve.bind(null, v), t);
|
|
41654
|
+
});
|
|
41655
|
+
}
|
|
41656
|
+
var IS_DEV = false;
|
|
41657
|
+
import_loglevel12.default.setLevel(IS_DEV ? "trace" : "warn", true);
|
|
41658
|
+
|
|
41659
|
+
// src/modules/protection/ContentProtectionModule.ts
|
|
41643
41660
|
var import_browserslist_useragent_regexp = __toModule(require_lib7());
|
|
41644
41661
|
var import_devtools_detector = __toModule(require_devtools_detector());
|
|
41662
|
+
var import_loglevel13 = __toModule(require_loglevel());
|
|
41645
41663
|
var ContentProtectionModule = class {
|
|
41646
41664
|
constructor(delegate, properties) {
|
|
41647
41665
|
this.hasEventListener = false;
|
|
@@ -41672,7 +41690,7 @@ var ContentProtectionModule = class {
|
|
|
41672
41690
|
window.sessionStorage.clear();
|
|
41673
41691
|
window.location.replace(window.location.origin);
|
|
41674
41692
|
}
|
|
41675
|
-
if (typeof config2.api?.inspectDetected === "function") {
|
|
41693
|
+
if (config2.detectInspect && typeof config2.api?.inspectDetected === "function") {
|
|
41676
41694
|
config2.api.inspectDetected();
|
|
41677
41695
|
}
|
|
41678
41696
|
}
|
|
@@ -41703,18 +41721,14 @@ var ContentProtectionModule = class {
|
|
|
41703
41721
|
var self2 = this;
|
|
41704
41722
|
this.mutationObserver = new MutationObserver(function(mutations) {
|
|
41705
41723
|
mutations.forEach(function(mutation) {
|
|
41706
|
-
|
|
41707
|
-
console.log(mutation.type);
|
|
41708
|
-
}
|
|
41724
|
+
import_loglevel13.default.log(mutation.type);
|
|
41709
41725
|
self2.isHacked = true;
|
|
41710
41726
|
});
|
|
41711
41727
|
});
|
|
41712
41728
|
}
|
|
41713
41729
|
}
|
|
41714
41730
|
async stop() {
|
|
41715
|
-
|
|
41716
|
-
console.log("Protection module stop");
|
|
41717
|
-
}
|
|
41731
|
+
import_loglevel13.default.log("Protection module stop");
|
|
41718
41732
|
this.mutationObserver.disconnect();
|
|
41719
41733
|
if (this.properties?.disableKeys) {
|
|
41720
41734
|
removeEventListenerOptional(this.delegate.mainElement, "keydown", this.disableSave);
|
|
@@ -41946,18 +41960,14 @@ var ContentProtectionModule = class {
|
|
|
41946
41960
|
return true;
|
|
41947
41961
|
}
|
|
41948
41962
|
preventCopy(event) {
|
|
41949
|
-
|
|
41950
|
-
console.log("copy action initiated");
|
|
41951
|
-
}
|
|
41963
|
+
import_loglevel13.default.log("copy action initiated");
|
|
41952
41964
|
event.clipboardData.setData("text/plain", "copy not allowed");
|
|
41953
41965
|
event.stopPropagation();
|
|
41954
41966
|
event.preventDefault();
|
|
41955
41967
|
return false;
|
|
41956
41968
|
}
|
|
41957
41969
|
beforePrint(event) {
|
|
41958
|
-
|
|
41959
|
-
console.log("before print");
|
|
41960
|
-
}
|
|
41970
|
+
import_loglevel13.default.log("before print");
|
|
41961
41971
|
if (this.delegate && this.delegate.headerMenu) {
|
|
41962
41972
|
this.delegate.headerMenu.style.display = "none";
|
|
41963
41973
|
this.delegate.mainElement.style.display = "none";
|
|
@@ -41967,9 +41977,7 @@ var ContentProtectionModule = class {
|
|
|
41967
41977
|
return false;
|
|
41968
41978
|
}
|
|
41969
41979
|
afterPrint(event) {
|
|
41970
|
-
|
|
41971
|
-
console.log("after print");
|
|
41972
|
-
}
|
|
41980
|
+
import_loglevel13.default.log("after print");
|
|
41973
41981
|
if (this.delegate && this.delegate.headerMenu) {
|
|
41974
41982
|
this.delegate.headerMenu.style.removeProperty("display");
|
|
41975
41983
|
this.delegate.mainElement.style.removeProperty("display");
|
|
@@ -42059,14 +42067,12 @@ var ContentProtectionModule = class {
|
|
|
42059
42067
|
rect.width = width;
|
|
42060
42068
|
rect.left = left;
|
|
42061
42069
|
} catch (error) {
|
|
42062
|
-
|
|
42063
|
-
|
|
42064
|
-
|
|
42065
|
-
|
|
42066
|
-
|
|
42067
|
-
|
|
42068
|
-
console.log("isObfuscated " + rect.isObfuscated);
|
|
42069
|
-
}
|
|
42070
|
+
import_loglevel13.default.log("error " + error);
|
|
42071
|
+
import_loglevel13.default.log(rect);
|
|
42072
|
+
import_loglevel13.default.log(rect.node);
|
|
42073
|
+
import_loglevel13.default.log("scrambledTextContent " + rect.scrambledTextContent);
|
|
42074
|
+
import_loglevel13.default.log("textContent " + rect.textContent);
|
|
42075
|
+
import_loglevel13.default.log("isObfuscated " + rect.isObfuscated);
|
|
42070
42076
|
}
|
|
42071
42077
|
});
|
|
42072
42078
|
}
|
|
@@ -42122,17 +42128,14 @@ var ContentProtectionModule = class {
|
|
|
42122
42128
|
range.detach();
|
|
42123
42129
|
return rect;
|
|
42124
42130
|
} catch (error) {
|
|
42125
|
-
|
|
42126
|
-
|
|
42127
|
-
|
|
42128
|
-
console.log(node.textContent);
|
|
42129
|
-
}
|
|
42131
|
+
import_loglevel13.default.log("measureTextNode " + error);
|
|
42132
|
+
import_loglevel13.default.log("measureTextNode " + node);
|
|
42133
|
+
import_loglevel13.default.log(node.textContent);
|
|
42130
42134
|
}
|
|
42131
42135
|
}
|
|
42132
42136
|
isBeingHacked(element) {
|
|
42133
42137
|
if (element.style.animation || element.style.transition || element.style.position || element.hasAttribute("style")) {
|
|
42134
|
-
|
|
42135
|
-
console.log("content being hacked");
|
|
42138
|
+
import_loglevel13.default.log("content being hacked");
|
|
42136
42139
|
return true;
|
|
42137
42140
|
}
|
|
42138
42141
|
return false;
|
|
@@ -42296,8 +42299,9 @@ async function searchDocDomSeek(searchInput, doc, href, title, fullWordSearch =
|
|
|
42296
42299
|
}
|
|
42297
42300
|
|
|
42298
42301
|
// src/modules/search/SearchModule.ts
|
|
42302
|
+
var import_loglevel14 = __toModule(require_loglevel());
|
|
42299
42303
|
var SearchModule = class {
|
|
42300
|
-
constructor(delegate, publication, properties, highlighter,
|
|
42304
|
+
constructor(delegate, publication, properties, highlighter, api, headerMenu) {
|
|
42301
42305
|
this.currentChapterSearchResult = [];
|
|
42302
42306
|
this.bookSearchResult = [];
|
|
42303
42307
|
this.currentSearchHighlights = [];
|
|
@@ -42307,17 +42311,14 @@ var SearchModule = class {
|
|
|
42307
42311
|
this.properties = properties;
|
|
42308
42312
|
this.api = api;
|
|
42309
42313
|
this.highlighter = highlighter;
|
|
42310
|
-
this.requestConfig = requestConfig;
|
|
42311
42314
|
}
|
|
42312
42315
|
static async create(config2) {
|
|
42313
|
-
const search = new this(config2.delegate, config2.publication, config2, config2.highlighter, config2.
|
|
42316
|
+
const search = new this(config2.delegate, config2.publication, config2, config2.highlighter, config2.api, config2.headerMenu);
|
|
42314
42317
|
await search.start();
|
|
42315
42318
|
return search;
|
|
42316
42319
|
}
|
|
42317
42320
|
async stop() {
|
|
42318
|
-
|
|
42319
|
-
console.log("Search module stop");
|
|
42320
|
-
}
|
|
42321
|
+
import_loglevel14.default.log("Search module stop");
|
|
42321
42322
|
removeEventListenerOptional(this.searchInput, "keypress", this.handleSearch.bind(this));
|
|
42322
42323
|
removeEventListenerOptional(this.searchGo, "click", this.handleSearch.bind(this));
|
|
42323
42324
|
}
|
|
@@ -42736,9 +42737,9 @@ var SearchModule = class {
|
|
|
42736
42737
|
}
|
|
42737
42738
|
if (tocItem) {
|
|
42738
42739
|
let href = this.publication.getAbsoluteHref(tocItem.Href);
|
|
42739
|
-
await fetch(href, this.requestConfig).then((r) => r.text()).then(async (data) => {
|
|
42740
|
+
await fetch(href, this.delegate.requestConfig).then((r) => r.text()).then(async (data) => {
|
|
42740
42741
|
let parser = new DOMParser();
|
|
42741
|
-
let doc = parser.parseFromString(this.requestConfig?.encoded ? this.decodeBase64(data) : data, "application/xhtml+xml");
|
|
42742
|
+
let doc = parser.parseFromString(this.delegate.requestConfig?.encoded ? this.decodeBase64(data) : data, "application/xhtml+xml");
|
|
42742
42743
|
if (tocItem) {
|
|
42743
42744
|
searchDocDomSeek(term, doc, tocItem.Href, tocItem.Title).then((result) => {
|
|
42744
42745
|
result.forEach((searchItem) => {
|
|
@@ -42773,9 +42774,9 @@ var SearchModule = class {
|
|
|
42773
42774
|
}
|
|
42774
42775
|
if (tocItem) {
|
|
42775
42776
|
let href = this.publication.getAbsoluteHref(tocItem.Href);
|
|
42776
|
-
await fetch(href, this.requestConfig).then((r) => r.text()).then(async (data) => {
|
|
42777
|
+
await fetch(href, this.delegate.requestConfig).then((r) => r.text()).then(async (data) => {
|
|
42777
42778
|
let parser = new DOMParser();
|
|
42778
|
-
let doc = parser.parseFromString(this.requestConfig?.encoded ? this.decodeBase64(data) : data, "application/xhtml+xml");
|
|
42779
|
+
let doc = parser.parseFromString(this.delegate.requestConfig?.encoded ? this.decodeBase64(data) : data, "application/xhtml+xml");
|
|
42779
42780
|
if (tocItem) {
|
|
42780
42781
|
searchDocDomSeek(term, doc, tocItem.Href, tocItem.Title).then((result) => {
|
|
42781
42782
|
result.forEach((searchItem) => {
|
|
@@ -42844,6 +42845,7 @@ var SearchModule = class {
|
|
|
42844
42845
|
|
|
42845
42846
|
// src/modules/TTS/TTSSettings.ts
|
|
42846
42847
|
init_polyfills();
|
|
42848
|
+
var import_loglevel15 = __toModule(require_loglevel());
|
|
42847
42849
|
var _TTSREFS = class {
|
|
42848
42850
|
};
|
|
42849
42851
|
var TTSREFS = _TTSREFS;
|
|
@@ -42885,42 +42887,34 @@ var TTSSettings = class {
|
|
|
42885
42887
|
let initialTTSSettings = config2.initialTTSSettings;
|
|
42886
42888
|
if (initialTTSSettings?.rate) {
|
|
42887
42889
|
settings.rate = initialTTSSettings.rate;
|
|
42888
|
-
|
|
42889
|
-
console.log(settings.rate);
|
|
42890
|
+
import_loglevel15.default.log(settings.rate);
|
|
42890
42891
|
}
|
|
42891
42892
|
if (initialTTSSettings?.pitch) {
|
|
42892
42893
|
settings.pitch = initialTTSSettings.pitch;
|
|
42893
|
-
|
|
42894
|
-
console.log(settings.pitch);
|
|
42894
|
+
import_loglevel15.default.log(settings.pitch);
|
|
42895
42895
|
}
|
|
42896
42896
|
if (initialTTSSettings?.volume) {
|
|
42897
42897
|
settings.volume = initialTTSSettings.volume;
|
|
42898
|
-
|
|
42899
|
-
console.log(settings.volume);
|
|
42898
|
+
import_loglevel15.default.log(settings.volume);
|
|
42900
42899
|
}
|
|
42901
42900
|
if (initialTTSSettings?.color) {
|
|
42902
42901
|
settings.color = initialTTSSettings.color;
|
|
42903
|
-
|
|
42904
|
-
console.log(settings.color);
|
|
42902
|
+
import_loglevel15.default.log(settings.color);
|
|
42905
42903
|
}
|
|
42906
42904
|
if (initialTTSSettings?.autoScroll) {
|
|
42907
42905
|
settings.autoScroll = initialTTSSettings.autoScroll;
|
|
42908
|
-
|
|
42909
|
-
console.log(settings.autoScroll);
|
|
42906
|
+
import_loglevel15.default.log(settings.autoScroll);
|
|
42910
42907
|
}
|
|
42911
42908
|
if (initialTTSSettings?.voice) {
|
|
42912
42909
|
settings.voice = initialTTSSettings.voice;
|
|
42913
|
-
|
|
42914
|
-
console.log(settings.voice);
|
|
42910
|
+
import_loglevel15.default.log(settings.voice);
|
|
42915
42911
|
}
|
|
42916
42912
|
}
|
|
42917
42913
|
settings.initializeSelections();
|
|
42918
42914
|
return settings;
|
|
42919
42915
|
}
|
|
42920
42916
|
stop() {
|
|
42921
|
-
|
|
42922
|
-
console.log("tts settings stop");
|
|
42923
|
-
}
|
|
42917
|
+
import_loglevel15.default.log("tts settings stop");
|
|
42924
42918
|
}
|
|
42925
42919
|
initialise() {
|
|
42926
42920
|
this.autoScroll = this.getProperty(TTSREFS.AUTO_SCROLL_KEY) != null ? this.getProperty(TTSREFS.AUTO_SCROLL_KEY).value : this.autoScroll;
|
|
@@ -42993,9 +42987,7 @@ var TTSSettings = class {
|
|
|
42993
42987
|
this.applyTTSSettings(ttsSettings);
|
|
42994
42988
|
if (this.api?.updateSettings) {
|
|
42995
42989
|
this.api?.updateSettings(ttsSettings).then(async (settings) => {
|
|
42996
|
-
|
|
42997
|
-
console.log("api updated tts settings", settings);
|
|
42998
|
-
}
|
|
42990
|
+
import_loglevel15.default.log("api updated tts settings", settings);
|
|
42999
42991
|
});
|
|
43000
42992
|
}
|
|
43001
42993
|
}
|
|
@@ -43043,8 +43035,7 @@ var TTSSettings = class {
|
|
|
43043
43035
|
}
|
|
43044
43036
|
applyTTSSettings(ttsSettings) {
|
|
43045
43037
|
if (ttsSettings.rate) {
|
|
43046
|
-
|
|
43047
|
-
console.log("rate " + this.rate);
|
|
43038
|
+
import_loglevel15.default.log("rate " + this.rate);
|
|
43048
43039
|
this.rate = ttsSettings.rate;
|
|
43049
43040
|
let prop = this.userProperties.getByRef(TTSREFS.RATE_REF);
|
|
43050
43041
|
if (prop) {
|
|
@@ -43055,8 +43046,7 @@ var TTSSettings = class {
|
|
|
43055
43046
|
this.restartCallback();
|
|
43056
43047
|
}
|
|
43057
43048
|
if (ttsSettings.pitch) {
|
|
43058
|
-
|
|
43059
|
-
console.log("pitch " + this.pitch);
|
|
43049
|
+
import_loglevel15.default.log("pitch " + this.pitch);
|
|
43060
43050
|
this.pitch = ttsSettings.pitch;
|
|
43061
43051
|
let prop = this.userProperties.getByRef(TTSREFS.PITCH_REF);
|
|
43062
43052
|
if (prop) {
|
|
@@ -43067,8 +43057,7 @@ var TTSSettings = class {
|
|
|
43067
43057
|
this.restartCallback();
|
|
43068
43058
|
}
|
|
43069
43059
|
if (ttsSettings.volume) {
|
|
43070
|
-
|
|
43071
|
-
console.log("volume " + this.volume);
|
|
43060
|
+
import_loglevel15.default.log("volume " + this.volume);
|
|
43072
43061
|
this.volume = ttsSettings.volume;
|
|
43073
43062
|
let prop = this.userProperties.getByRef(TTSREFS.VOLUME_REF);
|
|
43074
43063
|
if (prop) {
|
|
@@ -43088,8 +43077,7 @@ var TTSSettings = class {
|
|
|
43088
43077
|
this.settingsChangeCallback();
|
|
43089
43078
|
}
|
|
43090
43079
|
if (ttsSettings.autoScroll !== void 0) {
|
|
43091
|
-
|
|
43092
|
-
console.log("autoScroll " + this.autoScroll);
|
|
43080
|
+
import_loglevel15.default.log("autoScroll " + this.autoScroll);
|
|
43093
43081
|
this.autoScroll = ttsSettings.autoScroll;
|
|
43094
43082
|
let prop = this.userProperties.getByRef(TTSREFS.AUTO_SCROLL_REF);
|
|
43095
43083
|
if (prop) {
|
|
@@ -43099,8 +43087,7 @@ var TTSSettings = class {
|
|
|
43099
43087
|
this.settingsChangeCallback();
|
|
43100
43088
|
}
|
|
43101
43089
|
if (ttsSettings.voice) {
|
|
43102
|
-
|
|
43103
|
-
console.log("voice " + this.voice);
|
|
43090
|
+
import_loglevel15.default.log("voice " + this.voice);
|
|
43104
43091
|
this.voice = ttsSettings.voice;
|
|
43105
43092
|
let prop = this.userProperties.getByRef(TTSREFS.VOICE_REF);
|
|
43106
43093
|
if (prop) {
|
|
@@ -43436,6 +43423,7 @@ var SampleReadEventHandler = class {
|
|
|
43436
43423
|
|
|
43437
43424
|
// src/navigator/IFrameNavigator.ts
|
|
43438
43425
|
var import_eventemitter3 = __toModule(require_eventemitter3());
|
|
43426
|
+
var import_loglevel16 = __toModule(require_loglevel());
|
|
43439
43427
|
var IFrameNavigator = class extends import_eventemitter3.default {
|
|
43440
43428
|
constructor(settings, annotator = void 0, initialLastReadingPosition = void 0, publication, api, rights, tts, injectables, attributes, services, sample, requestConfig) {
|
|
43441
43429
|
super();
|
|
@@ -43471,10 +43459,8 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
43471
43459
|
}
|
|
43472
43460
|
if (lastReadingPosition) {
|
|
43473
43461
|
const linkHref = this.publication.getAbsoluteHref(lastReadingPosition.href);
|
|
43474
|
-
|
|
43475
|
-
|
|
43476
|
-
if (IS_DEV)
|
|
43477
|
-
console.log(linkHref);
|
|
43462
|
+
import_loglevel16.default.log(lastReadingPosition.href);
|
|
43463
|
+
import_loglevel16.default.log(linkHref);
|
|
43478
43464
|
lastReadingPosition.href = linkHref;
|
|
43479
43465
|
await this.navigate(lastReadingPosition);
|
|
43480
43466
|
}
|
|
@@ -43535,14 +43521,12 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
43535
43521
|
this.sampleReadEventHandler = new SampleReadEventHandler(this);
|
|
43536
43522
|
}
|
|
43537
43523
|
static async create(config2) {
|
|
43538
|
-
const navigator2 = new this(config2.settings, config2.annotator || void 0, config2.initialLastReadingPosition || void 0, config2.publication, config2.api, config2.rights, config2.tts, config2.injectables, config2.attributes || { margin: 0 }, config2.services, config2.sample);
|
|
43524
|
+
const navigator2 = new this(config2.settings, config2.annotator || void 0, config2.initialLastReadingPosition || void 0, config2.publication, config2.api, config2.rights, config2.tts, config2.injectables, config2.attributes || { margin: 0 }, config2.services, config2.sample, config2.requestConfig);
|
|
43539
43525
|
await navigator2.start(config2.mainElement, config2.headerMenu, config2.footerMenu);
|
|
43540
43526
|
return new Promise((resolve) => resolve(navigator2));
|
|
43541
43527
|
}
|
|
43542
43528
|
stop() {
|
|
43543
|
-
|
|
43544
|
-
console.log("Iframe navigator stop");
|
|
43545
|
-
}
|
|
43529
|
+
import_loglevel16.default.log("Iframe navigator stop");
|
|
43546
43530
|
removeEventListenerOptional(this.previousChapterAnchorElement, "click", this.handlePreviousChapterClick.bind(this));
|
|
43547
43531
|
removeEventListenerOptional(this.nextChapterAnchorElement, "click", this.handleNextChapterClick.bind(this));
|
|
43548
43532
|
removeEventListenerOptional(this.previousChapterTopAnchorElement, "click", this.handlePreviousPageClick.bind(this));
|
|
@@ -43750,7 +43734,7 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
43750
43734
|
this.setupEvents();
|
|
43751
43735
|
return await this.loadManifest();
|
|
43752
43736
|
} catch (err) {
|
|
43753
|
-
|
|
43737
|
+
import_loglevel16.default.error(err);
|
|
43754
43738
|
this.abortOnError(err);
|
|
43755
43739
|
return Promise.reject(err);
|
|
43756
43740
|
}
|
|
@@ -44044,10 +44028,8 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
44044
44028
|
}
|
|
44045
44029
|
if (lastReadingPosition) {
|
|
44046
44030
|
const linkHref = this.publication.getAbsoluteHref(lastReadingPosition.href);
|
|
44047
|
-
|
|
44048
|
-
|
|
44049
|
-
if (IS_DEV)
|
|
44050
|
-
console.log(linkHref);
|
|
44031
|
+
import_loglevel16.default.log(lastReadingPosition.href);
|
|
44032
|
+
import_loglevel16.default.log(linkHref);
|
|
44051
44033
|
lastReadingPosition.href = linkHref;
|
|
44052
44034
|
await this.navigate(lastReadingPosition);
|
|
44053
44035
|
} else if (startUrl) {
|
|
@@ -44063,7 +44045,7 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
44063
44045
|
}
|
|
44064
44046
|
return new Promise((resolve) => resolve());
|
|
44065
44047
|
} catch (err) {
|
|
44066
|
-
|
|
44048
|
+
import_loglevel16.default.error(err);
|
|
44067
44049
|
this.abortOnError(err);
|
|
44068
44050
|
return new Promise((_, reject) => reject(err)).catch(() => {
|
|
44069
44051
|
});
|
|
@@ -44245,7 +44227,7 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
44245
44227
|
}, 200);
|
|
44246
44228
|
return new Promise((resolve) => resolve());
|
|
44247
44229
|
} catch (err) {
|
|
44248
|
-
|
|
44230
|
+
import_loglevel16.default.error(err);
|
|
44249
44231
|
this.abortOnError(err);
|
|
44250
44232
|
return Promise.reject(err);
|
|
44251
44233
|
}
|
|
@@ -44780,10 +44762,8 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
44780
44762
|
const position = __spreadValues({}, locator);
|
|
44781
44763
|
position.locations = locations;
|
|
44782
44764
|
const linkHref = this.publication.getAbsoluteHref(locator.href);
|
|
44783
|
-
|
|
44784
|
-
|
|
44785
|
-
if (IS_DEV)
|
|
44786
|
-
console.log(linkHref);
|
|
44765
|
+
import_loglevel16.default.log(locator.href);
|
|
44766
|
+
import_loglevel16.default.log(linkHref);
|
|
44787
44767
|
position.href = linkHref;
|
|
44788
44768
|
this.stopReadAloud();
|
|
44789
44769
|
this.navigate(position);
|
|
@@ -44834,7 +44814,7 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
44834
44814
|
snapToSelector(selector2) {
|
|
44835
44815
|
const doc = this.iframes[0].contentDocument;
|
|
44836
44816
|
if (doc) {
|
|
44837
|
-
|
|
44817
|
+
import_loglevel16.default.log(selector2);
|
|
44838
44818
|
let result = doc.querySelectorAll(selector2);
|
|
44839
44819
|
if (result.length > 0)
|
|
44840
44820
|
this.view?.snap(result[0]);
|
|
@@ -45530,15 +45510,11 @@ var IFrameNavigator = class extends import_eventemitter3.default {
|
|
|
45530
45510
|
}
|
|
45531
45511
|
if (this.api?.updateCurrentLocation) {
|
|
45532
45512
|
this.api?.updateCurrentLocation(position).then(async (_) => {
|
|
45533
|
-
|
|
45534
|
-
console.log("api updated current location", position);
|
|
45535
|
-
}
|
|
45513
|
+
import_loglevel16.default.log("api updated current location", position);
|
|
45536
45514
|
return this.annotator?.saveLastReadingPosition(position);
|
|
45537
45515
|
});
|
|
45538
45516
|
} else {
|
|
45539
|
-
|
|
45540
|
-
console.log("save last reading position", position);
|
|
45541
|
-
}
|
|
45517
|
+
import_loglevel16.default.log("save last reading position", position);
|
|
45542
45518
|
this.annotator.saveLastReadingPosition(position);
|
|
45543
45519
|
}
|
|
45544
45520
|
}
|
|
@@ -46009,6 +45985,7 @@ function convertAndCamel(o) {
|
|
|
46009
45985
|
|
|
46010
45986
|
// src/modules/highlight/LayerSettings.ts
|
|
46011
45987
|
init_polyfills();
|
|
45988
|
+
var import_loglevel17 = __toModule(require_loglevel());
|
|
46012
45989
|
var LayerSettings = class {
|
|
46013
45990
|
constructor(store) {
|
|
46014
45991
|
this.LAYERSETTINGS = "layerSetting";
|
|
@@ -46020,9 +45997,7 @@ var LayerSettings = class {
|
|
|
46020
45997
|
return new Promise((resolve) => resolve(settings));
|
|
46021
45998
|
}
|
|
46022
45999
|
async stop() {
|
|
46023
|
-
|
|
46024
|
-
console.log("MediaOverlay settings stop");
|
|
46025
|
-
}
|
|
46000
|
+
import_loglevel17.default.log("MediaOverlay settings stop");
|
|
46026
46001
|
}
|
|
46027
46002
|
async initialize() {
|
|
46028
46003
|
this.userProperties = await this.getLayerSettings();
|
|
@@ -46066,6 +46041,7 @@ var LayerSettings = class {
|
|
|
46066
46041
|
|
|
46067
46042
|
// src/modules/pagebreak/PageBreakModule.ts
|
|
46068
46043
|
init_polyfills();
|
|
46044
|
+
var import_loglevel18 = __toModule(require_loglevel());
|
|
46069
46045
|
var PageBreakModule = class {
|
|
46070
46046
|
static async create(config2) {
|
|
46071
46047
|
const pageBreak = new this(config2.delegate, config2.publication, config2, config2.headerMenu);
|
|
@@ -46079,9 +46055,7 @@ var PageBreakModule = class {
|
|
|
46079
46055
|
this.properties = properties;
|
|
46080
46056
|
}
|
|
46081
46057
|
async stop() {
|
|
46082
|
-
|
|
46083
|
-
console.log("Page Break module stop");
|
|
46084
|
-
}
|
|
46058
|
+
import_loglevel18.default.log("Page Break module stop");
|
|
46085
46059
|
}
|
|
46086
46060
|
async start() {
|
|
46087
46061
|
this.delegate.pageBreakModule = this;
|
|
@@ -46147,16 +46121,15 @@ var PageBreakModule = class {
|
|
|
46147
46121
|
return "";
|
|
46148
46122
|
}
|
|
46149
46123
|
} catch (err) {
|
|
46150
|
-
|
|
46151
|
-
|
|
46124
|
+
import_loglevel18.default.log("uniqueCssSelector:");
|
|
46125
|
+
import_loglevel18.default.error(err);
|
|
46152
46126
|
return "";
|
|
46153
46127
|
}
|
|
46154
46128
|
}
|
|
46155
46129
|
if (pageBreaks) {
|
|
46156
46130
|
for (let i = 0; i < pageBreaks.length; i++) {
|
|
46157
46131
|
let img = pageBreaks[i];
|
|
46158
|
-
|
|
46159
|
-
console.log(img);
|
|
46132
|
+
import_loglevel18.default.log(img);
|
|
46160
46133
|
let title = img.innerHTML;
|
|
46161
46134
|
let hide = false;
|
|
46162
46135
|
if (img.innerHTML.length === 0) {
|
|
@@ -46229,6 +46202,7 @@ var PageBreakModule = class {
|
|
|
46229
46202
|
init_polyfills();
|
|
46230
46203
|
var import_sanitize_html2 = __toModule(require_sanitize_html());
|
|
46231
46204
|
var import_debounce6 = __toModule(require_debounce());
|
|
46205
|
+
var import_loglevel19 = __toModule(require_loglevel());
|
|
46232
46206
|
var TTSModule2 = class {
|
|
46233
46207
|
constructor(delegate, tts, rights, highlighter, properties, api, headerMenu) {
|
|
46234
46208
|
this.voices = [];
|
|
@@ -46346,16 +46320,14 @@ var TTSModule2 = class {
|
|
|
46346
46320
|
}
|
|
46347
46321
|
let s = setSpeech();
|
|
46348
46322
|
s.then(async (voices) => {
|
|
46349
|
-
|
|
46350
|
-
console.log(voices);
|
|
46323
|
+
import_loglevel19.default.log(voices);
|
|
46351
46324
|
this.voices = [];
|
|
46352
46325
|
voices.forEach((voice) => {
|
|
46353
46326
|
if (voice.localService === true) {
|
|
46354
46327
|
this.voices.push(voice);
|
|
46355
46328
|
}
|
|
46356
46329
|
});
|
|
46357
|
-
|
|
46358
|
-
console.log(this.voices);
|
|
46330
|
+
import_loglevel19.default.log(this.voices);
|
|
46359
46331
|
if (first) {
|
|
46360
46332
|
if (this.headerMenu) {
|
|
46361
46333
|
var preferredLanguageSelector = findElement(this.headerMenu, "#preferred-languages");
|
|
@@ -46439,6 +46411,26 @@ var TTSModule2 = class {
|
|
|
46439
46411
|
restOfTheText = restOfTheText.replace(textToBeSpoken, "").trim();
|
|
46440
46412
|
}
|
|
46441
46413
|
utterance = new SpeechSynthesisUtterance(textToBeSpoken);
|
|
46414
|
+
import_loglevel19.default.log(selectionInfo);
|
|
46415
|
+
import_loglevel19.default.log(textToBeSpoken, selectionInfo.range?.commonAncestorContainer.textContent);
|
|
46416
|
+
import_loglevel19.default.log(ttsQueueItem);
|
|
46417
|
+
import_loglevel19.default.log(ttsQueueItem.item.textNodes);
|
|
46418
|
+
import_loglevel19.default.log(startIndex);
|
|
46419
|
+
import_loglevel19.default.log(ttsQueueItem.item.combinedText);
|
|
46420
|
+
if (!ttsQueueItem.item.combinedText?.startsWith(textToBeSpoken)) {
|
|
46421
|
+
for (let i = 0; i < ttsQueueItem.item.textNodes.length; i++) {
|
|
46422
|
+
let node2 = ttsQueueItem.item.textNodes[i];
|
|
46423
|
+
if (node2 === selectionInfo.range?.commonAncestorContainer) {
|
|
46424
|
+
break;
|
|
46425
|
+
}
|
|
46426
|
+
import_loglevel19.default.log(node2.length);
|
|
46427
|
+
startIndex += node2.length;
|
|
46428
|
+
}
|
|
46429
|
+
}
|
|
46430
|
+
let node = ttsQueueItem.item.textNodes.filter((node2) => {
|
|
46431
|
+
return node2 === selectionInfo.range?.commonAncestorContainer;
|
|
46432
|
+
})[0];
|
|
46433
|
+
import_loglevel19.default.log(node);
|
|
46442
46434
|
utterance.onboundary = (ev) => {
|
|
46443
46435
|
this.updateTTSInfo(ttsQueueItem, ev.charIndex + startIndex, ev.charLength, utterance.text);
|
|
46444
46436
|
};
|
|
@@ -46451,8 +46443,7 @@ var TTSModule2 = class {
|
|
|
46451
46443
|
utterance.rate = this.tts.rate;
|
|
46452
46444
|
utterance.pitch = this.tts.pitch;
|
|
46453
46445
|
utterance.volume = this.tts.volume;
|
|
46454
|
-
|
|
46455
|
-
console.log("this.tts.voice.lang", this.tts.voice.lang);
|
|
46446
|
+
import_loglevel19.default.log("this.tts.voice.lang", this.tts.voice.lang);
|
|
46456
46447
|
var initialVoiceHasHyphen = true;
|
|
46457
46448
|
if (this.tts.voice && this.tts.voice.lang) {
|
|
46458
46449
|
initialVoiceHasHyphen = this.tts.voice.lang.indexOf("-") !== -1;
|
|
@@ -46461,10 +46452,8 @@ var TTSModule2 = class {
|
|
|
46461
46452
|
initialVoiceHasHyphen = true;
|
|
46462
46453
|
}
|
|
46463
46454
|
}
|
|
46464
|
-
|
|
46465
|
-
|
|
46466
|
-
if (IS_DEV)
|
|
46467
|
-
console.log("voices", this.voices);
|
|
46455
|
+
import_loglevel19.default.log("initialVoiceHasHyphen", initialVoiceHasHyphen);
|
|
46456
|
+
import_loglevel19.default.log("voices", this.voices);
|
|
46468
46457
|
var initialVoice;
|
|
46469
46458
|
if (initialVoiceHasHyphen === true) {
|
|
46470
46459
|
initialVoice = this.tts.voice && this.tts.voice.lang && this.tts.voice.name ? this.voices.filter((v) => {
|
|
@@ -46482,11 +46471,9 @@ var TTSModule2 = class {
|
|
|
46482
46471
|
initialVoice = this.tts.voice && this.tts.voice.lang ? this.voices.filter((v) => v.lang === this.tts.voice.lang)[0] : void 0;
|
|
46483
46472
|
}
|
|
46484
46473
|
}
|
|
46485
|
-
|
|
46486
|
-
console.log("initialVoice", initialVoice);
|
|
46474
|
+
import_loglevel19.default.log("initialVoice", initialVoice);
|
|
46487
46475
|
var publicationVoiceHasHyphen = self2.delegate.publication.Metadata.Language[0].indexOf("-") !== -1;
|
|
46488
|
-
|
|
46489
|
-
console.log("publicationVoiceHasHyphen", publicationVoiceHasHyphen);
|
|
46476
|
+
import_loglevel19.default.log("publicationVoiceHasHyphen", publicationVoiceHasHyphen);
|
|
46490
46477
|
var publicationVoice;
|
|
46491
46478
|
if (publicationVoiceHasHyphen === true) {
|
|
46492
46479
|
publicationVoice = this.tts.voice && this.tts.voice.usePublication ? this.voices.filter((v) => {
|
|
@@ -46498,11 +46485,9 @@ var TTSModule2 = class {
|
|
|
46498
46485
|
return v.lang.startsWith(self2.delegate.publication.Metadata.Language[0]) || v.lang.endsWith(self2.delegate.publication.Metadata.Language[0].toUpperCase());
|
|
46499
46486
|
})[0] : void 0;
|
|
46500
46487
|
}
|
|
46501
|
-
|
|
46502
|
-
console.log("publicationVoice", publicationVoice);
|
|
46488
|
+
import_loglevel19.default.log("publicationVoice", publicationVoice);
|
|
46503
46489
|
var defaultVoiceHasHyphen = navigator.language.indexOf("-") !== -1;
|
|
46504
|
-
|
|
46505
|
-
console.log("defaultVoiceHasHyphen", defaultVoiceHasHyphen);
|
|
46490
|
+
import_loglevel19.default.log("defaultVoiceHasHyphen", defaultVoiceHasHyphen);
|
|
46506
46491
|
var defaultVoice;
|
|
46507
46492
|
if (defaultVoiceHasHyphen === true) {
|
|
46508
46493
|
defaultVoice = this.voices.filter((voice) => {
|
|
@@ -46521,30 +46506,23 @@ var TTSModule2 = class {
|
|
|
46521
46506
|
return lang.includes(navigator.language) && voice.localService === true;
|
|
46522
46507
|
})[0];
|
|
46523
46508
|
}
|
|
46524
|
-
|
|
46525
|
-
console.log("defaultVoice", defaultVoice);
|
|
46509
|
+
import_loglevel19.default.log("defaultVoice", defaultVoice);
|
|
46526
46510
|
if (initialVoice) {
|
|
46527
|
-
|
|
46528
|
-
console.log("initialVoice");
|
|
46511
|
+
import_loglevel19.default.log("initialVoice");
|
|
46529
46512
|
utterance.voice = initialVoice;
|
|
46530
46513
|
} else if (publicationVoice) {
|
|
46531
|
-
|
|
46532
|
-
console.log("publicationVoice");
|
|
46514
|
+
import_loglevel19.default.log("publicationVoice");
|
|
46533
46515
|
utterance.voice = publicationVoice;
|
|
46534
46516
|
} else if (defaultVoice) {
|
|
46535
|
-
|
|
46536
|
-
console.log("defaultVoice");
|
|
46517
|
+
import_loglevel19.default.log("defaultVoice");
|
|
46537
46518
|
utterance.voice = defaultVoice;
|
|
46538
46519
|
}
|
|
46539
46520
|
if (utterance.voice !== void 0 && utterance.voice !== null) {
|
|
46540
46521
|
utterance.lang = utterance.voice.lang;
|
|
46541
|
-
|
|
46542
|
-
|
|
46543
|
-
if (IS_DEV)
|
|
46544
|
-
console.log("utterance.lang", utterance.lang);
|
|
46522
|
+
import_loglevel19.default.log("utterance.voice.lang", utterance.voice.lang);
|
|
46523
|
+
import_loglevel19.default.log("utterance.lang", utterance.lang);
|
|
46545
46524
|
}
|
|
46546
|
-
|
|
46547
|
-
console.log("navigator.language", navigator.language);
|
|
46525
|
+
import_loglevel19.default.log("navigator.language", navigator.language);
|
|
46548
46526
|
setTimeout(() => {
|
|
46549
46527
|
window.speechSynthesis.speak(utterance);
|
|
46550
46528
|
}, 0);
|
|
@@ -46579,16 +46557,14 @@ var TTSModule2 = class {
|
|
|
46579
46557
|
onend();
|
|
46580
46558
|
}
|
|
46581
46559
|
if (idx > idxEnd) {
|
|
46582
|
-
|
|
46583
|
-
console.log("utterance ended");
|
|
46560
|
+
import_loglevel19.default.log("utterance ended");
|
|
46584
46561
|
self2.highlighter.doneSpeaking();
|
|
46585
46562
|
self2.api?.finished();
|
|
46586
46563
|
self2.delegate.emit("readaloud.finished", "finished");
|
|
46587
46564
|
}
|
|
46588
46565
|
}
|
|
46589
46566
|
} else {
|
|
46590
|
-
|
|
46591
|
-
console.log("utterance ended");
|
|
46567
|
+
import_loglevel19.default.log("utterance ended");
|
|
46592
46568
|
self2.highlighter.doneSpeaking();
|
|
46593
46569
|
self2.api?.finished();
|
|
46594
46570
|
self2.delegate.emit("readaloud.finished", "finished");
|
|
@@ -46705,9 +46681,7 @@ var TTSModule2 = class {
|
|
|
46705
46681
|
}
|
|
46706
46682
|
}
|
|
46707
46683
|
stop() {
|
|
46708
|
-
|
|
46709
|
-
console.log("TTS module stop");
|
|
46710
|
-
}
|
|
46684
|
+
import_loglevel19.default.log("TTS module stop");
|
|
46711
46685
|
removeEventListenerOptional(document, "wheel", this.wheel.bind(this));
|
|
46712
46686
|
removeEventListenerOptional(this.body, "wheel", this.wheel.bind(this));
|
|
46713
46687
|
removeEventListenerOptional(document, "keydown", this.wheel.bind(this));
|
|
@@ -46865,8 +46839,7 @@ var TTSModule2 = class {
|
|
|
46865
46839
|
utterance.rate = this.tts.rate;
|
|
46866
46840
|
utterance.pitch = this.tts.pitch;
|
|
46867
46841
|
utterance.volume = this.tts.volume;
|
|
46868
|
-
|
|
46869
|
-
console.log("this.tts.voice.lang", this.tts.voice.lang);
|
|
46842
|
+
import_loglevel19.default.log("this.tts.voice.lang", this.tts.voice.lang);
|
|
46870
46843
|
var initialVoiceHasHyphen = true;
|
|
46871
46844
|
if (this.tts.voice && this.tts.voice.lang) {
|
|
46872
46845
|
initialVoiceHasHyphen = this.tts.voice.lang.indexOf("-") !== -1;
|
|
@@ -46875,10 +46848,8 @@ var TTSModule2 = class {
|
|
|
46875
46848
|
initialVoiceHasHyphen = true;
|
|
46876
46849
|
}
|
|
46877
46850
|
}
|
|
46878
|
-
|
|
46879
|
-
|
|
46880
|
-
if (IS_DEV)
|
|
46881
|
-
console.log("voices", this.voices);
|
|
46851
|
+
import_loglevel19.default.log("initialVoiceHasHyphen", initialVoiceHasHyphen);
|
|
46852
|
+
import_loglevel19.default.log("voices", this.voices);
|
|
46882
46853
|
var initialVoice;
|
|
46883
46854
|
if (initialVoiceHasHyphen === true) {
|
|
46884
46855
|
initialVoice = this.tts.voice && this.tts.voice.lang && this.tts.voice.name ? this.voices.filter((v) => {
|
|
@@ -46896,12 +46867,10 @@ var TTSModule2 = class {
|
|
|
46896
46867
|
initialVoice = this.tts.voice && this.tts.voice.lang ? this.voices.filter((v) => v.lang === this.tts.voice.lang)[0] : void 0;
|
|
46897
46868
|
}
|
|
46898
46869
|
}
|
|
46899
|
-
|
|
46900
|
-
console.log("initialVoice", initialVoice);
|
|
46870
|
+
import_loglevel19.default.log("initialVoice", initialVoice);
|
|
46901
46871
|
var self2 = this;
|
|
46902
46872
|
var publicationVoiceHasHyphen = self2.delegate.publication.Metadata.Language[0].indexOf("-") !== -1;
|
|
46903
|
-
|
|
46904
|
-
console.log("publicationVoiceHasHyphen", publicationVoiceHasHyphen);
|
|
46873
|
+
import_loglevel19.default.log("publicationVoiceHasHyphen", publicationVoiceHasHyphen);
|
|
46905
46874
|
var publicationVoice;
|
|
46906
46875
|
if (publicationVoiceHasHyphen === true) {
|
|
46907
46876
|
publicationVoice = this.tts.voice && this.tts.voice.usePublication ? this.voices.filter((v) => {
|
|
@@ -46913,11 +46882,9 @@ var TTSModule2 = class {
|
|
|
46913
46882
|
return v.lang.startsWith(self2.delegate.publication.Metadata.Language[0]) || v.lang.endsWith(self2.delegate.publication.Metadata.Language[0].toUpperCase());
|
|
46914
46883
|
})[0] : void 0;
|
|
46915
46884
|
}
|
|
46916
|
-
|
|
46917
|
-
console.log("publicationVoice", publicationVoice);
|
|
46885
|
+
import_loglevel19.default.log("publicationVoice", publicationVoice);
|
|
46918
46886
|
var defaultVoiceHasHyphen = navigator.language.indexOf("-") !== -1;
|
|
46919
|
-
|
|
46920
|
-
console.log("defaultVoiceHasHyphen", defaultVoiceHasHyphen);
|
|
46887
|
+
import_loglevel19.default.log("defaultVoiceHasHyphen", defaultVoiceHasHyphen);
|
|
46921
46888
|
var defaultVoice;
|
|
46922
46889
|
if (defaultVoiceHasHyphen === true) {
|
|
46923
46890
|
defaultVoice = this.voices.filter((voice) => {
|
|
@@ -46936,32 +46903,25 @@ var TTSModule2 = class {
|
|
|
46936
46903
|
return lang.includes(navigator.language) && voice.localService === true;
|
|
46937
46904
|
})[0];
|
|
46938
46905
|
}
|
|
46939
|
-
|
|
46940
|
-
console.log("defaultVoice", defaultVoice);
|
|
46906
|
+
import_loglevel19.default.log("defaultVoice", defaultVoice);
|
|
46941
46907
|
if (initialVoice) {
|
|
46942
|
-
|
|
46943
|
-
console.log("initialVoice");
|
|
46908
|
+
import_loglevel19.default.log("initialVoice");
|
|
46944
46909
|
utterance.voice = initialVoice;
|
|
46945
46910
|
} else if (publicationVoice) {
|
|
46946
|
-
|
|
46947
|
-
console.log("publicationVoice");
|
|
46911
|
+
import_loglevel19.default.log("publicationVoice");
|
|
46948
46912
|
utterance.voice = publicationVoice;
|
|
46949
46913
|
} else if (defaultVoice) {
|
|
46950
|
-
|
|
46951
|
-
console.log("defaultVoice");
|
|
46914
|
+
import_loglevel19.default.log("defaultVoice");
|
|
46952
46915
|
utterance.voice = defaultVoice;
|
|
46953
46916
|
}
|
|
46954
46917
|
if (utterance.voice !== void 0 && utterance.voice !== null) {
|
|
46955
46918
|
utterance.lang = utterance.voice.lang;
|
|
46956
|
-
|
|
46957
|
-
|
|
46958
|
-
if (IS_DEV)
|
|
46959
|
-
console.log("utterance.lang", utterance.lang);
|
|
46919
|
+
import_loglevel19.default.log("utterance.voice.lang", utterance.voice.lang);
|
|
46920
|
+
import_loglevel19.default.log("utterance.lang", utterance.lang);
|
|
46960
46921
|
}
|
|
46961
|
-
|
|
46962
|
-
console.log("navigator.language", navigator.language);
|
|
46922
|
+
import_loglevel19.default.log("navigator.language", navigator.language);
|
|
46963
46923
|
utterance.onboundary = (ev) => {
|
|
46964
|
-
|
|
46924
|
+
import_loglevel19.default.log(ev.name);
|
|
46965
46925
|
this.updateTTSInfo(ttsQueueItem, ev.charIndex, ev.charLength, utterance.text);
|
|
46966
46926
|
};
|
|
46967
46927
|
setTimeout(() => {
|
|
@@ -46980,6 +46940,7 @@ var TTSModule2 = class {
|
|
|
46980
46940
|
if (!ttsQueueItem) {
|
|
46981
46941
|
return void 0;
|
|
46982
46942
|
}
|
|
46943
|
+
import_loglevel19.default.log(ttsQueueItem, charIndex, charLength, utteranceText);
|
|
46983
46944
|
const ttsQueueItemText = utteranceText ? utteranceText : getTtsQueueItemRefText(ttsQueueItem);
|
|
46984
46945
|
if (charIndex >= 0 && utteranceText) {
|
|
46985
46946
|
const start = utteranceText.slice(0, charIndex + 1).search(/\S+$/);
|
|
@@ -46998,6 +46959,9 @@ var TTSModule2 = class {
|
|
|
46998
46959
|
return ttsQueueItemText;
|
|
46999
46960
|
}
|
|
47000
46961
|
wrapHighlightWord(ttsQueueItemRef, utteranceText, charIndex, charLength, word, start, end) {
|
|
46962
|
+
import_loglevel19.default.log(ttsQueueItemRef);
|
|
46963
|
+
import_loglevel19.default.log(utteranceText);
|
|
46964
|
+
import_loglevel19.default.log(charIndex, charLength, word, start, end);
|
|
47001
46965
|
if (this._ttsQueueItemHighlightsWord) {
|
|
47002
46966
|
this.delegate.highlighter?.destroyHighlights(HighlightType.ReadAloud);
|
|
47003
46967
|
this._ttsQueueItemHighlightsWord = void 0;
|
|
@@ -47005,14 +46969,12 @@ var TTSModule2 = class {
|
|
|
47005
46969
|
const ttsQueueItem = ttsQueueItemRef.item;
|
|
47006
46970
|
let txtToCheck = ttsQueueItemRef.item.combinedText;
|
|
47007
46971
|
let charIndexAdjusted = charIndex;
|
|
47008
|
-
if (
|
|
47009
|
-
|
|
47010
|
-
|
|
47011
|
-
|
|
47012
|
-
|
|
47013
|
-
|
|
47014
|
-
console.log("TTS word DIFF?? ", `[[${ttsWord}]]`, `[[${word}]]`, `${charIndex}--${charLength}`, `${start}--${end - start}`);
|
|
47015
|
-
}
|
|
46972
|
+
if (utteranceText !== txtToCheck) {
|
|
46973
|
+
import_loglevel19.default.log("TTS utteranceText DIFF?? ", `[[${utteranceText}]]`, `[[${txtToCheck}]]`);
|
|
46974
|
+
}
|
|
46975
|
+
const ttsWord = utteranceText.substr(charIndex, charLength);
|
|
46976
|
+
if (ttsWord !== word) {
|
|
46977
|
+
import_loglevel19.default.log("TTS word DIFF?? ", `[[${ttsWord}]]`, `[[${word}]]`, `${charIndex}--${charLength}`, `${start}--${end - start}`);
|
|
47016
46978
|
}
|
|
47017
46979
|
let acc = 0;
|
|
47018
46980
|
let rangeStartNode;
|
|
@@ -47050,8 +47012,8 @@ var TTSModule2 = class {
|
|
|
47050
47012
|
return "";
|
|
47051
47013
|
}
|
|
47052
47014
|
} catch (err) {
|
|
47053
|
-
|
|
47054
|
-
|
|
47015
|
+
import_loglevel19.default.log("uniqueCssSelector:");
|
|
47016
|
+
import_loglevel19.default.error(err);
|
|
47055
47017
|
return "";
|
|
47056
47018
|
}
|
|
47057
47019
|
};
|
|
@@ -47158,6 +47120,7 @@ function getTtsQueueItemRefText(obj) {
|
|
|
47158
47120
|
init_polyfills();
|
|
47159
47121
|
var lodash3 = __toModule(require_lodash());
|
|
47160
47122
|
var import_debounce7 = __toModule(require_debounce());
|
|
47123
|
+
var import_loglevel20 = __toModule(require_loglevel());
|
|
47161
47124
|
var DefinitionsModule = class {
|
|
47162
47125
|
constructor(delegate, publication, properties, highlighter, api) {
|
|
47163
47126
|
this.currentChapterPopupResult = [];
|
|
@@ -47182,9 +47145,7 @@ var DefinitionsModule = class {
|
|
|
47182
47145
|
return search;
|
|
47183
47146
|
}
|
|
47184
47147
|
async stop() {
|
|
47185
|
-
|
|
47186
|
-
console.log("Definitions module stop");
|
|
47187
|
-
}
|
|
47148
|
+
import_loglevel20.default.log("Definitions module stop");
|
|
47188
47149
|
}
|
|
47189
47150
|
async start() {
|
|
47190
47151
|
this.delegate.definitionsModule = this;
|
|
@@ -47306,6 +47267,7 @@ var DefinitionsModule = class {
|
|
|
47306
47267
|
|
|
47307
47268
|
// src/modules/linefocus/LineFocusModule.ts
|
|
47308
47269
|
init_polyfills();
|
|
47270
|
+
var import_loglevel21 = __toModule(require_loglevel());
|
|
47309
47271
|
var DEFAULT_BACKGROUND_COLOR_OPACITY2 = 0.5;
|
|
47310
47272
|
var LineFocusModule = class {
|
|
47311
47273
|
constructor(delegate, properties, highlighter, api) {
|
|
@@ -47330,9 +47292,7 @@ var LineFocusModule = class {
|
|
|
47330
47292
|
return search;
|
|
47331
47293
|
}
|
|
47332
47294
|
async stop() {
|
|
47333
|
-
|
|
47334
|
-
console.log("Definitions module stop");
|
|
47335
|
-
}
|
|
47295
|
+
import_loglevel21.default.log("Definitions module stop");
|
|
47336
47296
|
this.hasEventListener = false;
|
|
47337
47297
|
removeEventListenerOptional(document, "keydown", this.keydown.bind(this));
|
|
47338
47298
|
removeEventListenerOptional(document, "keyup", this.keyup.bind(this));
|
|
@@ -47727,11 +47687,9 @@ var LineFocusModule = class {
|
|
|
47727
47687
|
range.detach();
|
|
47728
47688
|
return rect;
|
|
47729
47689
|
} catch (error) {
|
|
47730
|
-
|
|
47731
|
-
|
|
47732
|
-
|
|
47733
|
-
console.log(node.textContent);
|
|
47734
|
-
}
|
|
47690
|
+
import_loglevel21.default.log("measureTextNode " + error);
|
|
47691
|
+
import_loglevel21.default.log("measureTextNode " + node);
|
|
47692
|
+
import_loglevel21.default.log(`${node.textContent}`);
|
|
47735
47693
|
}
|
|
47736
47694
|
}
|
|
47737
47695
|
measureImageNodes(node) {
|
|
@@ -47742,17 +47700,16 @@ var LineFocusModule = class {
|
|
|
47742
47700
|
range.detach();
|
|
47743
47701
|
return rect;
|
|
47744
47702
|
} catch (error) {
|
|
47745
|
-
|
|
47746
|
-
|
|
47747
|
-
|
|
47748
|
-
console.log(node.textContent);
|
|
47749
|
-
}
|
|
47703
|
+
import_loglevel21.default.log("measureTextNode " + error);
|
|
47704
|
+
import_loglevel21.default.log("measureTextNode " + node);
|
|
47705
|
+
import_loglevel21.default.log(`${node.textContent}`);
|
|
47750
47706
|
}
|
|
47751
47707
|
}
|
|
47752
47708
|
};
|
|
47753
47709
|
|
|
47754
47710
|
// src/modules/history/HistoryModule.ts
|
|
47755
47711
|
init_polyfills();
|
|
47712
|
+
var import_loglevel22 = __toModule(require_loglevel());
|
|
47756
47713
|
var HistoryModule = class {
|
|
47757
47714
|
constructor(annotator, delegate, publication, properties, headerMenu) {
|
|
47758
47715
|
this.history = [];
|
|
@@ -47768,9 +47725,7 @@ var HistoryModule = class {
|
|
|
47768
47725
|
return pageBreak;
|
|
47769
47726
|
}
|
|
47770
47727
|
async stop() {
|
|
47771
|
-
|
|
47772
|
-
console.log("Page Break module stop");
|
|
47773
|
-
}
|
|
47728
|
+
import_loglevel22.default.log("Page Break module stop");
|
|
47774
47729
|
removeEventListenerOptional(this.historyForwardAnchorElement, "click", this.handleHistoryForwardClick.bind(this));
|
|
47775
47730
|
removeEventListenerOptional(this.historyBackAnchorElement, "click", this.handleHistoryBackClick.bind(this));
|
|
47776
47731
|
}
|
|
@@ -47808,10 +47763,8 @@ var HistoryModule = class {
|
|
|
47808
47763
|
lastInHistory = this.history[this.history.length - 1];
|
|
47809
47764
|
if (lastInHistory && lastInHistory.href !== lastReadingPosition.href || lastInHistory === void 0) {
|
|
47810
47765
|
const linkHref = this.publication.getAbsoluteHref(lastReadingPosition.href);
|
|
47811
|
-
|
|
47812
|
-
|
|
47813
|
-
if (IS_DEV)
|
|
47814
|
-
console.log(linkHref);
|
|
47766
|
+
import_loglevel22.default.log(lastReadingPosition.href);
|
|
47767
|
+
import_loglevel22.default.log(linkHref);
|
|
47815
47768
|
lastReadingPosition.href = linkHref;
|
|
47816
47769
|
this.history.push(lastReadingPosition);
|
|
47817
47770
|
this.historyCurrentIndex = this.history.length - 1;
|
|
@@ -47861,6 +47814,7 @@ var HistoryModule = class {
|
|
|
47861
47814
|
|
|
47862
47815
|
// src/modules/citation/CitationModule.ts
|
|
47863
47816
|
init_polyfills();
|
|
47817
|
+
var import_loglevel23 = __toModule(require_loglevel());
|
|
47864
47818
|
var CitationStyle;
|
|
47865
47819
|
(function(CitationStyle2) {
|
|
47866
47820
|
CitationStyle2[CitationStyle2["Chicago"] = 0] = "Chicago";
|
|
@@ -47887,9 +47841,7 @@ var CitationModule = class {
|
|
|
47887
47841
|
return module;
|
|
47888
47842
|
}
|
|
47889
47843
|
async stop() {
|
|
47890
|
-
|
|
47891
|
-
console.log("Timeline module stop");
|
|
47892
|
-
}
|
|
47844
|
+
import_loglevel23.default.log("Timeline module stop");
|
|
47893
47845
|
}
|
|
47894
47846
|
copyToClipboard(textToClipboard) {
|
|
47895
47847
|
let success = true;
|
|
@@ -48404,8 +48356,7 @@ var D2Reader = class {
|
|
|
48404
48356
|
headerMenu,
|
|
48405
48357
|
delegate: navigator2,
|
|
48406
48358
|
publication,
|
|
48407
|
-
highlighter
|
|
48408
|
-
requestConfig: initialConfig.requestConfig
|
|
48359
|
+
highlighter
|
|
48409
48360
|
}, initialConfig.search)) : void 0;
|
|
48410
48361
|
const definitionsModule = rights.enableDefinitions ? await DefinitionsModule.create(__spreadValues({
|
|
48411
48362
|
delegate: navigator2,
|