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

147 lines
4.7 KiB
JavaScript
Raw Normal View History

2019-10-29 21:49:36 +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 {
constructor({getOptionsContext, setContent, setSpinnerVisible}) {
2020-04-11 13:41:03 +00:00
super(document.querySelector('#query-parser-content'), () => [], []);
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();
}
onClick2(e) {
2020-01-16 21:22:38 +00:00
this.searchAt(e.clientX, e.clientY, 'click');
}
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
const searchText = this.getTextSourceContent(textSource, this.options.scanning.length);
2020-01-16 21:22:38 +00:00
if (searchText.length === 0) { return; }
2019-10-30 01:58:24 +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
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
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
}});
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;
apiOptionsSet({parsing: {selectedParser}}, this.getOptionsContext());
2019-11-12 21:57:21 +00:00
}
2020-01-16 21:22:38 +00:00
getMouseEventListeners() {
return [
...super.getMouseEventListeners(),
[this.node, 'click', this.onClick2.bind(this)]
2020-01-16 21:22:38 +00:00
];
}
setOptions(options) {
super.setOptions(options);
super.setEnabled(true);
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;
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) {
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
this.setSpinnerVisible(false);
2019-11-12 21:57:21 +00:00
}
2020-02-06 02:00:02 +00:00
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, reading: ''}]);
}
2020-02-06 02:00:02 +00:00
this.queryParser.textContent = '';
this.queryParser.appendChild(this.queryParserGenerator.createParseResult(previewTerms, true));
}
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
}