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

228 lines
7.5 KiB
JavaScript
Raw Normal View History

2019-10-29 21:49:36 +00:00
/*
2020-01-01 17:00:00 +00:00
* Copyright (C) 2019-2020 Alex Yatskov <alex@foosoft.net>
2019-10-29 21:49:36 +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/>.
*/
class QueryParser {
constructor(search) {
this.search = search;
this.pendingLookup = false;
this.clickScanPrevent = false;
2019-10-29 21:49:36 +00:00
2019-11-12 21:57:21 +00:00
this.parseResults = [];
this.selectedParser = null;
2019-11-12 21:57:21 +00:00
2019-10-29 21:49:36 +00:00
this.queryParser = document.querySelector('#query-parser');
2019-11-12 21:57:21 +00:00
this.queryParserSelect = document.querySelector('#query-parser-select');
2019-10-29 21:49:36 +00:00
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) {
if (DOM.isMouseButtonPressed(e, 'primary')) {
this.clickScanPrevent = false;
}
}
onMouseUp(e) {
if (
2019-11-28 14:08:19 +00:00
this.search.options.scanning.enablePopupSearch &&
!this.clickScanPrevent &&
DOM.isMouseButtonPressed(e, 'primary')
) {
const selectText = this.search.options.scanning.selectText;
this.onTermLookup(e, {disableScroll: true, selectText});
}
2019-10-30 01:58:24 +00:00
}
onMouseMove(e) {
if (this.pendingLookup || DOM.isMouseButtonDown(e, 'primary')) {
2019-10-30 01:58:24 +00:00
return;
}
const scanningOptions = this.search.options.scanning;
const scanningModifier = scanningOptions.modifier;
if (!(
2019-12-05 20:19:40 +00:00
TextScanner.isScanningModifierPressed(scanningModifier, e) ||
(scanningOptions.middleMouse && DOM.isMouseButtonDown(e, 'auxiliary'))
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-11-13 11:11:41 +00:00
onParserChange(e) {
2019-11-12 21:57:21 +00:00
const selectedParser = e.target.value;
this.selectedParser = selectedParser;
2019-11-12 21:57:21 +00:00
apiOptionsSet({parsing: {selectedParser}}, this.search.getOptionsContext());
this.renderParseResult(this.getParseResult());
}
2019-11-13 13:29:53 +00:00
refreshSelectedParser() {
2019-11-12 21:57:21 +00:00
if (this.parseResults.length > 0) {
if (this.selectedParser === null) {
this.selectedParser = this.search.options.parsing.selectedParser;
}
if (this.selectedParser === null || !this.getParseResult()) {
2019-11-12 21:57:21 +00:00
const selectedParser = this.parseResults[0].id;
this.selectedParser = selectedParser;
2019-11-12 21:57:21 +00:00
apiOptionsSet({parsing: {selectedParser}}, this.search.getOptionsContext());
}
}
2019-11-13 13:29:53 +00:00
}
getParseResult() {
2019-11-27 03:01:54 +00:00
return this.parseResults.find((r) => r.id === this.selectedParser);
2019-11-13 13:29:53 +00:00
}
async setText(text) {
this.search.setSpinnerVisible(true);
await this.setPreview(text);
this.parseResults = await this.parseText(text);
this.refreshSelectedParser();
2019-11-12 21:57:21 +00:00
this.renderParserSelect();
await this.renderParseResult();
this.search.setSpinnerVisible(false);
}
async parseText(text) {
const results = [];
2019-11-05 13:56:45 +00:00
if (this.search.options.parsing.enableScanningParser) {
2019-11-12 21:57:21 +00:00
results.push({
name: 'Scanning parser',
id: 'scan',
parsedText: await apiTextParse(text, this.search.getOptionsContext())
});
2019-11-05 13:56:45 +00:00
}
if (this.search.options.parsing.enableMecabParser) {
const mecabResults = await apiTextParseMecab(text, this.search.getOptionsContext());
2019-11-05 13:56:45 +00:00
for (const mecabDictName in mecabResults) {
2019-11-12 21:57:21 +00:00
results.push({
name: `MeCab: ${mecabDictName}`,
id: `mecab-${mecabDictName}`,
parsedText: mecabResults[mecabDictName]
});
2019-11-05 13:56:45 +00:00
}
}
2019-11-12 21:57:21 +00:00
return results;
2019-10-30 01:58:24 +00:00
}
async setPreview(text) {
const previewTerms = [];
2019-12-08 20:13:22 +00:00
for (let i = 0, ii = text.length; i < ii; i += 2) {
const tempText = text.substring(i, i + 2);
previewTerms.push([{text: tempText.split('')}]);
}
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
}
}
2019-11-12 21:57:21 +00:00
renderParserSelect() {
this.queryParserSelect.innerHTML = '';
if (this.parseResults.length > 1) {
const select = document.createElement('select');
select.classList.add('form-control');
for (const parseResult of this.parseResults) {
const option = document.createElement('option');
option.value = parseResult.id;
option.innerText = parseResult.name;
option.defaultSelected = this.selectedParser === parseResult.id;
2019-11-12 21:57:21 +00:00
select.appendChild(option);
}
select.addEventListener('change', this.onParserChange.bind(this));
this.queryParserSelect.appendChild(select);
}
}
async renderParseResult() {
const parseResult = this.getParseResult();
if (!parseResult) {
this.queryParser.innerHTML = '';
return;
}
this.queryParser.innerHTML = await apiTemplateRender(
'query-parser.html',
{terms: QueryParser.processParseResultForDisplay(parseResult.parsedText)}
);
for (const charElement of this.queryParser.querySelectorAll('.query-parser-char')) {
this.activateScanning(charElement);
}
}
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-11-12 21:57:21 +00:00
static processParseResultForDisplay(result) {
return result.map((term) => {
2019-11-27 03:01:54 +00:00
return term.filter((part) => part.text.trim()).map((part) => {
2019-11-12 21:57:21 +00:00
return {
2019-12-08 20:20:44 +00:00
text: part.text.split(''),
2019-11-12 21:57:21 +00:00
reading: part.reading,
2019-11-25 19:41:26 +00:00
raw: !part.reading || !part.reading.trim()
2019-11-12 21:57:21 +00:00
};
});
});
}
2019-10-29 21:49:36 +00:00
}