Display class refactoring (#650)
* Organize by public/private * Don't access super class's private members * Make _autoPlayAudioTimer private * Refactor constructors * Make functions private * Organize by public/private * Organize window message handlers * Make fields private * Refactor DisplaySearch constructor * Make functions private * Organize by public/private
This commit is contained in:
parent
e30bab3324
commit
8f48a23a45
@ -30,31 +30,22 @@
|
|||||||
class DisplaySearch extends Display {
|
class DisplaySearch extends Display {
|
||||||
constructor() {
|
constructor() {
|
||||||
super(document.querySelector('#spinner'), document.querySelector('#content'));
|
super(document.querySelector('#spinner'), document.querySelector('#content'));
|
||||||
|
|
||||||
this._isPrepared = false;
|
this._isPrepared = false;
|
||||||
|
this._search = document.querySelector('#search');
|
||||||
this.setOptionsContext({
|
this._query = document.querySelector('#query');
|
||||||
depth: 0,
|
this._intro = document.querySelector('#intro');
|
||||||
url: window.location.href
|
this._clipboardMonitorEnable = document.querySelector('#clipboard-monitor-enable');
|
||||||
|
this._wanakanaEnable = document.querySelector('#wanakana-enable');
|
||||||
|
this._introVisible = true;
|
||||||
|
this._introAnimationTimer = null;
|
||||||
|
this._clipboardMonitor = new ClipboardMonitor({
|
||||||
|
getClipboard: api.clipboardGet.bind(api)
|
||||||
});
|
});
|
||||||
|
this._queryParser = new QueryParser({
|
||||||
this.queryParser = new QueryParser({
|
|
||||||
getOptionsContext: this.getOptionsContext.bind(this),
|
getOptionsContext: this.getOptionsContext.bind(this),
|
||||||
setContent: this.setContent.bind(this),
|
setContent: this.setContent.bind(this),
|
||||||
setSpinnerVisible: this.setSpinnerVisible.bind(this)
|
setSpinnerVisible: this.setSpinnerVisible.bind(this)
|
||||||
});
|
});
|
||||||
|
|
||||||
this.search = document.querySelector('#search');
|
|
||||||
this.query = document.querySelector('#query');
|
|
||||||
this.intro = document.querySelector('#intro');
|
|
||||||
this.clipboardMonitorEnable = document.querySelector('#clipboard-monitor-enable');
|
|
||||||
this.wanakanaEnable = document.querySelector('#wanakana-enable');
|
|
||||||
|
|
||||||
this.introVisible = true;
|
|
||||||
this.introAnimationTimer = null;
|
|
||||||
|
|
||||||
this.clipboardMonitor = new ClipboardMonitor({getClipboard: api.clipboardGet.bind(api)});
|
|
||||||
|
|
||||||
this._onKeyDownIgnoreKeys = new Map([
|
this._onKeyDownIgnoreKeys = new Map([
|
||||||
['ANY_MOD', new Set([
|
['ANY_MOD', new Set([
|
||||||
'Tab', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'PageDown', 'PageUp', 'Home', 'End',
|
'Tab', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'PageDown', 'PageUp', 'Home', 'End',
|
||||||
@ -69,17 +60,21 @@ class DisplaySearch extends Display {
|
|||||||
['AltGraph', new Set()],
|
['AltGraph', new Set()],
|
||||||
['Shift', new Set()]
|
['Shift', new Set()]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
this._runtimeMessageHandlers = new Map([
|
this._runtimeMessageHandlers = new Map([
|
||||||
['searchQueryUpdate', this.onExternalSearchUpdate.bind(this)]
|
['searchQueryUpdate', this._onExternalSearchUpdate.bind(this)]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
this.setOptionsContext({
|
||||||
|
depth: 0,
|
||||||
|
url: window.location.href
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async prepare() {
|
async prepare() {
|
||||||
await super.prepare();
|
await super.prepare();
|
||||||
await this.updateOptions();
|
await this.updateOptions();
|
||||||
yomichan.on('optionsUpdated', () => this.updateOptions());
|
yomichan.on('optionsUpdated', () => this.updateOptions());
|
||||||
await this.queryParser.prepare();
|
await this._queryParser.prepare();
|
||||||
const options = this.getOptions();
|
const options = this.getOptions();
|
||||||
|
|
||||||
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
||||||
@ -87,35 +82,35 @@ class DisplaySearch extends Display {
|
|||||||
document.documentElement.dataset.searchMode = mode;
|
document.documentElement.dataset.searchMode = mode;
|
||||||
|
|
||||||
if (options.general.enableWanakana === true) {
|
if (options.general.enableWanakana === true) {
|
||||||
this.wanakanaEnable.checked = true;
|
this._wanakanaEnable.checked = true;
|
||||||
wanakana.bind(this.query);
|
wanakana.bind(this._query);
|
||||||
} else {
|
} else {
|
||||||
this.wanakanaEnable.checked = false;
|
this._wanakanaEnable.checked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setQuery(query);
|
this._setQuery(query);
|
||||||
this.onSearchQueryUpdated(this.query.value, false);
|
this._onSearchQueryUpdated(this._query.value, false);
|
||||||
|
|
||||||
if (mode !== 'popup') {
|
if (mode !== 'popup') {
|
||||||
if (options.general.enableClipboardMonitor === true) {
|
if (options.general.enableClipboardMonitor === true) {
|
||||||
this.clipboardMonitorEnable.checked = true;
|
this._clipboardMonitorEnable.checked = true;
|
||||||
this.clipboardMonitor.start();
|
this._clipboardMonitor.start();
|
||||||
} else {
|
} else {
|
||||||
this.clipboardMonitorEnable.checked = false;
|
this._clipboardMonitorEnable.checked = false;
|
||||||
}
|
}
|
||||||
this.clipboardMonitorEnable.addEventListener('change', this.onClipboardMonitorEnableChange.bind(this));
|
this._clipboardMonitorEnable.addEventListener('change', this._onClipboardMonitorEnableChange.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
chrome.runtime.onMessage.addListener(this.onRuntimeMessage.bind(this));
|
chrome.runtime.onMessage.addListener(this._onRuntimeMessage.bind(this));
|
||||||
|
|
||||||
this.search.addEventListener('click', this.onSearch.bind(this), false);
|
this._search.addEventListener('click', this._onSearch.bind(this), false);
|
||||||
this.query.addEventListener('input', this.onSearchInput.bind(this), false);
|
this._query.addEventListener('input', this._onSearchInput.bind(this), false);
|
||||||
this.wanakanaEnable.addEventListener('change', this.onWanakanaEnableChange.bind(this));
|
this._wanakanaEnable.addEventListener('change', this._onWanakanaEnableChange.bind(this));
|
||||||
window.addEventListener('popstate', this.onPopState.bind(this));
|
window.addEventListener('popstate', this._onPopState.bind(this));
|
||||||
window.addEventListener('copy', this.onCopy.bind(this));
|
window.addEventListener('copy', this._onCopy.bind(this));
|
||||||
this.clipboardMonitor.on('change', this.onExternalSearchUpdate.bind(this));
|
this._clipboardMonitor.on('change', this._onExternalSearchUpdate.bind(this));
|
||||||
|
|
||||||
this.updateSearchButton();
|
this._updateSearchButton();
|
||||||
|
|
||||||
await this._prepareNestedPopups();
|
await this._prepareNestedPopups();
|
||||||
|
|
||||||
@ -123,55 +118,12 @@ class DisplaySearch extends Display {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onEscape() {
|
onEscape() {
|
||||||
if (this.query === null) {
|
if (this._query === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.query.focus();
|
this._query.focus();
|
||||||
this.query.select();
|
this._query.select();
|
||||||
}
|
|
||||||
|
|
||||||
onSearchInput() {
|
|
||||||
this.updateSearchButton();
|
|
||||||
|
|
||||||
const queryElementRect = this.query.getBoundingClientRect();
|
|
||||||
if (queryElementRect.top < 0 || queryElementRect.bottom > window.innerHeight) {
|
|
||||||
this.query.scrollIntoView();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onSearch(e) {
|
|
||||||
if (this.query === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
const query = this.query.value;
|
|
||||||
|
|
||||||
this.queryParser.setText(query);
|
|
||||||
|
|
||||||
const url = new URL(window.location.href);
|
|
||||||
url.searchParams.set('query', query);
|
|
||||||
window.history.pushState(null, '', url.toString());
|
|
||||||
|
|
||||||
this.onSearchQueryUpdated(query, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
onPopState() {
|
|
||||||
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
|
||||||
document.documentElement.dataset.searchMode = mode;
|
|
||||||
this.setQuery(query);
|
|
||||||
this.onSearchQueryUpdated(this.query.value, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
onRuntimeMessage({action, params}, sender, callback) {
|
|
||||||
const handler = this._runtimeMessageHandlers.get(action);
|
|
||||||
if (typeof handler !== 'function') { return false; }
|
|
||||||
|
|
||||||
const result = handler(params, sender);
|
|
||||||
callback(result);
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onKeyDown(e) {
|
onKeyDown(e) {
|
||||||
@ -195,25 +147,87 @@ class DisplaySearch extends Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!super.onKeyDown(e) && !preventFocus && document.activeElement !== this.query) {
|
if (!super.onKeyDown(e) && !preventFocus && document.activeElement !== this._query) {
|
||||||
this.query.focus({preventScroll: true});
|
this._query.focus({preventScroll: true});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onCopy() {
|
async updateOptions() {
|
||||||
// ignore copy from search page
|
await super.updateOptions();
|
||||||
this.clipboardMonitor.setPreviousText(window.getSelection().toString().trim());
|
const options = this.getOptions();
|
||||||
|
this._queryParser.setOptions(options);
|
||||||
|
if (!this._isPrepared) { return; }
|
||||||
|
const query = this._query.value;
|
||||||
|
if (query) {
|
||||||
|
this._setQuery(query);
|
||||||
|
this._onSearchQueryUpdated(query, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onExternalSearchUpdate({text}) {
|
async setContent(type, details) {
|
||||||
this.setQuery(text);
|
this._query.blur();
|
||||||
|
await super.setContent(type, details);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Private
|
||||||
|
|
||||||
|
_onSearchInput() {
|
||||||
|
this._updateSearchButton();
|
||||||
|
|
||||||
|
const queryElementRect = this._query.getBoundingClientRect();
|
||||||
|
if (queryElementRect.top < 0 || queryElementRect.bottom > window.innerHeight) {
|
||||||
|
this._query.scrollIntoView();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_onSearch(e) {
|
||||||
|
if (this._query === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
const query = this._query.value;
|
||||||
|
|
||||||
|
this._queryParser.setText(query);
|
||||||
|
|
||||||
|
const url = new URL(window.location.href);
|
||||||
|
url.searchParams.set('query', query);
|
||||||
|
window.history.pushState(null, '', url.toString());
|
||||||
|
|
||||||
|
this._onSearchQueryUpdated(query, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onPopState() {
|
||||||
|
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
||||||
|
document.documentElement.dataset.searchMode = mode;
|
||||||
|
this._setQuery(query);
|
||||||
|
this._onSearchQueryUpdated(this._query.value, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onRuntimeMessage({action, params}, sender, callback) {
|
||||||
|
const handler = this._runtimeMessageHandlers.get(action);
|
||||||
|
if (typeof handler !== 'function') { return false; }
|
||||||
|
|
||||||
|
const result = handler(params, sender);
|
||||||
|
callback(result);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
_onCopy() {
|
||||||
|
// ignore copy from search page
|
||||||
|
this._clipboardMonitor.setPreviousText(window.getSelection().toString().trim());
|
||||||
|
}
|
||||||
|
|
||||||
|
_onExternalSearchUpdate({text}) {
|
||||||
|
this._setQuery(text);
|
||||||
const url = new URL(window.location.href);
|
const url = new URL(window.location.href);
|
||||||
url.searchParams.set('query', text);
|
url.searchParams.set('query', text);
|
||||||
window.history.pushState(null, '', url.toString());
|
window.history.pushState(null, '', url.toString());
|
||||||
this.onSearchQueryUpdated(this.query.value, true);
|
this._onSearchQueryUpdated(this._query.value, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
async onSearchQueryUpdated(query, animate) {
|
async _onSearchQueryUpdated(query, animate) {
|
||||||
try {
|
try {
|
||||||
const details = {};
|
const details = {};
|
||||||
const match = /^([*\uff0a]*)([\w\W]*?)([*\uff0a]*)$/.exec(query);
|
const match = /^([*\uff0a]*)([\w\W]*?)([*\uff0a]*)$/.exec(query);
|
||||||
@ -227,8 +241,8 @@ class DisplaySearch extends Display {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const valid = (query.length > 0);
|
const valid = (query.length > 0);
|
||||||
this.setIntroVisible(!valid, animate);
|
this._setIntroVisible(!valid, animate);
|
||||||
this.updateSearchButton();
|
this._updateSearchButton();
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const {definitions} = await api.termsFind(query, details, this.getOptionsContext());
|
const {definitions} = await api.termsFind(query, details, this.getOptionsContext());
|
||||||
this.setContent('terms', {definitions, context: {
|
this.setContent('terms', {definitions, context: {
|
||||||
@ -240,19 +254,19 @@ class DisplaySearch extends Display {
|
|||||||
} else {
|
} else {
|
||||||
this.clearContent();
|
this.clearContent();
|
||||||
}
|
}
|
||||||
this.setTitleText(query);
|
this._setTitleText(query);
|
||||||
window.parent.postMessage('popupClose', '*');
|
window.parent.postMessage('popupClose', '*');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.onError(e);
|
this.onError(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onWanakanaEnableChange(e) {
|
_onWanakanaEnableChange(e) {
|
||||||
const value = e.target.checked;
|
const value = e.target.checked;
|
||||||
if (value) {
|
if (value) {
|
||||||
wanakana.bind(this.query);
|
wanakana.bind(this._query);
|
||||||
} else {
|
} else {
|
||||||
wanakana.unbind(this.query);
|
wanakana.unbind(this._query);
|
||||||
}
|
}
|
||||||
api.modifySettings([{
|
api.modifySettings([{
|
||||||
action: 'set',
|
action: 'set',
|
||||||
@ -263,13 +277,13 @@ class DisplaySearch extends Display {
|
|||||||
}], 'search');
|
}], 'search');
|
||||||
}
|
}
|
||||||
|
|
||||||
onClipboardMonitorEnableChange(e) {
|
_onClipboardMonitorEnableChange(e) {
|
||||||
if (e.target.checked) {
|
if (e.target.checked) {
|
||||||
chrome.permissions.request(
|
chrome.permissions.request(
|
||||||
{permissions: ['clipboardRead']},
|
{permissions: ['clipboardRead']},
|
||||||
(granted) => {
|
(granted) => {
|
||||||
if (granted) {
|
if (granted) {
|
||||||
this.clipboardMonitor.start();
|
this._clipboardMonitor.start();
|
||||||
api.modifySettings([{
|
api.modifySettings([{
|
||||||
action: 'set',
|
action: 'set',
|
||||||
path: 'general.enableClipboardMonitor',
|
path: 'general.enableClipboardMonitor',
|
||||||
@ -283,7 +297,7 @@ class DisplaySearch extends Display {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
this.clipboardMonitor.stop();
|
this._clipboardMonitor.stop();
|
||||||
api.modifySettings([{
|
api.modifySettings([{
|
||||||
action: 'set',
|
action: 'set',
|
||||||
path: 'general.enableClipboardMonitor',
|
path: 'general.enableClipboardMonitor',
|
||||||
@ -294,101 +308,84 @@ class DisplaySearch extends Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateOptions() {
|
_isWanakanaEnabled() {
|
||||||
await super.updateOptions();
|
return this._wanakanaEnable !== null && this._wanakanaEnable.checked;
|
||||||
const options = this.getOptions();
|
|
||||||
this.queryParser.setOptions(options);
|
|
||||||
if (!this._isPrepared) { return; }
|
|
||||||
const query = this.query.value;
|
|
||||||
if (query) {
|
|
||||||
this.setQuery(query);
|
|
||||||
this.onSearchQueryUpdated(query, false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
isWanakanaEnabled() {
|
_setQuery(query) {
|
||||||
return this.wanakanaEnable !== null && this.wanakanaEnable.checked;
|
|
||||||
}
|
|
||||||
|
|
||||||
setQuery(query) {
|
|
||||||
let interpretedQuery = query;
|
let interpretedQuery = query;
|
||||||
if (this.isWanakanaEnabled()) {
|
if (this._isWanakanaEnabled()) {
|
||||||
try {
|
try {
|
||||||
interpretedQuery = wanakana.toKana(query);
|
interpretedQuery = wanakana.toKana(query);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// NOP
|
// NOP
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.query.value = interpretedQuery;
|
this._query.value = interpretedQuery;
|
||||||
this.queryParser.setText(interpretedQuery);
|
this._queryParser.setText(interpretedQuery);
|
||||||
}
|
}
|
||||||
|
|
||||||
async setContent(type, details) {
|
_setIntroVisible(visible, animate) {
|
||||||
this.query.blur();
|
if (this._introVisible === visible) {
|
||||||
await super.setContent(type, details);
|
|
||||||
}
|
|
||||||
|
|
||||||
setIntroVisible(visible, animate) {
|
|
||||||
if (this.introVisible === visible) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.introVisible = visible;
|
this._introVisible = visible;
|
||||||
|
|
||||||
if (this.intro === null) {
|
if (this._intro === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.introAnimationTimer !== null) {
|
if (this._introAnimationTimer !== null) {
|
||||||
clearTimeout(this.introAnimationTimer);
|
clearTimeout(this._introAnimationTimer);
|
||||||
this.introAnimationTimer = null;
|
this._introAnimationTimer = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (visible) {
|
if (visible) {
|
||||||
this.showIntro(animate);
|
this._showIntro(animate);
|
||||||
} else {
|
} else {
|
||||||
this.hideIntro(animate);
|
this._hideIntro(animate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
showIntro(animate) {
|
_showIntro(animate) {
|
||||||
if (animate) {
|
if (animate) {
|
||||||
const duration = 0.4;
|
const duration = 0.4;
|
||||||
this.intro.style.transition = '';
|
this._intro.style.transition = '';
|
||||||
this.intro.style.height = '';
|
this._intro.style.height = '';
|
||||||
const size = this.intro.getBoundingClientRect();
|
const size = this._intro.getBoundingClientRect();
|
||||||
this.intro.style.height = '0px';
|
this._intro.style.height = '0px';
|
||||||
this.intro.style.transition = `height ${duration}s ease-in-out 0s`;
|
this._intro.style.transition = `height ${duration}s ease-in-out 0s`;
|
||||||
window.getComputedStyle(this.intro).getPropertyValue('height'); // Commits height so next line can start animation
|
window.getComputedStyle(this._intro).getPropertyValue('height'); // Commits height so next line can start animation
|
||||||
this.intro.style.height = `${size.height}px`;
|
this._intro.style.height = `${size.height}px`;
|
||||||
this.introAnimationTimer = setTimeout(() => {
|
this._introAnimationTimer = setTimeout(() => {
|
||||||
this.intro.style.height = '';
|
this._intro.style.height = '';
|
||||||
this.introAnimationTimer = null;
|
this._introAnimationTimer = null;
|
||||||
}, duration * 1000);
|
}, duration * 1000);
|
||||||
} else {
|
} else {
|
||||||
this.intro.style.transition = '';
|
this._intro.style.transition = '';
|
||||||
this.intro.style.height = '';
|
this._intro.style.height = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hideIntro(animate) {
|
_hideIntro(animate) {
|
||||||
if (animate) {
|
if (animate) {
|
||||||
const duration = 0.4;
|
const duration = 0.4;
|
||||||
const size = this.intro.getBoundingClientRect();
|
const size = this._intro.getBoundingClientRect();
|
||||||
this.intro.style.height = `${size.height}px`;
|
this._intro.style.height = `${size.height}px`;
|
||||||
this.intro.style.transition = `height ${duration}s ease-in-out 0s`;
|
this._intro.style.transition = `height ${duration}s ease-in-out 0s`;
|
||||||
window.getComputedStyle(this.intro).getPropertyValue('height'); // Commits height so next line can start animation
|
window.getComputedStyle(this._intro).getPropertyValue('height'); // Commits height so next line can start animation
|
||||||
} else {
|
} else {
|
||||||
this.intro.style.transition = '';
|
this._intro.style.transition = '';
|
||||||
}
|
}
|
||||||
this.intro.style.height = '0';
|
this._intro.style.height = '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
updateSearchButton() {
|
_updateSearchButton() {
|
||||||
this.search.disabled = this.introVisible && (this.query === null || this.query.value.length === 0);
|
this._search.disabled = this._introVisible && (this._query === null || this._query.value.length === 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
setTitleText(text) {
|
_setTitleText(text) {
|
||||||
// Chrome limits title to 1024 characters
|
// Chrome limits title to 1024 characters
|
||||||
if (text.length > 1000) {
|
if (text.length > 1000) {
|
||||||
text = text.substring(0, 1000) + '...';
|
text = text.substring(0, 1000) + '...';
|
||||||
|
@ -26,39 +26,35 @@
|
|||||||
class DisplayFloat extends Display {
|
class DisplayFloat extends Display {
|
||||||
constructor() {
|
constructor() {
|
||||||
super(document.querySelector('#spinner'), document.querySelector('#definitions'));
|
super(document.querySelector('#spinner'), document.querySelector('#definitions'));
|
||||||
this.autoPlayAudioTimer = null;
|
this._autoPlayAudioTimer = null;
|
||||||
|
|
||||||
this._secret = yomichan.generateId(16);
|
this._secret = yomichan.generateId(16);
|
||||||
this._token = null;
|
this._token = null;
|
||||||
|
|
||||||
this._nestedPopupsPrepared = false;
|
this._nestedPopupsPrepared = false;
|
||||||
|
this._windowMessageHandlers = new Map([
|
||||||
|
['initialize', {handler: this._onMessageInitialize.bind(this), authenticate: false}],
|
||||||
|
['configure', {handler: this._onMessageConfigure.bind(this)}],
|
||||||
|
['setOptionsContext', {handler: this._onMessageSetOptionsContext.bind(this)}],
|
||||||
|
['setContent', {handler: this._onMessageSetContent.bind(this)}],
|
||||||
|
['clearAutoPlayTimer', {handler: this._onMessageClearAutoPlayTimer.bind(this)}],
|
||||||
|
['setCustomCss', {handler: this._onMessageSetCustomCss.bind(this)}],
|
||||||
|
['setContentScale', {handler: this._onMessageSetContentScale.bind(this)}]
|
||||||
|
]);
|
||||||
|
|
||||||
this._onKeyDownHandlers = new Map([
|
this.setOnKeyDownHandlers([
|
||||||
['C', (e) => {
|
['C', (e) => {
|
||||||
if (e.ctrlKey && !window.getSelection().toString()) {
|
if (e.ctrlKey && !window.getSelection().toString()) {
|
||||||
this.onSelectionCopy();
|
this._copySelection();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}],
|
}]
|
||||||
...this._onKeyDownHandlers
|
|
||||||
]);
|
|
||||||
|
|
||||||
this._windowMessageHandlers = new Map([
|
|
||||||
['initialize', {handler: this._initialize.bind(this), authenticate: false}],
|
|
||||||
['configure', {handler: this._configure.bind(this)}],
|
|
||||||
['setOptionsContext', {handler: ({optionsContext}) => this.setOptionsContext(optionsContext)}],
|
|
||||||
['setContent', {handler: ({type, details}) => this.setContent(type, details)}],
|
|
||||||
['clearAutoPlayTimer', {handler: () => this.clearAutoPlayTimer()}],
|
|
||||||
['setCustomCss', {handler: ({css}) => this.setCustomCss(css)}],
|
|
||||||
['setContentScale', {handler: ({scale}) => this.setContentScale(scale)}]
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
async prepare() {
|
async prepare() {
|
||||||
await super.prepare();
|
await super.prepare();
|
||||||
|
|
||||||
window.addEventListener('message', this.onMessage.bind(this), false);
|
window.addEventListener('message', this._onMessage.bind(this), false);
|
||||||
|
|
||||||
api.broadcastTab('popupPrepared', {secret: this._secret});
|
api.broadcastTab('popupPrepared', {secret: this._secret});
|
||||||
}
|
}
|
||||||
@ -67,61 +63,11 @@ class DisplayFloat extends Display {
|
|||||||
window.parent.postMessage('popupClose', '*');
|
window.parent.postMessage('popupClose', '*');
|
||||||
}
|
}
|
||||||
|
|
||||||
onSelectionCopy() {
|
|
||||||
window.parent.postMessage('selectionCopy', '*');
|
|
||||||
}
|
|
||||||
|
|
||||||
onMessage(e) {
|
|
||||||
const data = e.data;
|
|
||||||
if (typeof data !== 'object' || data === null) {
|
|
||||||
this._logMessageError(e, 'Invalid data');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const action = data.action;
|
|
||||||
if (typeof action !== 'string') {
|
|
||||||
this._logMessageError(e, 'Invalid data');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const handlerInfo = this._windowMessageHandlers.get(action);
|
|
||||||
if (typeof handlerInfo === 'undefined') {
|
|
||||||
this._logMessageError(e, `Invalid action: ${JSON.stringify(action)}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (handlerInfo.authenticate !== false && !this._isMessageAuthenticated(data)) {
|
|
||||||
this._logMessageError(e, 'Invalid authentication');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const handler = handlerInfo.handler;
|
|
||||||
handler(data.params);
|
|
||||||
}
|
|
||||||
|
|
||||||
autoPlayAudio() {
|
|
||||||
this.clearAutoPlayTimer();
|
|
||||||
this.autoPlayAudioTimer = window.setTimeout(() => super.autoPlayAudio(), 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
clearAutoPlayTimer() {
|
|
||||||
if (this.autoPlayAudioTimer) {
|
|
||||||
window.clearTimeout(this.autoPlayAudioTimer);
|
|
||||||
this.autoPlayAudioTimer = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async setOptionsContext(optionsContext) {
|
async setOptionsContext(optionsContext) {
|
||||||
super.setOptionsContext(optionsContext);
|
super.setOptionsContext(optionsContext);
|
||||||
await this.updateOptions();
|
await this.updateOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
setContentScale(scale) {
|
|
||||||
const body = document.body;
|
|
||||||
if (body === null) { return; }
|
|
||||||
body.style.fontSize = `${scale}em`;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getDocumentTitle() {
|
async getDocumentTitle() {
|
||||||
try {
|
try {
|
||||||
const uniqueId = yomichan.generateId(16);
|
const uniqueId = yomichan.generateId(16);
|
||||||
@ -149,6 +95,100 @@ class DisplayFloat extends Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
autoPlayAudio() {
|
||||||
|
this._clearAutoPlayTimer();
|
||||||
|
this._autoPlayAudioTimer = window.setTimeout(() => super.autoPlayAudio(), 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Message handling
|
||||||
|
|
||||||
|
_onMessage(e) {
|
||||||
|
const data = e.data;
|
||||||
|
if (typeof data !== 'object' || data === null) {
|
||||||
|
this._logMessageError(e, 'Invalid data');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const action = data.action;
|
||||||
|
if (typeof action !== 'string') {
|
||||||
|
this._logMessageError(e, 'Invalid data');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const handlerInfo = this._windowMessageHandlers.get(action);
|
||||||
|
if (typeof handlerInfo === 'undefined') {
|
||||||
|
this._logMessageError(e, `Invalid action: ${JSON.stringify(action)}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (handlerInfo.authenticate !== false && !this._isMessageAuthenticated(data)) {
|
||||||
|
this._logMessageError(e, 'Invalid authentication');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const handler = handlerInfo.handler;
|
||||||
|
handler(data.params);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageInitialize(params) {
|
||||||
|
this._initialize(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _onMessageConfigure({messageId, frameId, popupId, optionsContext, childrenSupported, scale}) {
|
||||||
|
this.setOptionsContext(optionsContext);
|
||||||
|
|
||||||
|
await this.updateOptions();
|
||||||
|
|
||||||
|
if (childrenSupported && !this._nestedPopupsPrepared) {
|
||||||
|
const {depth, url} = optionsContext;
|
||||||
|
this._prepareNestedPopups(popupId, depth, frameId, url);
|
||||||
|
this._nestedPopupsPrepared = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
this._setContentScale(scale);
|
||||||
|
|
||||||
|
api.sendMessageToFrame(frameId, 'popupConfigured', {messageId});
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageSetOptionsContext({optionsContext}) {
|
||||||
|
this.setOptionsContext(optionsContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageSetContent({type, details}) {
|
||||||
|
this.setContent(type, details);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageClearAutoPlayTimer() {
|
||||||
|
this._clearAutoPlayTimer.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageSetCustomCss({css}) {
|
||||||
|
this.setCustomCss(css);
|
||||||
|
}
|
||||||
|
|
||||||
|
_onMessageSetContentScale({scale}) {
|
||||||
|
this._setContentScale(scale);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Private
|
||||||
|
|
||||||
|
_copySelection() {
|
||||||
|
window.parent.postMessage('selectionCopy', '*');
|
||||||
|
}
|
||||||
|
|
||||||
|
_clearAutoPlayTimer() {
|
||||||
|
if (this._autoPlayAudioTimer) {
|
||||||
|
window.clearTimeout(this._autoPlayAudioTimer);
|
||||||
|
this._autoPlayAudioTimer = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_setContentScale(scale) {
|
||||||
|
const body = document.body;
|
||||||
|
if (body === null) { return; }
|
||||||
|
body.style.fontSize = `${scale}em`;
|
||||||
|
}
|
||||||
|
|
||||||
_logMessageError(event, type) {
|
_logMessageError(event, type) {
|
||||||
yomichan.logWarning(new Error(`Popup received invalid message from origin ${JSON.stringify(event.origin)}: ${type}`));
|
yomichan.logWarning(new Error(`Popup received invalid message from origin ${JSON.stringify(event.origin)}: ${type}`));
|
||||||
}
|
}
|
||||||
@ -166,22 +206,6 @@ class DisplayFloat extends Display {
|
|||||||
api.sendMessageToFrame(frameId, 'popupInitialized', {secret, token});
|
api.sendMessageToFrame(frameId, 'popupInitialized', {secret, token});
|
||||||
}
|
}
|
||||||
|
|
||||||
async _configure({messageId, frameId, popupId, optionsContext, childrenSupported, scale}) {
|
|
||||||
this.setOptionsContext(optionsContext);
|
|
||||||
|
|
||||||
await this.updateOptions();
|
|
||||||
|
|
||||||
if (childrenSupported && !this._nestedPopupsPrepared) {
|
|
||||||
const {depth, url} = optionsContext;
|
|
||||||
this._prepareNestedPopups(popupId, depth, frameId, url);
|
|
||||||
this._nestedPopupsPrepared = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setContentScale(scale);
|
|
||||||
|
|
||||||
api.sendMessageToFrame(frameId, 'popupConfigured', {messageId});
|
|
||||||
}
|
|
||||||
|
|
||||||
_isMessageAuthenticated(message) {
|
_isMessageAuthenticated(message) {
|
||||||
return (
|
return (
|
||||||
this._token !== null &&
|
this._token !== null &&
|
||||||
|
@ -47,18 +47,15 @@ class Display {
|
|||||||
useCache: true
|
useCache: true
|
||||||
});
|
});
|
||||||
this._styleNode = null;
|
this._styleNode = null;
|
||||||
|
|
||||||
this._eventListeners = new EventListenerCollection();
|
this._eventListeners = new EventListenerCollection();
|
||||||
this._persistentEventListeners = new EventListenerCollection();
|
this._persistentEventListeners = new EventListenerCollection();
|
||||||
this._interactive = false;
|
this._interactive = false;
|
||||||
this._eventListenersActive = false;
|
this._eventListenersActive = false;
|
||||||
this._clickScanPrevent = false;
|
this._clickScanPrevent = false;
|
||||||
this._setContentToken = null;
|
this._setContentToken = null;
|
||||||
|
|
||||||
this._mediaLoader = new MediaLoader();
|
this._mediaLoader = new MediaLoader();
|
||||||
this._displayGenerator = new DisplayGenerator({mediaLoader: this._mediaLoader});
|
this._displayGenerator = new DisplayGenerator({mediaLoader: this._mediaLoader});
|
||||||
this._windowScroll = new WindowScroll();
|
this._windowScroll = new WindowScroll();
|
||||||
|
|
||||||
this._onKeyDownHandlers = new Map([
|
this._onKeyDownHandlers = new Map([
|
||||||
['Escape', () => {
|
['Escape', () => {
|
||||||
this.onEscape();
|
this.onEscape();
|
||||||
@ -182,6 +179,111 @@ class Display {
|
|||||||
throw new Error('Override me');
|
throw new Error('Override me');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onKeyDown(e) {
|
||||||
|
const key = DOM.getKeyFromEvent(e);
|
||||||
|
const handler = this._onKeyDownHandlers.get(key);
|
||||||
|
if (typeof handler === 'function') {
|
||||||
|
if (handler(e)) {
|
||||||
|
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() {
|
||||||
|
if (this._definitions.length === 0) { return; }
|
||||||
|
|
||||||
|
this._audioPlay(this._definitions[0], this._getFirstExpressionIndex(), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
case 'extensionUnloaded':
|
||||||
|
this._setContentExtensionUnloaded();
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setOnKeyDownHandlers(handlers) {
|
||||||
|
for (const [key, handler] of handlers) {
|
||||||
|
this._onKeyDownHandlers.set(key, handler);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Private
|
||||||
|
|
||||||
_onSourceTermView(e) {
|
_onSourceTermView(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
this._sourceTermView();
|
this._sourceTermView();
|
||||||
@ -335,18 +437,6 @@ class Display {
|
|||||||
api.noteView(link.dataset.noteId);
|
api.noteView(link.dataset.noteId);
|
||||||
}
|
}
|
||||||
|
|
||||||
onKeyDown(e) {
|
|
||||||
const key = DOM.getKeyFromEvent(e);
|
|
||||||
const handler = this._onKeyDownHandlers.get(key);
|
|
||||||
if (typeof handler === 'function') {
|
|
||||||
if (handler(e)) {
|
|
||||||
e.preventDefault();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
_onWheel(e) {
|
_onWheel(e) {
|
||||||
if (e.altKey) {
|
if (e.altKey) {
|
||||||
if (e.deltaY !== 0) {
|
if (e.deltaY !== 0) {
|
||||||
@ -372,25 +462,6 @@ class Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
_updateDocumentOptions(options) {
|
_updateDocumentOptions(options) {
|
||||||
const data = document.documentElement.dataset;
|
const data = document.documentElement.dataset;
|
||||||
data.ankiEnabled = `${options.anki.enable}`;
|
data.ankiEnabled = `${options.anki.enable}`;
|
||||||
@ -407,20 +478,6 @@ class Display {
|
|||||||
document.documentElement.dataset.yomichanTheme = themeName;
|
document.documentElement.dataset.yomichanTheme = themeName;
|
||||||
}
|
}
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_setInteractive(interactive) {
|
_setInteractive(interactive) {
|
||||||
interactive = !!interactive;
|
interactive = !!interactive;
|
||||||
if (this._interactive === interactive) { return; }
|
if (this._interactive === interactive) { return; }
|
||||||
@ -469,38 +526,6 @@ class Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
addMultipleEventListeners(selector, type, listener, options) {
|
|
||||||
for (const node of this._container.querySelectorAll(selector)) {
|
|
||||||
this._eventListeners.addEventListener(node, type, listener, options);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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;
|
|
||||||
case 'extensionUnloaded':
|
|
||||||
this._setContentExtensionUnloaded();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
this.onError(e);
|
|
||||||
} finally {
|
|
||||||
if (this._setContentToken === token) {
|
|
||||||
this._setContentToken = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async _setContentTerms(definitions, context, token) {
|
async _setContentTerms(definitions, context, token) {
|
||||||
if (!context) { throw new Error('Context expected'); }
|
if (!context) { throw new Error('Context expected'); }
|
||||||
|
|
||||||
@ -631,10 +656,6 @@ class Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clearContent() {
|
|
||||||
this._container.textContent = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
_updateNavigation(previous, next) {
|
_updateNavigation(previous, next) {
|
||||||
const navigation = document.querySelector('#navigation-header');
|
const navigation = document.querySelector('#navigation-header');
|
||||||
if (navigation !== null) {
|
if (navigation !== null) {
|
||||||
@ -644,12 +665,6 @@ class Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
autoPlayAudio() {
|
|
||||||
if (this._definitions.length === 0) { return; }
|
|
||||||
|
|
||||||
this._audioPlay(this._definitions[0], this._getFirstExpressionIndex(), 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
_updateAdderButtons(states) {
|
_updateAdderButtons(states) {
|
||||||
for (let i = 0; i < states.length; ++i) {
|
for (let i = 0; i < states.length; ++i) {
|
||||||
let noteId = null;
|
let noteId = null;
|
||||||
@ -885,12 +900,6 @@ class Display {
|
|||||||
return api.broadcastTab('popupSetVisibleOverride', {visible});
|
return api.broadcastTab('popupSetVisibleOverride', {visible});
|
||||||
}
|
}
|
||||||
|
|
||||||
setSpinnerVisible(visible) {
|
|
||||||
if (this._spinner !== null) {
|
|
||||||
this._spinner.hidden = !visible;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_getEntry(index) {
|
_getEntry(index) {
|
||||||
const entries = this._container.querySelectorAll('.entry');
|
const entries = this._container.querySelectorAll('.entry');
|
||||||
return index >= 0 && index < entries.length ? entries[index] : null;
|
return index >= 0 && index < entries.length ? entries[index] : null;
|
||||||
@ -950,10 +959,6 @@ class Display {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async getDocumentTitle() {
|
|
||||||
return document.title;
|
|
||||||
}
|
|
||||||
|
|
||||||
_indexOf(nodeList, node) {
|
_indexOf(nodeList, node) {
|
||||||
for (let i = 0, ii = nodeList.length; i < ii; ++i) {
|
for (let i = 0, ii = nodeList.length; i < ii; ++i) {
|
||||||
if (nodeList[i] === node) {
|
if (nodeList[i] === node) {
|
||||||
|
Loading…
Reference in New Issue
Block a user