yomichan/ext/bg/js/search.js

326 lines
10 KiB
JavaScript
Raw Normal View History

2017-03-05 01:56:10 +00:00
/*
2017-08-15 04:43:09 +00:00
* Copyright (C) 2016-2017 Alex Yatskov <alex@foosoft.net>
2017-03-05 01:56:10 +00:00
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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 <http://www.gnu.org/licenses/>.
*/
2017-08-15 02:55:04 +00:00
class DisplaySearch extends Display {
2017-03-05 01:56:10 +00:00
constructor() {
super(document.querySelector('#spinner'), document.querySelector('#content'));
2017-03-18 20:00:29 +00:00
this.optionsContext = {
depth: 0,
url: window.location.href
};
2019-09-15 16:12:30 +00:00
this.search = document.querySelector('#search');
this.query = document.querySelector('#query');
2019-09-15 16:04:21 +00:00
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.clipboardMonitorIntervalId = null;
this.clipboardPrevText = null;
2019-10-12 18:20:54 +00:00
}
2019-08-03 12:06:28 +00:00
2019-10-12 18:20:54 +00:00
static create() {
const instance = new DisplaySearch();
instance.prepare();
return instance;
}
async prepare() {
try {
await this.initialize();
2019-10-12 18:20:54 +00:00
if (this.search !== null) {
this.search.addEventListener('click', (e) => this.onSearch(e), false);
}
2019-10-12 18:20:54 +00:00
if (this.query !== null) {
this.query.addEventListener('input', () => this.onSearchInput(), false);
if (this.wanakanaEnable !== null) {
if (this.wanakanaEnable.checked) {
window.wanakana.bind(this.query);
}
this.wanakanaEnable.addEventListener('change', (e) => {
if (e.target.checked) {
window.wanakana.bind(this.query);
} else {
window.wanakana.unbind(this.query);
}
});
}
let query = DisplaySearch.getSearchQueryFromLocation(window.location.href);
2019-10-12 18:20:54 +00:00
if (query !== null) {
if (this.wanakanaEnable !== null && this.wanakanaEnable.checked) {
query = window.wanakana.toKana(query);
}
this.query.value = query;
2019-10-12 18:20:54 +00:00
this.onSearchQueryUpdated(query, false);
}
}
if (this.clipboardMonitorEnable !== null) {
this.clipboardMonitorEnable.addEventListener('change', (e) => {
if (e.target.checked) {
this.startClipboardMonitor();
} else {
this.stopClipboardMonitor();
}
});
}
2019-10-12 18:20:54 +00:00
2019-10-26 13:39:43 +00:00
window.addEventListener('popstate', (e) => this.onPopState(e));
2019-10-12 18:20:54 +00:00
this.updateSearchButton();
this.initClipboardMonitor();
2019-10-12 18:20:54 +00:00
} catch (e) {
this.onError(e);
}
2017-03-05 01:56:10 +00:00
}
2017-08-13 23:11:51 +00:00
onError(error) {
logError(error, true);
2017-03-05 01:56:10 +00:00
}
2017-08-13 23:11:51 +00:00
onSearchClear() {
2019-09-15 16:12:30 +00:00
if (this.query === null) {
return;
}
this.query.focus();
this.query.select();
2017-08-06 02:11:06 +00:00
}
2017-08-13 23:11:51 +00:00
onSearchInput() {
this.updateSearchButton();
const queryElementRect = this.query.getBoundingClientRect();
if (queryElementRect.top < 0 || queryElementRect.bottom > window.innerHeight) {
this.query.scrollIntoView();
}
2017-03-25 22:59:33 +00:00
}
onSearch(e) {
2019-09-15 16:12:30 +00:00
if (this.query === null) {
return;
}
if (e) {
e.preventDefault();
}
const query = this.query.value;
const queryString = query.length > 0 ? `?query=${encodeURIComponent(query)}` : '';
2019-10-26 16:32:41 +00:00
window.history.pushState(null, '', `${window.location.pathname}${queryString}`);
this.onSearchQueryUpdated(query, true);
}
2019-10-26 13:39:43 +00:00
onPopState(e) {
2019-10-26 16:32:41 +00:00
const query = DisplaySearch.getSearchQueryFromLocation(window.location.href) || '';
2019-10-26 13:39:43 +00:00
if (this.query !== null) {
this.query.value = query;
}
this.onSearchQueryUpdated(query, false);
}
onKeyDown(e) {
const key = Display.getKeyFromEvent(e);
let activeModifierMap = {
'Control': e.ctrlKey,
2019-10-26 12:15:12 +00:00
'Meta': e.metaKey,
'ANY_MOD': true
};
const ignoreKeys = {
2019-10-26 12:15:12 +00:00
'ANY_MOD': ['Tab', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'PageDown', 'PageUp', 'Home', 'End']
.concat(
Array.from(Array(24).keys())
.map(i => `F${i + 1}`)
),
'Control': ['C', 'A', 'Z', 'Y', 'X', 'F', 'G'],
'Meta': ['C', 'A', 'Z', 'Y', 'X', 'F', 'G'],
'OS': [],
'Alt': [],
2019-10-26 12:15:12 +00:00
'AltGraph': [],
'Shift': []
}
let preventFocus = false;
for (const [modifier, keys] of Object.entries(ignoreKeys)) {
const modifierActive = activeModifierMap[modifier];
if (key === modifier || (modifierActive && keys.includes(key))) {
preventFocus = true;
break;
}
}
if (!super.onKeyDown(e) && !preventFocus && document.activeElement !== this.query) {
this.query.focus({preventScroll: true});
}
}
async onSearchQueryUpdated(query, animate) {
2017-07-29 16:55:54 +00:00
try {
const valid = (query.length > 0);
this.setIntroVisible(!valid, animate);
this.updateSearchButton();
if (valid) {
const {definitions} = await apiTermsFind(query, this.optionsContext);
this.setContentTerms(definitions, {
focus: false,
sentence: null,
url: window.location.href
});
} else {
this.container.textContent = '';
}
2017-07-29 16:55:54 +00:00
} catch (e) {
2017-08-13 23:11:51 +00:00
this.onError(e);
2017-07-29 16:55:54 +00:00
}
2017-03-05 01:56:10 +00:00
}
2019-09-15 16:04:21 +00:00
onRuntimeMessage({action, params}, sender, callback) {
const handlers = DisplaySearch.runtimeMessageHandlers;
if (handlers.hasOwnProperty(action)) {
const handler = handlers[action];
const result = handler(this, params);
callback(result);
} else {
return super.onRuntimeMessage({action, params}, sender, callback);
}
}
initClipboardMonitor() {
// ignore copy from search page
window.addEventListener('copy', (e) => {
let prevText = document.getSelection().toString().trim();
if (this.wanakanaEnable !== null && this.wanakanaEnable.checked) {
prevText = window.wanakana.toKana(prevText);
}
this.clipboardPrevText = prevText;
});
}
startClipboardMonitor() {
this.clipboardMonitorIntervalId = setInterval(async () => {
let curText = (await navigator.clipboard.readText()).trim();
if (this.wanakanaEnable !== null && this.wanakanaEnable.checked) {
curText = window.wanakana.toKana(curText);
}
if (curText && (curText !== this.clipboardPrevText)) {
this.query.value = curText;
this.onSearch();
this.clipboardPrevText = curText;
}
}, 100);
}
stopClipboardMonitor() {
if (this.clipboardMonitorIntervalId) {
clearInterval(this.clipboardMonitorIntervalId);
this.clipboardMonitorIntervalId = null;
}
}
2019-10-12 18:20:54 +00:00
getOptionsContext() {
return this.optionsContext;
}
2019-10-12 21:12:34 +00:00
setCustomCss() {
// No custom CSS
}
setIntroVisible(visible, animate) {
if (this.introVisible === visible) {
2019-09-15 16:04:21 +00:00
return;
}
this.introVisible = visible;
2019-09-15 16:04:21 +00:00
if (this.intro === null) {
return;
}
if (this.introAnimationTimer !== null) {
clearTimeout(this.introAnimationTimer);
this.introAnimationTimer = null;
}
if (visible) {
this.showIntro(animate);
} else {
this.hideIntro(animate);
}
}
showIntro(animate) {
if (animate) {
const duration = 0.4;
this.intro.style.transition = '';
this.intro.style.height = '';
const size = this.intro.getBoundingClientRect();
this.intro.style.height = `0px`;
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
this.intro.style.height = `${size.height}px`;
this.introAnimationTimer = setTimeout(() => {
this.intro.style.height = '';
this.introAnimationTimer = null;
}, duration * 1000);
} else {
this.intro.style.transition = '';
this.intro.style.height = '';
}
}
hideIntro(animate) {
if (animate) {
const duration = 0.4;
const size = this.intro.getBoundingClientRect();
this.intro.style.height = `${size.height}px`;
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
} else {
this.intro.style.transition = '';
}
2019-09-15 16:04:21 +00:00
this.intro.style.height = '0';
}
updateSearchButton() {
this.search.disabled = this.introVisible && (this.query === null || this.query.value.length === 0);
}
static getSearchQueryFromLocation(url) {
let match = /^[^\?#]*\?(?:[^&#]*&)?query=([^&#]*)/.exec(url);
return match !== null ? decodeURIComponent(match[1]) : null;
}
2017-08-15 02:55:04 +00:00
}
DisplaySearch.runtimeMessageHandlers = {
getUrl: () => {
return {url: window.location.href};
}
};
2019-10-12 18:20:54 +00:00
window.yomichan_search = DisplaySearch.create();