71b97c2019
* Move setupNestedPopups to Display * Move auto-play timer and delay into Display * Move some message handler definitions into Display * Move default optionsContext definition
1049 lines
35 KiB
JavaScript
1049 lines
35 KiB
JavaScript
/*
|
|
* Copyright (C) 2017-2020 Yomichan Authors
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* global
|
|
* AudioSystem
|
|
* DOM
|
|
* DisplayContext
|
|
* DisplayGenerator
|
|
* Frontend
|
|
* MediaLoader
|
|
* PopupFactory
|
|
* WindowScroll
|
|
* api
|
|
* docRangeFromPoint
|
|
* docSentenceExtract
|
|
* dynamicLoader
|
|
*/
|
|
|
|
class Display {
|
|
constructor(spinner, container) {
|
|
this._spinner = spinner;
|
|
this._container = container;
|
|
this._definitions = [];
|
|
this._optionsContext = {depth: 0, url: window.location.href};
|
|
this._options = null;
|
|
this._context = null;
|
|
this._index = 0;
|
|
this._audioPlaying = null;
|
|
this._audioFallback = null;
|
|
this._audioSystem = new AudioSystem({
|
|
audioUriBuilder: {
|
|
getUri: async (definition, source, details) => {
|
|
return await api.audioGetUri(definition, source, details);
|
|
}
|
|
},
|
|
useCache: true
|
|
});
|
|
this._styleNode = null;
|
|
this._eventListeners = new EventListenerCollection();
|
|
this._persistentEventListeners = new EventListenerCollection();
|
|
this._interactive = false;
|
|
this._eventListenersActive = false;
|
|
this._clickScanPrevent = false;
|
|
this._setContentToken = null;
|
|
this._autoPlayAudioTimer = null;
|
|
this._autoPlayAudioDelay = 0;
|
|
this._mediaLoader = new MediaLoader();
|
|
this._displayGenerator = new DisplayGenerator({mediaLoader: this._mediaLoader});
|
|
this._windowScroll = new WindowScroll();
|
|
this._hotkeys = new Map();
|
|
this._actions = new Map();
|
|
this._messageHandlers = new Map();
|
|
|
|
this.registerActions([
|
|
['close', () => { this.onEscape(); }],
|
|
['next-entry', () => { this._entryScrollIntoView(this._index + 1, null, true); }],
|
|
['next-entry-x3', () => { this._entryScrollIntoView(this._index + 3, null, true); }],
|
|
['previous-entry', () => { this._entryScrollIntoView(this._index - 1, null, true); }],
|
|
['previous-entry-x3', () => { this._entryScrollIntoView(this._index - 3, null, true); }],
|
|
['last-entry', () => { this._entryScrollIntoView(this._definitions.length - 1, null, true); }],
|
|
['first-entry', () => { this._entryScrollIntoView(0, null, true); }],
|
|
['history-backward', () => { this._sourceTermView(); }],
|
|
['history-forward', () => { this._nextTermView(); }],
|
|
['add-note-kanji', () => { this._noteTryAdd('kanji'); }],
|
|
['add-note-term-kanji', () => { this._noteTryAdd('term-kanji'); }],
|
|
['add-note-term-kana', () => { this._noteTryAdd('term-kana'); }],
|
|
['view-note', () => { this._noteTryView(); }],
|
|
['play-audio', () => { this._playAudioCurrent(); }]
|
|
]);
|
|
this.registerHotkeys([
|
|
{key: 'Escape', modifiers: [], action: 'close'},
|
|
{key: 'PageUp', modifiers: ['alt'], action: 'previous-entry-x3'},
|
|
{key: 'PageDown', modifiers: ['alt'], action: 'next-entry-x3'},
|
|
{key: 'End', modifiers: ['alt'], action: 'last-entry'},
|
|
{key: 'Home', modifiers: ['alt'], action: 'first-entry'},
|
|
{key: 'ArrowUp', modifiers: ['alt'], action: 'previous-entry'},
|
|
{key: 'ArrowDown', modifiers: ['alt'], action: 'next-entry'},
|
|
{key: 'B', modifiers: ['alt'], action: 'history-backward'},
|
|
{key: 'F', modifiers: ['alt'], action: 'history-forward'},
|
|
{key: 'K', modifiers: ['alt'], action: 'add-note-kanji'},
|
|
{key: 'E', modifiers: ['alt'], action: 'add-note-term-kanji'},
|
|
{key: 'R', modifiers: ['alt'], action: 'add-note-term-kana'},
|
|
{key: 'P', modifiers: ['alt'], action: 'play-audio'},
|
|
{key: 'V', modifiers: ['alt'], action: 'view-note'}
|
|
]);
|
|
this.registerMessageHandlers([
|
|
['setOptionsContext', {async: false, handler: this._onMessageSetOptionsContext.bind(this)}],
|
|
['setContent', {async: false, handler: this._onMessageSetContent.bind(this)}],
|
|
['clearAutoPlayTimer', {async: false, handler: this._onMessageClearAutoPlayTimer.bind(this)}],
|
|
['setCustomCss', {async: false, handler: this._onMessageSetCustomCss.bind(this)}]
|
|
]);
|
|
}
|
|
|
|
get autoPlayAudioDelay() {
|
|
return this._autoPlayAudioDelay;
|
|
}
|
|
|
|
set autoPlayAudioDelay(value) {
|
|
this._autoPlayAudioDelay = value;
|
|
}
|
|
|
|
async prepare() {
|
|
this._setInteractive(true);
|
|
await this._displayGenerator.prepare();
|
|
yomichan.on('extensionUnloaded', this._onExtensionUnloaded.bind(this));
|
|
api.crossFrame.registerHandlers([
|
|
['popupMessage', {async: 'dynamic', handler: this._onMessage.bind(this)}]
|
|
]);
|
|
}
|
|
|
|
onError(error) {
|
|
if (yomichan.isExtensionUnloaded) { return; }
|
|
yomichan.logError(error);
|
|
}
|
|
|
|
onEscape() {
|
|
throw new Error('Override me');
|
|
}
|
|
|
|
onKeyDown(e) {
|
|
const key = DOM.getKeyFromEvent(e);
|
|
const handlers = this._hotkeys.get(key);
|
|
if (typeof handlers === 'undefined') { return false; }
|
|
|
|
const eventModifiers = DOM.getActiveModifiers(e);
|
|
for (const {modifiers, action} of handlers) {
|
|
if (getSetDifference(modifiers, eventModifiers).size !== 0) { continue; }
|
|
|
|
const actionHandler = this._actions.get(action);
|
|
if (typeof actionHandler === 'undefined') { continue; }
|
|
|
|
const result = actionHandler(e);
|
|
if (result !== false) {
|
|
e.preventDefault();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
getOptions() {
|
|
return this._options;
|
|
}
|
|
|
|
getOptionsContext() {
|
|
return this._optionsContext;
|
|
}
|
|
|
|
setOptionsContext(optionsContext) {
|
|
this._optionsContext = optionsContext;
|
|
}
|
|
|
|
async updateOptions() {
|
|
this._options = await api.optionsGet(this.getOptionsContext());
|
|
this._updateDocumentOptions(this._options);
|
|
this._updateTheme(this._options.general.popupTheme);
|
|
this.setCustomCss(this._options.general.customPopupCss);
|
|
}
|
|
|
|
addMultipleEventListeners(selector, type, listener, options) {
|
|
for (const node of this._container.querySelectorAll(selector)) {
|
|
this._eventListeners.addEventListener(node, type, listener, options);
|
|
}
|
|
}
|
|
|
|
autoPlayAudio() {
|
|
this.clearAutoPlayTimer();
|
|
|
|
if (this._definitions.length === 0) { return; }
|
|
|
|
const definition = this._definitions[0];
|
|
const expressionIndex = this._getFirstExpressionIndex();
|
|
const callback = () => {
|
|
this._audioPlay(definition, expressionIndex, 0);
|
|
};
|
|
|
|
if (this._autoPlayAudioDelay > 0) {
|
|
this._autoPlayAudioTimer = setTimeout(callback, this._autoPlayAudioDelay);
|
|
} else {
|
|
callback();
|
|
}
|
|
}
|
|
|
|
clearAutoPlayTimer() {
|
|
if (this._autoPlayAudioTimer !== null) {
|
|
clearTimeout(this._autoPlayAudioTimer);
|
|
this._autoPlayAudioTimer = null;
|
|
}
|
|
}
|
|
|
|
async setContent(type, details) {
|
|
const token = {}; // Unique identifier token
|
|
this._setContentToken = token;
|
|
try {
|
|
this._mediaLoader.unloadAll();
|
|
|
|
switch (type) {
|
|
case 'terms':
|
|
await this._setContentTerms(details.definitions, details.context, token);
|
|
break;
|
|
case 'kanji':
|
|
await this._setContentKanji(details.definitions, details.context, token);
|
|
break;
|
|
}
|
|
} catch (e) {
|
|
this.onError(e);
|
|
} finally {
|
|
if (this._setContentToken === token) {
|
|
this._setContentToken = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
clearContent() {
|
|
this._container.textContent = '';
|
|
}
|
|
|
|
setCustomCss(css) {
|
|
if (this._styleNode === null) {
|
|
if (css.length === 0) { return; }
|
|
this._styleNode = document.createElement('style');
|
|
}
|
|
|
|
this._styleNode.textContent = css;
|
|
|
|
const parent = document.head;
|
|
if (this._styleNode.parentNode !== parent) {
|
|
parent.appendChild(this._styleNode);
|
|
}
|
|
}
|
|
|
|
async getDocumentTitle() {
|
|
return document.title;
|
|
}
|
|
|
|
setSpinnerVisible(visible) {
|
|
if (this._spinner !== null) {
|
|
this._spinner.hidden = !visible;
|
|
}
|
|
}
|
|
|
|
registerActions(actions) {
|
|
for (const [name, handler] of actions) {
|
|
this._actions.set(name, handler);
|
|
}
|
|
}
|
|
|
|
registerHotkeys(hotkeys) {
|
|
for (const {key, modifiers, action} of hotkeys) {
|
|
let handlers = this._hotkeys.get(key);
|
|
if (typeof handlers === 'undefined') {
|
|
handlers = [];
|
|
this._hotkeys.set(key, handlers);
|
|
}
|
|
handlers.push({modifiers: new Set(modifiers), action});
|
|
}
|
|
}
|
|
|
|
registerMessageHandlers(handlers) {
|
|
for (const [name, handlerInfo] of handlers) {
|
|
this._messageHandlers.set(name, handlerInfo);
|
|
}
|
|
}
|
|
|
|
async setupNestedPopups(frontendInitializationData) {
|
|
await dynamicLoader.loadScripts([
|
|
'/mixed/js/text-scanner.js',
|
|
'/mixed/js/frame-client.js',
|
|
'/fg/js/popup.js',
|
|
'/fg/js/popup-proxy.js',
|
|
'/fg/js/popup-factory.js',
|
|
'/fg/js/frame-offset-forwarder.js',
|
|
'/fg/js/frontend.js'
|
|
]);
|
|
|
|
const {frameId} = await api.frameInformationGet();
|
|
|
|
const popupFactory = new PopupFactory(frameId);
|
|
popupFactory.prepare();
|
|
|
|
const frontend = new Frontend(frameId, popupFactory, frontendInitializationData);
|
|
await frontend.prepare();
|
|
}
|
|
|
|
authenticateMessageData(data) {
|
|
return data;
|
|
}
|
|
|
|
// Message handlers
|
|
|
|
_onMessage(data) {
|
|
data = this.authenticateMessageData(data);
|
|
const {action, params} = data;
|
|
const handlerInfo = this._messageHandlers.get(action);
|
|
if (typeof handlerInfo === 'undefined') {
|
|
throw new Error(`Invalid action: ${action}`);
|
|
}
|
|
|
|
const {async, handler} = handlerInfo;
|
|
const result = handler(params);
|
|
return {async, result};
|
|
}
|
|
|
|
_onMessageSetOptionsContext({optionsContext}) {
|
|
this.setOptionsContext(optionsContext);
|
|
}
|
|
|
|
_onMessageSetContent({type, details}) {
|
|
this.setContent(type, details);
|
|
}
|
|
|
|
_onMessageClearAutoPlayTimer() {
|
|
this.clearAutoPlayTimer();
|
|
}
|
|
|
|
_onMessageSetCustomCss({css}) {
|
|
this.setCustomCss(css);
|
|
}
|
|
|
|
// Private
|
|
|
|
_onExtensionUnloaded() {
|
|
this._setContentExtensionUnloaded();
|
|
}
|
|
|
|
_onSourceTermView(e) {
|
|
e.preventDefault();
|
|
this._sourceTermView();
|
|
}
|
|
|
|
_onNextTermView(e) {
|
|
e.preventDefault();
|
|
this._nextTermView();
|
|
}
|
|
|
|
async _onKanjiLookup(e) {
|
|
try {
|
|
e.preventDefault();
|
|
if (!this._context) { return; }
|
|
|
|
const link = e.target;
|
|
this._context.update({
|
|
index: this._entryIndexFind(link),
|
|
scroll: this._windowScroll.y
|
|
});
|
|
const context = {
|
|
sentence: this._context.get('sentence'),
|
|
url: this._context.get('url')
|
|
};
|
|
|
|
const definitions = await api.kanjiFind(link.textContent, this.getOptionsContext());
|
|
this.setContent('kanji', {definitions, context});
|
|
} catch (error) {
|
|
this.onError(error);
|
|
}
|
|
}
|
|
|
|
_onGlossaryMouseDown(e) {
|
|
if (DOM.isMouseButtonPressed(e, 'primary')) {
|
|
this._clickScanPrevent = false;
|
|
}
|
|
}
|
|
|
|
_onGlossaryMouseMove() {
|
|
this._clickScanPrevent = true;
|
|
}
|
|
|
|
_onGlossaryMouseUp(e) {
|
|
if (!this._clickScanPrevent && DOM.isMouseButtonPressed(e, 'primary')) {
|
|
this._onTermLookup(e);
|
|
}
|
|
}
|
|
|
|
async _onTermLookup(e, {disableScroll, selectText, disableHistory}={}) {
|
|
try {
|
|
if (!this._context) { return; }
|
|
|
|
const termLookupResults = await this._termLookup(e);
|
|
if (!termLookupResults) { return; }
|
|
const {textSource, definitions} = termLookupResults;
|
|
|
|
const scannedElement = e.target;
|
|
const sentenceExtent = this._options.anki.sentenceExt;
|
|
const layoutAwareScan = this._options.scanning.layoutAwareScan;
|
|
const sentence = docSentenceExtract(textSource, sentenceExtent, layoutAwareScan);
|
|
|
|
this._context.update({
|
|
index: this._entryIndexFind(scannedElement),
|
|
scroll: this._windowScroll.y
|
|
});
|
|
const context = {
|
|
disableScroll,
|
|
disableHistory,
|
|
sentence,
|
|
url: this._context.get('url')
|
|
};
|
|
if (disableHistory) {
|
|
Object.assign(context, {
|
|
previous: this._context.previous,
|
|
next: this._context.next
|
|
});
|
|
} else {
|
|
Object.assign(context, {
|
|
previous: this._context
|
|
});
|
|
}
|
|
|
|
this.setContent('terms', {definitions, context});
|
|
|
|
if (selectText) {
|
|
textSource.select();
|
|
}
|
|
} catch (error) {
|
|
this.onError(error);
|
|
}
|
|
}
|
|
|
|
async _termLookup(e) {
|
|
try {
|
|
e.preventDefault();
|
|
|
|
const {length: scanLength, deepDomScan: deepScan, layoutAwareScan} = this._options.scanning;
|
|
const textSource = docRangeFromPoint(e.clientX, e.clientY, deepScan);
|
|
if (textSource === null) {
|
|
return false;
|
|
}
|
|
|
|
let definitions, length;
|
|
try {
|
|
textSource.setEndOffset(scanLength, layoutAwareScan);
|
|
|
|
({definitions, length} = await api.termsFind(textSource.text(), {}, this.getOptionsContext()));
|
|
if (definitions.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
textSource.setEndOffset(length, layoutAwareScan);
|
|
} finally {
|
|
textSource.cleanup();
|
|
}
|
|
|
|
return {textSource, definitions};
|
|
} catch (error) {
|
|
this.onError(error);
|
|
}
|
|
}
|
|
|
|
_onAudioPlay(e) {
|
|
e.preventDefault();
|
|
const link = e.currentTarget;
|
|
const entry = link.closest('.entry');
|
|
const index = this._entryIndexFind(entry);
|
|
if (index < 0 || index >= this._definitions.length) { return; }
|
|
|
|
const expressionIndex = this._indexOf(entry.querySelectorAll('.term-expression .action-play-audio'), link);
|
|
this._audioPlay(
|
|
this._definitions[index],
|
|
// expressionIndex is used in audioPlay to detect result output mode
|
|
Math.max(expressionIndex, this._options.general.resultOutputMode === 'merge' ? 0 : -1),
|
|
index
|
|
);
|
|
}
|
|
|
|
_onNoteAdd(e) {
|
|
e.preventDefault();
|
|
const link = e.currentTarget;
|
|
const index = this._entryIndexFind(link);
|
|
if (index < 0 || index >= this._definitions.length) { return; }
|
|
|
|
this._noteAdd(this._definitions[index], link.dataset.mode);
|
|
}
|
|
|
|
_onNoteView(e) {
|
|
e.preventDefault();
|
|
const link = e.currentTarget;
|
|
api.noteView(link.dataset.noteId);
|
|
}
|
|
|
|
_onWheel(e) {
|
|
if (e.altKey) {
|
|
if (e.deltaY !== 0) {
|
|
this._entryScrollIntoView(this._index + (e.deltaY > 0 ? 1 : -1), null, true);
|
|
e.preventDefault();
|
|
}
|
|
} else if (e.shiftKey) {
|
|
this._onHistoryWheel(e);
|
|
}
|
|
}
|
|
|
|
_onHistoryWheel(e) {
|
|
if (e.altKey) { return; }
|
|
const delta = -e.deltaX || e.deltaY;
|
|
if (delta > 0) {
|
|
this._sourceTermView();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
} else if (delta < 0) {
|
|
this._nextTermView();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}
|
|
}
|
|
|
|
_updateDocumentOptions(options) {
|
|
const data = document.documentElement.dataset;
|
|
data.ankiEnabled = `${options.anki.enable}`;
|
|
data.audioEnabled = `${options.audio.enabled}`;
|
|
data.compactGlossaries = `${options.general.compactGlossaries}`;
|
|
data.enableSearchTags = `${options.scanning.enableSearchTags}`;
|
|
data.showPitchAccentDownstepNotation = `${options.general.showPitchAccentDownstepNotation}`;
|
|
data.showPitchAccentPositionNotation = `${options.general.showPitchAccentPositionNotation}`;
|
|
data.showPitchAccentGraph = `${options.general.showPitchAccentGraph}`;
|
|
data.debug = `${options.general.debugInfo}`;
|
|
}
|
|
|
|
_updateTheme(themeName) {
|
|
document.documentElement.dataset.yomichanTheme = themeName;
|
|
}
|
|
|
|
_setInteractive(interactive) {
|
|
interactive = !!interactive;
|
|
if (this._interactive === interactive) { return; }
|
|
this._interactive = interactive;
|
|
|
|
if (interactive) {
|
|
const actionPrevious = document.querySelector('.action-previous');
|
|
const actionNext = document.querySelector('.action-next');
|
|
// const navigationHeader = document.querySelector('.navigation-header');
|
|
|
|
this._persistentEventListeners.addEventListener(document, 'keydown', this.onKeyDown.bind(this), false);
|
|
this._persistentEventListeners.addEventListener(document, 'wheel', this._onWheel.bind(this), {passive: false});
|
|
if (actionPrevious !== null) {
|
|
this._persistentEventListeners.addEventListener(actionPrevious, 'click', this._onSourceTermView.bind(this));
|
|
}
|
|
if (actionNext !== null) {
|
|
this._persistentEventListeners.addEventListener(actionNext, 'click', this._onNextTermView.bind(this));
|
|
}
|
|
// temporarily disabled
|
|
// if (navigationHeader !== null) {
|
|
// this.persistentEventListeners.addEventListener(navigationHeader, 'wheel', this.onHistoryWheel.bind(this), {passive: false});
|
|
// }
|
|
} else {
|
|
this._persistentEventListeners.removeAllEventListeners();
|
|
}
|
|
this._setEventListenersActive(this._eventListenersActive);
|
|
}
|
|
|
|
_setEventListenersActive(active) {
|
|
active = !!active && this._interactive;
|
|
if (this._eventListenersActive === active) { return; }
|
|
this._eventListenersActive = active;
|
|
|
|
if (active) {
|
|
this.addMultipleEventListeners('.action-add-note', 'click', this._onNoteAdd.bind(this));
|
|
this.addMultipleEventListeners('.action-view-note', 'click', this._onNoteView.bind(this));
|
|
this.addMultipleEventListeners('.action-play-audio', 'click', this._onAudioPlay.bind(this));
|
|
this.addMultipleEventListeners('.kanji-link', 'click', this._onKanjiLookup.bind(this));
|
|
if (this._options.scanning.enablePopupSearch) {
|
|
this.addMultipleEventListeners('.term-glossary-item, .tag', 'mouseup', this._onGlossaryMouseUp.bind(this));
|
|
this.addMultipleEventListeners('.term-glossary-item, .tag', 'mousedown', this._onGlossaryMouseDown.bind(this));
|
|
this.addMultipleEventListeners('.term-glossary-item, .tag', 'mousemove', this._onGlossaryMouseMove.bind(this));
|
|
}
|
|
} else {
|
|
this._eventListeners.removeAllEventListeners();
|
|
}
|
|
}
|
|
|
|
async _setContentTerms(definitions, context, token) {
|
|
if (!context) { throw new Error('Context expected'); }
|
|
|
|
this._setEventListenersActive(false);
|
|
|
|
if (context.focus !== false) {
|
|
window.focus();
|
|
}
|
|
|
|
this._definitions = definitions;
|
|
if (context.disableHistory) {
|
|
delete context.disableHistory;
|
|
this._context = new DisplayContext('terms', definitions, context);
|
|
} else {
|
|
this._context = DisplayContext.push(this._context, 'terms', definitions, context);
|
|
}
|
|
|
|
for (const definition of definitions) {
|
|
definition.cloze = this._clozeBuild(context.sentence, definition.source);
|
|
definition.url = context.url;
|
|
}
|
|
|
|
this._updateNavigation(this._context.previous, this._context.next);
|
|
this._setNoContentVisible(definitions.length === 0);
|
|
|
|
const container = this._container;
|
|
container.textContent = '';
|
|
|
|
for (let i = 0, ii = definitions.length; i < ii; ++i) {
|
|
if (i > 0) {
|
|
await promiseTimeout(1);
|
|
if (this._setContentToken !== token) { return; }
|
|
}
|
|
|
|
const entry = this._displayGenerator.createTermEntry(definitions[i]);
|
|
container.appendChild(entry);
|
|
}
|
|
|
|
const {index, scroll, disableScroll} = context;
|
|
if (!disableScroll) {
|
|
this._entryScrollIntoView(index || 0, scroll);
|
|
} else {
|
|
delete context.disableScroll;
|
|
this._entrySetCurrent(index || 0);
|
|
}
|
|
|
|
if (this._options.audio.enabled && this._options.audio.autoPlay) {
|
|
this.autoPlayAudio();
|
|
}
|
|
|
|
this._setEventListenersActive(true);
|
|
|
|
const states = await this._getDefinitionsAddable(definitions, ['term-kanji', 'term-kana']);
|
|
if (this._setContentToken !== token) { return; }
|
|
|
|
this._updateAdderButtons(states);
|
|
}
|
|
|
|
async _setContentKanji(definitions, context, token) {
|
|
if (!context) { throw new Error('Context expected'); }
|
|
|
|
this._setEventListenersActive(false);
|
|
|
|
if (context.focus !== false) {
|
|
window.focus();
|
|
}
|
|
|
|
this._definitions = definitions;
|
|
if (context.disableHistory) {
|
|
delete context.disableHistory;
|
|
this._context = new DisplayContext('kanji', definitions, context);
|
|
} else {
|
|
this._context = DisplayContext.push(this._context, 'kanji', definitions, context);
|
|
}
|
|
|
|
for (const definition of definitions) {
|
|
definition.cloze = this._clozeBuild(context.sentence, definition.character);
|
|
definition.url = context.url;
|
|
}
|
|
|
|
this._updateNavigation(this._context.previous, this._context.next);
|
|
this._setNoContentVisible(definitions.length === 0);
|
|
|
|
const container = this._container;
|
|
container.textContent = '';
|
|
|
|
for (let i = 0, ii = definitions.length; i < ii; ++i) {
|
|
if (i > 0) {
|
|
await promiseTimeout(1);
|
|
if (this._setContentToken !== token) { return; }
|
|
}
|
|
|
|
const entry = this._displayGenerator.createKanjiEntry(definitions[i]);
|
|
container.appendChild(entry);
|
|
}
|
|
|
|
const {index, scroll} = context;
|
|
this._entryScrollIntoView(index || 0, scroll);
|
|
|
|
this._setEventListenersActive(true);
|
|
|
|
const states = await this._getDefinitionsAddable(definitions, ['kanji']);
|
|
if (this._setContentToken !== token) { return; }
|
|
|
|
this._updateAdderButtons(states);
|
|
}
|
|
|
|
_setContentExtensionUnloaded() {
|
|
const errorExtensionUnloaded = document.querySelector('#error-extension-unloaded');
|
|
|
|
if (this._container !== null) {
|
|
this._container.hidden = true;
|
|
}
|
|
|
|
if (errorExtensionUnloaded !== null) {
|
|
errorExtensionUnloaded.hidden = false;
|
|
}
|
|
|
|
this._updateNavigation(null, null);
|
|
this._setNoContentVisible(false);
|
|
}
|
|
|
|
_setNoContentVisible(visible) {
|
|
const noResults = document.querySelector('#no-results');
|
|
|
|
if (noResults !== null) {
|
|
noResults.hidden = !visible;
|
|
}
|
|
}
|
|
|
|
_updateNavigation(previous, next) {
|
|
const navigation = document.querySelector('#navigation-header');
|
|
if (navigation !== null) {
|
|
navigation.hidden = !(previous || next);
|
|
navigation.dataset.hasPrevious = `${!!previous}`;
|
|
navigation.dataset.hasNext = `${!!next}`;
|
|
}
|
|
}
|
|
|
|
_updateAdderButtons(states) {
|
|
for (let i = 0; i < states.length; ++i) {
|
|
let noteId = null;
|
|
for (const [mode, info] of Object.entries(states[i])) {
|
|
const button = this._adderButtonFind(i, mode);
|
|
if (button === null) {
|
|
continue;
|
|
}
|
|
|
|
if (!info.canAdd && noteId === null && info.noteId) {
|
|
noteId = info.noteId;
|
|
}
|
|
button.classList.toggle('disabled', !info.canAdd);
|
|
button.classList.remove('pending');
|
|
}
|
|
if (noteId !== null) {
|
|
this._viewerButtonShow(i, noteId);
|
|
}
|
|
}
|
|
}
|
|
|
|
_entrySetCurrent(index) {
|
|
index = Math.min(index, this._definitions.length - 1);
|
|
index = Math.max(index, 0);
|
|
|
|
const entryPre = this._getEntry(this._index);
|
|
if (entryPre !== null) {
|
|
entryPre.classList.remove('entry-current');
|
|
}
|
|
|
|
const entry = this._getEntry(index);
|
|
if (entry !== null) {
|
|
entry.classList.add('entry-current');
|
|
}
|
|
|
|
this._index = index;
|
|
|
|
return entry;
|
|
}
|
|
|
|
_entryScrollIntoView(index, scroll, smooth) {
|
|
this._windowScroll.stop();
|
|
|
|
const entry = this._entrySetCurrent(index);
|
|
let target;
|
|
if (scroll !== null) {
|
|
target = scroll;
|
|
} else {
|
|
target = this._index === 0 || entry === null ? 0 : this._getElementTop(entry);
|
|
|
|
const header = document.querySelector('#navigation-header');
|
|
if (header !== null) {
|
|
target -= header.getBoundingClientRect().height;
|
|
}
|
|
}
|
|
|
|
if (smooth) {
|
|
this._windowScroll.animate(this._windowScroll.x, target, 200);
|
|
} else {
|
|
this._windowScroll.toY(target);
|
|
}
|
|
}
|
|
|
|
_sourceTermView() {
|
|
if (!this._context || !this._context.previous) { return; }
|
|
this._context.update({
|
|
index: this._index,
|
|
scroll: this._windowScroll.y
|
|
});
|
|
const previousContext = this._context.previous;
|
|
previousContext.set('disableHistory', true);
|
|
const details = {
|
|
definitions: previousContext.definitions,
|
|
context: previousContext.context
|
|
};
|
|
this.setContent(previousContext.type, details);
|
|
}
|
|
|
|
_nextTermView() {
|
|
if (!this._context || !this._context.next) { return; }
|
|
this._context.update({
|
|
index: this._index,
|
|
scroll: this._windowScroll.y
|
|
});
|
|
const nextContext = this._context.next;
|
|
nextContext.set('disableHistory', true);
|
|
const details = {
|
|
definitions: nextContext.definitions,
|
|
context: nextContext.context
|
|
};
|
|
this.setContent(nextContext.type, details);
|
|
}
|
|
|
|
_noteTryAdd(mode) {
|
|
const index = this._index;
|
|
if (index < 0 || index >= this._definitions.length) { return; }
|
|
|
|
const button = this._adderButtonFind(index, mode);
|
|
if (button !== null && !button.classList.contains('disabled')) {
|
|
this._noteAdd(this._definitions[index], mode);
|
|
}
|
|
}
|
|
|
|
_noteTryView() {
|
|
const button = this._viewerButtonFind(this._index);
|
|
if (button !== null && !button.classList.contains('disabled')) {
|
|
api.noteView(button.dataset.noteId);
|
|
}
|
|
}
|
|
|
|
async _noteAdd(definition, mode) {
|
|
try {
|
|
this.setSpinnerVisible(true);
|
|
|
|
const details = {};
|
|
if (this._noteUsesScreenshot(mode)) {
|
|
const screenshot = await this._getScreenshot();
|
|
if (screenshot) {
|
|
details.screenshot = screenshot;
|
|
}
|
|
}
|
|
|
|
const context = await this._getNoteContext();
|
|
const noteId = await api.definitionAdd(definition, mode, context, details, this.getOptionsContext());
|
|
if (noteId) {
|
|
const index = this._definitions.indexOf(definition);
|
|
const adderButton = this._adderButtonFind(index, mode);
|
|
if (adderButton !== null) {
|
|
adderButton.classList.add('disabled');
|
|
}
|
|
this._viewerButtonShow(index, noteId);
|
|
} else {
|
|
throw new Error('Note could not be added');
|
|
}
|
|
} catch (e) {
|
|
this.onError(e);
|
|
} finally {
|
|
this.setSpinnerVisible(false);
|
|
}
|
|
}
|
|
|
|
async _audioPlay(definition, expressionIndex, entryIndex) {
|
|
try {
|
|
this.setSpinnerVisible(true);
|
|
|
|
const expression = expressionIndex === -1 ? definition : definition.expressions[expressionIndex];
|
|
|
|
this._stopPlayingAudio();
|
|
|
|
let audio, info;
|
|
try {
|
|
const {sources, textToSpeechVoice, customSourceUrl} = this._options.audio;
|
|
let index;
|
|
({audio, index} = await this._audioSystem.getDefinitionAudio(expression, sources, {textToSpeechVoice, customSourceUrl}));
|
|
info = `From source ${1 + index}: ${sources[index]}`;
|
|
} catch (e) {
|
|
if (this._audioFallback === null) {
|
|
this._audioFallback = new Audio('/mixed/mp3/button.mp3');
|
|
}
|
|
audio = this._audioFallback;
|
|
info = 'Could not find audio';
|
|
}
|
|
|
|
const button = this._audioButtonFindImage(entryIndex, expressionIndex);
|
|
if (button !== null) {
|
|
let titleDefault = button.dataset.titleDefault;
|
|
if (!titleDefault) {
|
|
titleDefault = button.title || '';
|
|
button.dataset.titleDefault = titleDefault;
|
|
}
|
|
button.title = `${titleDefault}\n${info}`;
|
|
}
|
|
|
|
this._stopPlayingAudio();
|
|
|
|
const volume = Math.max(0.0, Math.min(1.0, this._options.audio.volume / 100.0));
|
|
this._audioPlaying = audio;
|
|
audio.currentTime = 0;
|
|
audio.volume = Number.isFinite(volume) ? volume : 1.0;
|
|
const playPromise = audio.play();
|
|
if (typeof playPromise !== 'undefined') {
|
|
try {
|
|
await playPromise;
|
|
} catch (e2) {
|
|
// NOP
|
|
}
|
|
}
|
|
} catch (e) {
|
|
this.onError(e);
|
|
} finally {
|
|
this.setSpinnerVisible(false);
|
|
}
|
|
}
|
|
|
|
_stopPlayingAudio() {
|
|
if (this._audioPlaying !== null) {
|
|
this._audioPlaying.pause();
|
|
this._audioPlaying = null;
|
|
}
|
|
}
|
|
|
|
_noteUsesScreenshot(mode) {
|
|
const optionsAnki = this._options.anki;
|
|
const fields = (mode === 'kanji' ? optionsAnki.kanji : optionsAnki.terms).fields;
|
|
for (const fieldValue of Object.values(fields)) {
|
|
if (fieldValue.includes('{screenshot}')) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
async _getScreenshot() {
|
|
try {
|
|
await this._setPopupVisibleOverride(false);
|
|
await promiseTimeout(1); // Wait for popup to be hidden.
|
|
|
|
const {format, quality} = this._options.anki.screenshot;
|
|
const dataUrl = await api.screenshotGet({format, quality});
|
|
if (!dataUrl || dataUrl.error) { return; }
|
|
|
|
return {dataUrl, format};
|
|
} finally {
|
|
await this._setPopupVisibleOverride(null);
|
|
}
|
|
}
|
|
|
|
_getFirstExpressionIndex() {
|
|
return this._options.general.resultOutputMode === 'merge' ? 0 : -1;
|
|
}
|
|
|
|
_setPopupVisibleOverride(visible) {
|
|
return api.broadcastTab('popupSetVisibleOverride', {visible});
|
|
}
|
|
|
|
_getEntry(index) {
|
|
const entries = this._container.querySelectorAll('.entry');
|
|
return index >= 0 && index < entries.length ? entries[index] : null;
|
|
}
|
|
|
|
_clozeBuild({text, offset}, source) {
|
|
return {
|
|
sentence: text.trim(),
|
|
prefix: text.substring(0, offset).trim(),
|
|
body: text.substring(offset, offset + source.length),
|
|
suffix: text.substring(offset + source.length).trim()
|
|
};
|
|
}
|
|
|
|
_entryIndexFind(element) {
|
|
const entry = element.closest('.entry');
|
|
return entry !== null ? this._indexOf(this._container.querySelectorAll('.entry'), entry) : -1;
|
|
}
|
|
|
|
_adderButtonFind(index, mode) {
|
|
const entry = this._getEntry(index);
|
|
return entry !== null ? entry.querySelector(`.action-add-note[data-mode="${mode}"]`) : null;
|
|
}
|
|
|
|
_viewerButtonFind(index) {
|
|
const entry = this._getEntry(index);
|
|
return entry !== null ? entry.querySelector('.action-view-note') : null;
|
|
}
|
|
|
|
_viewerButtonShow(index, noteId) {
|
|
const viewerButton = this._viewerButtonFind(index);
|
|
if (viewerButton === null) {
|
|
return;
|
|
}
|
|
viewerButton.classList.remove('pending', 'disabled');
|
|
viewerButton.dataset.noteId = noteId;
|
|
}
|
|
|
|
_audioButtonFindImage(index, expressionIndex) {
|
|
const entry = this._getEntry(index);
|
|
if (entry === null) { return null; }
|
|
|
|
const container = (
|
|
expressionIndex >= 0 ?
|
|
entry.querySelector(`.term-expression:nth-of-type(${expressionIndex + 1})`) :
|
|
entry
|
|
);
|
|
return container !== null ? container.querySelector('.action-play-audio>img') : null;
|
|
}
|
|
|
|
async _getDefinitionsAddable(definitions, modes) {
|
|
try {
|
|
const context = await this._getNoteContext();
|
|
return await api.definitionsAddable(definitions, modes, context, this.getOptionsContext());
|
|
} catch (e) {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
_indexOf(nodeList, node) {
|
|
for (let i = 0, ii = nodeList.length; i < ii; ++i) {
|
|
if (nodeList[i] === node) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
_getElementTop(element) {
|
|
const elementRect = element.getBoundingClientRect();
|
|
const documentRect = document.documentElement.getBoundingClientRect();
|
|
return elementRect.top - documentRect.top;
|
|
}
|
|
|
|
async _getNoteContext() {
|
|
const documentTitle = await this.getDocumentTitle();
|
|
return {
|
|
document: {
|
|
title: documentTitle
|
|
}
|
|
};
|
|
}
|
|
|
|
_playAudioCurrent() {
|
|
const index = this._index;
|
|
if (index < 0 || index >= this._definitions.length) { return; }
|
|
|
|
const entry = this._getEntry(index);
|
|
if (entry !== null && entry.dataset.type === 'term') {
|
|
this._audioPlay(this._definitions[index], this._getFirstExpressionIndex(), index);
|
|
}
|
|
}
|
|
}
|