yomichan/ext/bg/js/search-query-parser.js

158 lines
5.2 KiB
JavaScript
Raw Normal View History

2019-10-29 21:49:36 +00:00
/*
* Copyright (C) 2019 Alex Yatskov <alex@foosoft.net>
* 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/>.
*/
class QueryParser {
constructor(search) {
this.search = search;
this.pendingLookup = false;
this.clickScanPrevent = false;
2019-10-29 21:49:36 +00:00
this.queryParser = document.querySelector('#query-parser');
this.queryParser.addEventListener('mousedown', (e) => this.onMouseDown(e));
this.queryParser.addEventListener('mouseup', (e) => this.onMouseUp(e));
2019-10-29 21:49:36 +00:00
}
onError(error) {
logError(error, false);
}
onMouseDown(e) {
2019-11-03 16:03:35 +00:00
if (Frontend.isMouseButton('primary', e)) {
this.clickScanPrevent = false;
}
}
onMouseUp(e) {
if (
this.search.options.scanning.clickGlossary &&
!this.clickScanPrevent &&
2019-11-03 16:03:35 +00:00
Frontend.isMouseButton('primary', e)
) {
const selectText = this.search.options.scanning.selectText;
this.onTermLookup(e, {disableScroll: true, selectText});
}
2019-10-30 01:58:24 +00:00
}
onMouseMove(e) {
2019-11-03 16:03:35 +00:00
if (this.pendingLookup || Frontend.isMouseButton('primary', e)) {
2019-10-30 01:58:24 +00:00
return;
}
const scanningOptions = this.search.options.scanning;
const scanningModifier = scanningOptions.modifier;
if (!(
2019-11-03 16:03:35 +00:00
Frontend.isScanningModifierPressed(scanningModifier, e) ||
(scanningOptions.middleMouse && Frontend.isMouseButton('auxiliary', e))
2019-10-30 01:58:24 +00:00
)) {
return;
2019-10-29 21:49:36 +00:00
}
2019-10-30 01:58:24 +00:00
const selectText = this.search.options.scanning.selectText;
this.onTermLookup(e, {disableScroll: true, disableHistory: true, selectText});
2019-10-30 01:58:24 +00:00
}
onMouseLeave(e) {
this.clickScanPrevent = true;
clearTimeout(e.target.dataset.timer);
delete e.target.dataset.timer;
}
2019-10-30 01:58:24 +00:00
onTermLookup(e, params) {
this.pendingLookup = true;
(async () => {
await this.search.onTermLookup(e, params);
this.pendingLookup = false;
})();
2019-10-29 21:49:36 +00:00
}
2019-10-30 01:58:24 +00:00
async setText(text) {
this.search.setSpinnerVisible(true);
await this.setPreview(text);
2019-11-05 13:56:45 +00:00
const results = {};
if (this.search.options.parsing.enableScanningParser) {
results['scan'] = await apiTextParse(text, this.search.getOptionsContext());
}
if (this.search.options.parsing.enableMecabParser) {
let mecabResults = await apiTextParseMecab(text, this.search.getOptionsContext());
for (const mecabDictName in mecabResults) {
results[`mecab-${mecabDictName}`] = mecabResults[mecabDictName];
}
}
2019-11-11 00:28:00 +00:00
const contents = await Promise.all(Object.values(results).map(result => {
return apiTemplateRender('query-parser.html', {
2019-11-05 13:56:45 +00:00
terms: result.map((term) => {
return term.filter(part => part.text.trim()).map((part) => {
return {
text: Array.from(part.text),
reading: part.reading,
raw: !part.reading || !part.reading.trim(),
};
});
})
});
}));
this.queryParser.innerHTML = contents.join('<hr>');
2019-10-30 01:58:24 +00:00
2019-11-10 23:43:35 +00:00
for (const charElement of this.queryParser.querySelectorAll('.query-parser-char')) {
this.activateScanning(charElement);
2019-11-10 23:43:35 +00:00
}
2019-10-30 01:58:24 +00:00
this.search.setSpinnerVisible(false);
}
async setPreview(text) {
const previewTerms = [];
2019-11-11 19:43:35 +00:00
while (text.length > 0) {
const tempText = text.slice(0, 2);
previewTerms.push([{text: Array.from(tempText)}]);
text = text.slice(2);
}
this.queryParser.innerHTML = await apiTemplateRender('query-parser.html', {
terms: previewTerms,
preview: true
});
2019-11-10 23:43:35 +00:00
for (const charElement of this.queryParser.querySelectorAll('.query-parser-char')) {
this.activateScanning(charElement);
2019-11-10 23:43:35 +00:00
}
}
activateScanning(element) {
element.addEventListener('mousemove', (e) => {
clearTimeout(e.target.dataset.timer);
if (this.search.options.scanning.modifier === 'none') {
e.target.dataset.timer = setTimeout(() => {
this.onMouseMove(e);
delete e.target.dataset.timer;
}, this.search.options.scanning.delay);
} else {
this.onMouseMove(e);
}
});
element.addEventListener('mouseleave', (e) => {
this.onMouseLeave(e);
});
}
2019-10-29 21:49:36 +00:00
}