2017-03-05 01:56:10 +00:00
|
|
|
/*
|
2020-01-01 17:00:00 +00:00
|
|
|
* Copyright (C) 2016-2020 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
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-03-05 01:56:10 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
|
|
|
* ClipboardMonitor
|
|
|
|
* Display
|
|
|
|
* QueryParser
|
|
|
|
* apiClipboardGet
|
|
|
|
* apiOptionsSet
|
|
|
|
* apiTermsFind
|
|
|
|
*/
|
2020-02-01 20:00:34 +00:00
|
|
|
|
2017-08-15 02:55:04 +00:00
|
|
|
class DisplaySearch extends Display {
|
2017-03-05 01:56:10 +00:00
|
|
|
constructor() {
|
2019-09-15 18:16:23 +00:00
|
|
|
super(document.querySelector('#spinner'), document.querySelector('#content'));
|
2017-03-18 20:00:29 +00:00
|
|
|
|
2019-09-07 17:58:19 +00:00
|
|
|
this.optionsContext = {
|
2019-09-10 23:55:14 +00:00
|
|
|
depth: 0,
|
|
|
|
url: window.location.href
|
2019-09-07 17:58:19 +00:00
|
|
|
};
|
|
|
|
|
2019-10-29 21:49:36 +00:00
|
|
|
this.queryParser = new QueryParser(this);
|
|
|
|
|
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');
|
2019-10-26 16:12:13 +00:00
|
|
|
this.clipboardMonitorEnable = document.querySelector('#clipboard-monitor-enable');
|
|
|
|
this.wanakanaEnable = document.querySelector('#wanakana-enable');
|
2019-10-26 15:15:28 +00:00
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
this.introVisible = true;
|
|
|
|
this.introAnimationTimer = null;
|
2019-10-26 15:15:28 +00:00
|
|
|
|
2020-03-07 15:47:30 +00:00
|
|
|
this.clipboardMonitor = new ClipboardMonitor({getClipboard: apiClipboardGet});
|
2020-02-27 00:34:25 +00:00
|
|
|
|
|
|
|
this._onKeyDownIgnoreKeys = new Map([
|
|
|
|
['ANY_MOD', new Set([
|
|
|
|
'Tab', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'PageDown', 'PageUp', 'Home', 'End',
|
|
|
|
'F1', 'F2', 'F3', 'F4', 'F5', 'F6', 'F7', 'F8', 'F9', 'F10',
|
|
|
|
'F11', 'F12', 'F13', 'F14', 'F15', 'F16', 'F17', 'F18', 'F19', 'F20',
|
|
|
|
'F21', 'F22', 'F23', 'F24'
|
|
|
|
])],
|
|
|
|
['Control', new Set(['C', 'A', 'Z', 'Y', 'X', 'F', 'G'])],
|
|
|
|
['Meta', new Set(['C', 'A', 'Z', 'Y', 'X', 'F', 'G'])],
|
2020-02-29 15:00:28 +00:00
|
|
|
['OS', new Set()],
|
|
|
|
['Alt', new Set()],
|
|
|
|
['AltGraph', new Set()],
|
|
|
|
['Shift', new Set()]
|
2020-02-27 00:34:25 +00:00
|
|
|
]);
|
2020-02-27 00:48:53 +00:00
|
|
|
|
|
|
|
this._runtimeMessageHandlers = new Map([
|
2020-03-09 02:06:31 +00:00
|
|
|
['searchQueryUpdate', this.onExternalSearchUpdate.bind(this)]
|
2020-02-27 00:48:53 +00:00
|
|
|
]);
|
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 {
|
2020-03-02 02:51:45 +00:00
|
|
|
await super.prepare();
|
|
|
|
await this.queryParser.prepare();
|
2020-02-10 20:09:23 +00:00
|
|
|
|
2020-02-09 22:09:29 +00:00
|
|
|
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
2020-02-05 11:26:25 +00:00
|
|
|
|
2020-02-27 00:08:35 +00:00
|
|
|
document.documentElement.dataset.searchMode = mode;
|
2019-10-26 16:12:13 +00:00
|
|
|
|
2020-02-27 00:08:35 +00:00
|
|
|
if (this.options.general.enableWanakana === true) {
|
|
|
|
this.wanakanaEnable.checked = true;
|
|
|
|
window.wanakana.bind(this.query);
|
|
|
|
} else {
|
|
|
|
this.wanakanaEnable.checked = false;
|
2019-10-12 18:20:54 +00:00
|
|
|
}
|
2020-02-27 00:08:35 +00:00
|
|
|
|
|
|
|
this.setQuery(query);
|
|
|
|
this.onSearchQueryUpdated(this.query.value, false);
|
|
|
|
|
|
|
|
if (mode !== 'popup') {
|
2019-10-27 18:11:23 +00:00
|
|
|
if (this.options.general.enableClipboardMonitor === true) {
|
|
|
|
this.clipboardMonitorEnable.checked = true;
|
2020-01-26 01:02:33 +00:00
|
|
|
this.clipboardMonitor.start();
|
2019-10-27 18:11:23 +00:00
|
|
|
} else {
|
|
|
|
this.clipboardMonitorEnable.checked = false;
|
|
|
|
}
|
2020-02-27 02:01:40 +00:00
|
|
|
this.clipboardMonitorEnable.addEventListener('change', this.onClipboardMonitorEnableChange.bind(this));
|
2019-10-26 15:15:28 +00:00
|
|
|
}
|
2019-10-12 18:20:54 +00:00
|
|
|
|
2020-02-09 23:16:06 +00:00
|
|
|
chrome.runtime.onMessage.addListener(this.onRuntimeMessage.bind(this));
|
|
|
|
|
2020-02-27 02:01:40 +00:00
|
|
|
this.search.addEventListener('click', this.onSearch.bind(this), false);
|
|
|
|
this.query.addEventListener('input', this.onSearchInput.bind(this), false);
|
|
|
|
this.wanakanaEnable.addEventListener('change', this.onWanakanaEnableChange.bind(this));
|
|
|
|
window.addEventListener('popstate', this.onPopState.bind(this));
|
|
|
|
window.addEventListener('copy', this.onCopy.bind(this));
|
2020-03-07 15:41:31 +00:00
|
|
|
this.clipboardMonitor.on('change', this.onExternalSearchUpdate.bind(this));
|
2019-10-26 13:39:43 +00:00
|
|
|
|
2019-10-12 18:20:54 +00:00
|
|
|
this.updateSearchButton();
|
|
|
|
} catch (e) {
|
|
|
|
this.onError(e);
|
|
|
|
}
|
2017-03-05 01:56:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
onError(error) {
|
2019-10-09 01:33:10 +00:00
|
|
|
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() {
|
2019-10-08 23:49:08 +00:00
|
|
|
this.updateSearchButton();
|
2019-10-26 11:30:36 +00:00
|
|
|
|
|
|
|
const queryElementRect = this.query.getBoundingClientRect();
|
|
|
|
if (queryElementRect.top < 0 || queryElementRect.bottom > window.innerHeight) {
|
|
|
|
this.query.scrollIntoView();
|
|
|
|
}
|
2017-03-25 22:59:33 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
onSearch(e) {
|
2019-09-15 16:12:30 +00:00
|
|
|
if (this.query === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-26 22:26:17 +00:00
|
|
|
e.preventDefault();
|
2019-10-08 23:49:08 +00:00
|
|
|
|
|
|
|
const query = this.query.value;
|
2020-02-09 23:31:47 +00:00
|
|
|
|
2019-10-29 21:49:36 +00:00
|
|
|
this.queryParser.setText(query);
|
2020-02-09 23:31:47 +00:00
|
|
|
|
|
|
|
const url = new URL(window.location.href);
|
|
|
|
url.searchParams.set('query', query);
|
|
|
|
window.history.pushState(null, '', url.toString());
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
this.onSearchQueryUpdated(query, true);
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:35:53 +00:00
|
|
|
onPopState() {
|
2020-02-09 22:09:29 +00:00
|
|
|
const {queryParams: {query='', mode=''}} = parseUrl(window.location.href);
|
2020-02-02 14:08:19 +00:00
|
|
|
document.documentElement.dataset.searchMode = mode;
|
2020-02-09 19:47:11 +00:00
|
|
|
this.setQuery(query);
|
2019-10-26 22:26:17 +00:00
|
|
|
this.onSearchQueryUpdated(this.query.value, false);
|
2019-10-26 13:39:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-09 23:16:06 +00:00
|
|
|
onRuntimeMessage({action, params}, sender, callback) {
|
2020-02-27 00:48:53 +00:00
|
|
|
const handler = this._runtimeMessageHandlers.get(action);
|
2020-02-09 23:16:06 +00:00
|
|
|
if (typeof handler !== 'function') { return false; }
|
|
|
|
|
2020-02-27 00:48:53 +00:00
|
|
|
const result = handler(params, sender);
|
2020-02-09 23:16:06 +00:00
|
|
|
callback(result);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-25 22:26:56 +00:00
|
|
|
onKeyDown(e) {
|
2019-10-26 00:26:24 +00:00
|
|
|
const key = Display.getKeyFromEvent(e);
|
2020-02-27 00:34:25 +00:00
|
|
|
const ignoreKeys = this._onKeyDownIgnoreKeys;
|
2019-10-26 00:26:24 +00:00
|
|
|
|
2020-02-27 00:34:25 +00:00
|
|
|
const activeModifierMap = new Map([
|
|
|
|
['Control', e.ctrlKey],
|
|
|
|
['Meta', e.metaKey],
|
2020-02-29 15:00:28 +00:00
|
|
|
['Shift', e.shiftKey],
|
|
|
|
['Alt', e.altKey],
|
2020-02-27 00:34:25 +00:00
|
|
|
['ANY_MOD', true]
|
|
|
|
]);
|
2019-10-26 00:26:24 +00:00
|
|
|
|
|
|
|
let preventFocus = false;
|
2020-02-27 00:34:25 +00:00
|
|
|
for (const [modifier, keys] of ignoreKeys.entries()) {
|
|
|
|
const modifierActive = activeModifierMap.get(modifier);
|
|
|
|
if (key === modifier || (modifierActive && keys.has(key))) {
|
2019-10-26 00:26:24 +00:00
|
|
|
preventFocus = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-26 11:30:36 +00:00
|
|
|
if (!super.onKeyDown(e) && !preventFocus && document.activeElement !== this.query) {
|
2019-10-25 22:26:56 +00:00
|
|
|
this.query.focus({preventScroll: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-26 01:02:33 +00:00
|
|
|
onCopy() {
|
|
|
|
// ignore copy from search page
|
|
|
|
this.clipboardMonitor.setPreviousText(document.getSelection().toString().trim());
|
|
|
|
}
|
|
|
|
|
2020-03-07 15:41:31 +00:00
|
|
|
onExternalSearchUpdate({text}) {
|
2020-02-09 19:47:11 +00:00
|
|
|
this.setQuery(text);
|
2020-02-09 23:16:06 +00:00
|
|
|
const url = new URL(window.location.href);
|
|
|
|
url.searchParams.set('query', text);
|
|
|
|
window.history.pushState(null, '', url.toString());
|
2020-01-26 01:02:33 +00:00
|
|
|
this.onSearchQueryUpdated(this.query.value, true);
|
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
async onSearchQueryUpdated(query, animate) {
|
2017-07-29 16:55:54 +00:00
|
|
|
try {
|
2019-11-05 01:52:08 +00:00
|
|
|
const details = {};
|
2019-11-24 02:48:24 +00:00
|
|
|
const match = /^([*\uff0a]*)([\w\W]*?)([*\uff0a]*)$/.exec(query);
|
2019-11-05 01:52:08 +00:00
|
|
|
if (match !== null) {
|
2019-11-24 02:48:24 +00:00
|
|
|
if (match[1]) {
|
|
|
|
details.wildcard = 'prefix';
|
|
|
|
} else if (match[3]) {
|
|
|
|
details.wildcard = 'suffix';
|
|
|
|
}
|
|
|
|
query = match[2];
|
2019-11-05 01:52:08 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
const valid = (query.length > 0);
|
|
|
|
this.setIntroVisible(!valid, animate);
|
|
|
|
this.updateSearchButton();
|
|
|
|
if (valid) {
|
2019-11-05 01:52:08 +00:00
|
|
|
const {definitions} = await apiTermsFind(query, details, this.optionsContext);
|
2019-12-27 22:42:36 +00:00
|
|
|
this.setContent('terms', {definitions, context: {
|
2019-10-12 18:55:18 +00:00
|
|
|
focus: false,
|
2019-12-01 03:38:23 +00:00
|
|
|
disableHistory: true,
|
2019-11-26 16:32:05 +00:00
|
|
|
sentence: {text: query, offset: 0},
|
2019-11-30 02:59:36 +00:00
|
|
|
url: window.location.href
|
2019-12-27 22:42:36 +00:00
|
|
|
}});
|
2019-10-08 23:49:08 +00:00
|
|
|
} else {
|
|
|
|
this.container.textContent = '';
|
|
|
|
}
|
2019-12-06 12:56:36 +00:00
|
|
|
this.setTitleText(query);
|
2019-11-13 19:19:01 +00:00
|
|
|
window.parent.postMessage('popupClose', '*');
|
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
|
|
|
|
2020-02-27 00:04:21 +00:00
|
|
|
onWanakanaEnableChange(e) {
|
|
|
|
const {queryParams: {query=''}} = parseUrl(window.location.href);
|
|
|
|
const enableWanakana = e.target.checked;
|
|
|
|
if (enableWanakana) {
|
|
|
|
window.wanakana.bind(this.query);
|
|
|
|
} else {
|
|
|
|
window.wanakana.unbind(this.query);
|
|
|
|
}
|
|
|
|
this.setQuery(query);
|
|
|
|
this.onSearchQueryUpdated(this.query.value, false);
|
|
|
|
apiOptionsSet({general: {enableWanakana}}, this.getOptionsContext());
|
|
|
|
}
|
|
|
|
|
|
|
|
onClipboardMonitorEnableChange(e) {
|
|
|
|
if (e.target.checked) {
|
|
|
|
chrome.permissions.request(
|
|
|
|
{permissions: ['clipboardRead']},
|
|
|
|
(granted) => {
|
|
|
|
if (granted) {
|
|
|
|
this.clipboardMonitor.start();
|
|
|
|
apiOptionsSet({general: {enableClipboardMonitor: true}}, this.getOptionsContext());
|
|
|
|
} else {
|
|
|
|
e.target.checked = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
this.clipboardMonitor.stop();
|
|
|
|
apiOptionsSet({general: {enableClipboardMonitor: false}}, this.getOptionsContext());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
async updateOptions(options) {
|
|
|
|
await super.updateOptions(options);
|
|
|
|
this.queryParser.setOptions(this.options);
|
|
|
|
}
|
|
|
|
|
2019-10-26 22:26:17 +00:00
|
|
|
isWanakanaEnabled() {
|
|
|
|
return this.wanakanaEnable !== null && this.wanakanaEnable.checked;
|
|
|
|
}
|
|
|
|
|
2019-10-12 18:20:54 +00:00
|
|
|
getOptionsContext() {
|
|
|
|
return this.optionsContext;
|
|
|
|
}
|
|
|
|
|
2019-10-29 21:49:36 +00:00
|
|
|
setQuery(query) {
|
2020-02-09 19:47:11 +00:00
|
|
|
const interpretedQuery = this.isWanakanaEnabled() ? window.wanakana.toKana(query) : query;
|
|
|
|
this.query.value = interpretedQuery;
|
|
|
|
this.queryParser.setText(interpretedQuery);
|
2019-10-29 21:49:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
setIntroVisible(visible, animate) {
|
|
|
|
if (this.introVisible === visible) {
|
2019-09-15 16:04:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
this.introVisible = visible;
|
2019-09-15 16:04:21 +00:00
|
|
|
|
|
|
|
if (this.intro === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-08 23:49:08 +00:00
|
|
|
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();
|
2019-11-25 19:21:19 +00:00
|
|
|
this.intro.style.height = '0px';
|
2019-10-08 23:49:08 +00:00
|
|
|
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';
|
|
|
|
}
|
2019-10-08 23:49:08 +00:00
|
|
|
|
|
|
|
updateSearchButton() {
|
|
|
|
this.search.disabled = this.introVisible && (this.query === null || this.query.value.length === 0);
|
|
|
|
}
|
|
|
|
|
2019-12-05 22:40:41 +00:00
|
|
|
setTitleText(text) {
|
|
|
|
// Chrome limits title to 1024 characters
|
|
|
|
if (text.length > 1000) {
|
2019-12-06 12:58:42 +00:00
|
|
|
text = text.substring(0, 1000) + '...';
|
2019-12-05 22:40:41 +00:00
|
|
|
}
|
2019-12-06 12:56:36 +00:00
|
|
|
|
|
|
|
if (text.length === 0) {
|
|
|
|
document.title = 'Yomichan Search';
|
|
|
|
} else {
|
|
|
|
document.title = `${text} - Yomichan Search`;
|
|
|
|
}
|
2019-12-05 22:40:41 +00:00
|
|
|
}
|
2017-08-15 02:55:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-21 04:20:56 +00:00
|
|
|
DisplaySearch.instance = DisplaySearch.create();
|