2019-10-29 21:49:36 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 Yomichan Authors
|
2019-10-29 21:49:36 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
2019-10-29 21:49:36 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
|
|
|
* QueryParserGenerator
|
|
|
|
* TextScanner
|
|
|
|
* apiOptionsSet
|
|
|
|
* apiTermsFind
|
|
|
|
* apiTextParse
|
|
|
|
* docSentenceExtract
|
|
|
|
*/
|
2019-10-29 21:49:36 +00:00
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
class QueryParser extends TextScanner {
|
2020-03-14 00:51:39 +00:00
|
|
|
constructor({getOptionsContext, setContent, setSpinnerVisible}) {
|
2020-04-11 13:41:03 +00:00
|
|
|
super(document.querySelector('#query-parser-content'), () => [], []);
|
2020-03-14 00:51:39 +00:00
|
|
|
|
|
|
|
this.getOptionsContext = getOptionsContext;
|
|
|
|
this.setContent = setContent;
|
|
|
|
this.setSpinnerVisible = setSpinnerVisible;
|
2019-10-29 21:49:36 +00:00
|
|
|
|
2019-11-12 21:57:21 +00:00
|
|
|
this.parseResults = [];
|
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
this.queryParser = document.querySelector('#query-parser-content');
|
|
|
|
this.queryParserSelect = document.querySelector('#query-parser-select-container');
|
|
|
|
|
|
|
|
this.queryParserGenerator = new QueryParserGenerator();
|
2019-10-29 21:49:36 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 20:09:23 +00:00
|
|
|
async prepare() {
|
|
|
|
await this.queryParserGenerator.prepare();
|
|
|
|
}
|
|
|
|
|
2019-10-29 21:49:36 +00:00
|
|
|
onError(error) {
|
|
|
|
logError(error, false);
|
|
|
|
}
|
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
onClick(e) {
|
|
|
|
super.onClick(e);
|
|
|
|
this.searchAt(e.clientX, e.clientY, 'click');
|
2019-11-03 15:04:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
async onSearchSource(textSource, cause) {
|
|
|
|
if (textSource === null) { return null; }
|
2019-10-30 01:58:24 +00:00
|
|
|
|
2020-03-14 00:51:39 +00:00
|
|
|
this.setTextSourceScanLength(textSource, this.options.scanning.length);
|
2020-01-16 21:22:38 +00:00
|
|
|
const searchText = textSource.text();
|
|
|
|
if (searchText.length === 0) { return; }
|
2019-10-30 01:58:24 +00:00
|
|
|
|
2020-03-14 00:51:39 +00:00
|
|
|
const {definitions, length} = await apiTermsFind(searchText, {}, this.getOptionsContext());
|
2020-01-16 21:22:38 +00:00
|
|
|
if (definitions.length === 0) { return null; }
|
2019-10-30 01:58:24 +00:00
|
|
|
|
2020-03-14 00:51:39 +00:00
|
|
|
const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt);
|
2020-03-07 12:20:08 +00:00
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
textSource.setEndOffset(length);
|
2019-10-30 01:58:24 +00:00
|
|
|
|
2020-03-14 00:51:39 +00:00
|
|
|
this.setContent('terms', {definitions, context: {
|
2020-01-16 21:22:38 +00:00
|
|
|
focus: false,
|
2020-02-16 00:49:20 +00:00
|
|
|
disableHistory: cause === 'mouse',
|
2020-03-07 12:20:08 +00:00
|
|
|
sentence,
|
2020-01-16 21:22:38 +00:00
|
|
|
url: window.location.href
|
|
|
|
}});
|
2019-11-03 15:04:32 +00:00
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
return {definitions, type: 'terms'};
|
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;
|
2020-03-14 00:51:39 +00:00
|
|
|
apiOptionsSet({parsing: {selectedParser}}, this.getOptionsContext());
|
2019-11-12 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 21:22:38 +00:00
|
|
|
getMouseEventListeners() {
|
|
|
|
return [
|
|
|
|
[this.node, 'click', this.onClick.bind(this)],
|
|
|
|
[this.node, 'mousedown', this.onMouseDown.bind(this)],
|
|
|
|
[this.node, 'mousemove', this.onMouseMove.bind(this)],
|
|
|
|
[this.node, 'mouseover', this.onMouseOver.bind(this)],
|
|
|
|
[this.node, 'mouseout', this.onMouseOut.bind(this)]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
getTouchEventListeners() {
|
|
|
|
return [
|
|
|
|
[this.node, 'auxclick', this.onAuxClick.bind(this)],
|
|
|
|
[this.node, 'touchstart', this.onTouchStart.bind(this)],
|
|
|
|
[this.node, 'touchend', this.onTouchEnd.bind(this)],
|
|
|
|
[this.node, 'touchcancel', this.onTouchCancel.bind(this)],
|
|
|
|
[this.node, 'touchmove', this.onTouchMove.bind(this), {passive: false}],
|
|
|
|
[this.node, 'contextmenu', this.onContextMenu.bind(this)]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-01-25 00:57:57 +00:00
|
|
|
setOptions(options) {
|
|
|
|
super.setOptions(options);
|
|
|
|
this.queryParser.dataset.termSpacing = `${options.parsing.termSpacing}`;
|
|
|
|
}
|
|
|
|
|
2019-11-13 13:29:53 +00:00
|
|
|
refreshSelectedParser() {
|
2019-11-12 21:57:21 +00:00
|
|
|
if (this.parseResults.length > 0) {
|
2020-03-13 21:23:08 +00:00
|
|
|
if (!this.getParseResult()) {
|
2019-11-12 21:57:21 +00:00
|
|
|
const selectedParser = this.parseResults[0].id;
|
2020-03-14 00:51:39 +00:00
|
|
|
apiOptionsSet({parsing: {selectedParser}}, this.getOptionsContext());
|
2019-11-12 21:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-13 13:29:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getParseResult() {
|
2020-03-13 21:23:08 +00:00
|
|
|
const {selectedParser} = this.options.parsing;
|
|
|
|
return this.parseResults.find((r) => r.id === selectedParser);
|
2019-11-13 13:29:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async setText(text) {
|
2020-03-14 00:51:39 +00:00
|
|
|
this.setSpinnerVisible(true);
|
2019-11-13 13:29:53 +00:00
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
this.setPreview(text);
|
2019-11-13 13:29:53 +00:00
|
|
|
|
2020-04-12 00:53:24 +00:00
|
|
|
this.parseResults = await apiTextParse(text, this.getOptionsContext());
|
2019-11-13 13:29:53 +00:00
|
|
|
this.refreshSelectedParser();
|
2019-11-12 21:57:21 +00:00
|
|
|
|
|
|
|
this.renderParserSelect();
|
2020-02-06 02:00:02 +00:00
|
|
|
this.renderParseResult();
|
2019-11-12 21:57:21 +00:00
|
|
|
|
2020-03-14 00:51:39 +00:00
|
|
|
this.setSpinnerVisible(false);
|
2019-11-12 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
setPreview(text) {
|
2019-11-03 13:19:42 +00:00
|
|
|
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);
|
2020-04-13 19:55:33 +00:00
|
|
|
previewTerms.push([{text: tempText, reading: ''}]);
|
2019-11-03 13:19:42 +00:00
|
|
|
}
|
2020-02-06 02:00:02 +00:00
|
|
|
this.queryParser.textContent = '';
|
|
|
|
this.queryParser.appendChild(this.queryParserGenerator.createParseResult(previewTerms, true));
|
2019-11-03 13:19:42 +00:00
|
|
|
}
|
|
|
|
|
2019-11-12 21:57:21 +00:00
|
|
|
renderParserSelect() {
|
2020-02-23 16:49:52 +00:00
|
|
|
this.queryParserSelect.textContent = '';
|
2019-11-12 21:57:21 +00:00
|
|
|
if (this.parseResults.length > 1) {
|
2020-03-13 21:23:08 +00:00
|
|
|
const {selectedParser} = this.options.parsing;
|
|
|
|
const select = this.queryParserGenerator.createParserSelect(this.parseResults, selectedParser);
|
2019-11-12 21:57:21 +00:00
|
|
|
select.addEventListener('change', this.onParserChange.bind(this));
|
|
|
|
this.queryParserSelect.appendChild(select);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 02:00:02 +00:00
|
|
|
renderParseResult() {
|
2019-11-12 21:57:21 +00:00
|
|
|
const parseResult = this.getParseResult();
|
2020-02-06 02:00:02 +00:00
|
|
|
this.queryParser.textContent = '';
|
|
|
|
if (!parseResult) { return; }
|
2020-04-12 00:53:24 +00:00
|
|
|
this.queryParser.appendChild(this.queryParserGenerator.createParseResult(parseResult.content));
|
2019-11-12 21:57:21 +00:00
|
|
|
}
|
2019-10-29 21:49:36 +00:00
|
|
|
}
|