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;
|
2019-11-03 13:19:42 +00:00
|
|
|
this.pendingLookup = false;
|
2019-11-03 15:04:32 +00:00
|
|
|
this.clickScanPrevent = false;
|
2019-10-29 21:49:36 +00:00
|
|
|
|
2019-11-12 21:57:21 +00:00
|
|
|
this.parseResults = [];
|
2019-11-13 11:09:23 +00:00
|
|
|
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
|
|
|
|
2019-11-03 15:04:32 +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);
|
|
|
|
}
|
|
|
|
|
2019-11-03 15:04:32 +00:00
|
|
|
onMouseDown(e) {
|
2019-11-26 23:52:05 +00:00
|
|
|
if (DOM.isMouseButtonPressed(e, 'primary')) {
|
2019-11-03 15:04:32 +00:00
|
|
|
this.clickScanPrevent = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onMouseUp(e) {
|
|
|
|
if (
|
2019-11-28 14:08:19 +00:00
|
|
|
this.search.options.scanning.enablePopupSearch &&
|
2019-11-03 15:04:32 +00:00
|
|
|
!this.clickScanPrevent &&
|
2019-11-26 23:52:05 +00:00
|
|
|
DOM.isMouseButtonPressed(e, 'primary')
|
2019-11-03 15:04:32 +00:00
|
|
|
) {
|
|
|
|
const selectText = this.search.options.scanning.selectText;
|
|
|
|
this.onTermLookup(e, {disableScroll: true, selectText});
|
|
|
|
}
|
2019-10-30 01:58:24 +00:00
|
|
|
}
|
|
|
|
|
2019-11-03 13:45:07 +00:00
|
|
|
onMouseMove(e) {
|
2019-11-26 23:52:05 +00:00
|
|
|
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) ||
|
2019-11-26 23:52:05 +00:00
|
|
|
(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
|
|
|
|
2019-11-03 13:43:27 +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
|
|
|
}
|
|
|
|
|
2019-11-03 15:04:32 +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) {
|
2019-11-03 13:19:42 +00:00
|
|
|
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;
|
2019-11-13 11:09:23 +00:00
|
|
|
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) {
|
2019-11-13 11:09:23 +00:00
|
|
|
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;
|
2019-11-13 11:09:23 +00:00
|
|
|
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) {
|
2019-11-25 19:28:52 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-11-03 13:19:42 +00:00
|
|
|
async setPreview(text) {
|
|
|
|
const previewTerms = [];
|
2019-11-11 19:43:35 +00:00
|
|
|
while (text.length > 0) {
|
2019-11-03 13:19:42 +00:00
|
|
|
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')) {
|
2019-11-03 13:19:42 +00:00
|
|
|
this.activateScanning(charElement);
|
2019-11-10 23:43:35 +00:00
|
|
|
}
|
2019-11-03 13:19:42 +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;
|
2019-11-13 11:09:23 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-03 13:19:42 +00:00
|
|
|
activateScanning(element) {
|
2019-11-03 13:45:07 +00:00
|
|
|
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);
|
|
|
|
}
|
2019-11-03 13:19:42 +00:00
|
|
|
});
|
|
|
|
element.addEventListener('mouseleave', (e) => {
|
2019-11-03 15:04:32 +00:00
|
|
|
this.onMouseLeave(e);
|
2019-11-03 13:19:42 +00:00
|
|
|
});
|
|
|
|
}
|
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 {
|
|
|
|
text: Array.from(part.text),
|
|
|
|
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
|
|
|
}
|