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-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
* apiModifySettings
2020-03-11 02:30:36 +00:00
* apiTermsFind
* apiTextParse
* docSentenceExtract
*/
2019-10-29 21:49:36 +00:00
class QueryParser {
constructor({getOptionsContext, setContent, setSpinnerVisible}) {
this._options = null;
this._getOptionsContext = getOptionsContext;
this._setContent = setContent;
this._setSpinnerVisible = setSpinnerVisible;
this._parseResults = [];
this._queryParser = document.querySelector('#query-parser-content');
this._queryParserSelect = document.querySelector('#query-parser-select-container');
this._queryParserGenerator = new QueryParserGenerator();
this._textScanner = new TextScanner(
this._queryParser,
() => [],
[]
);
this._textScanner.onSearchSource = this._onSearchSource.bind(this);
2019-10-29 21:49:36 +00:00
}
2020-02-10 20:09:23 +00:00
async prepare() {
await this._queryParserGenerator.prepare();
this._queryParser.addEventListener('click', this._onClick.bind(this));
}
setOptions(options) {
this._options = options;
this._textScanner.setOptions(options);
this._textScanner.setEnabled(true);
this._queryParser.dataset.termSpacing = `${options.parsing.termSpacing}`;
2020-02-10 20:09:23 +00:00
}
async setText(text) {
this._setSpinnerVisible(true);
this._setPreview(text);
this._parseResults = await apiTextParse(text, this._getOptionsContext());
this._refreshSelectedParser();
this._renderParserSelect();
this._renderParseResult();
this._setSpinnerVisible(false);
}
// Private
_onClick(e) {
this._textScanner.searchAt(e.clientX, e.clientY, 'click');
}
async _onSearchSource(textSource, cause) {
2020-01-16 21:22:38 +00:00
if (textSource === null) { return null; }
2019-10-30 01:58:24 +00:00
const searchText = this._textScanner.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
}
_onParserChange(e) {
const value = e.target.value;
apiModifySettings([{
action: 'set',
path: 'parsing.selectedParser',
value,
scope: 'profile',
optionsContext: this._getOptionsContext()
}], 'search');
2019-11-12 21:57:21 +00:00
}
_refreshSelectedParser() {
if (this._parseResults.length > 0) {
if (!this._getParseResult()) {
const value = this._parseResults[0].id;
apiModifySettings([{
action: 'set',
path: 'parsing.selectedParser',
value,
scope: 'profile',
optionsContext: this._getOptionsContext()
}], 'search');
2019-11-12 21:57:21 +00:00
}
}
2019-11-13 13:29:53 +00:00
}
_getParseResult() {
const {selectedParser} = this._options.parsing;
return this._parseResults.find((r) => r.id === selectedParser);
2019-11-12 21:57:21 +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: ''}]);
}
this._queryParser.textContent = '';
this._queryParser.appendChild(this._queryParserGenerator.createParseResult(previewTerms, true));
}
_renderParserSelect() {
this._queryParserSelect.textContent = '';
if (this._parseResults.length > 1) {
const {selectedParser} = this._options.parsing;
const select = this._queryParserGenerator.createParserSelect(this._parseResults, selectedParser);
select.addEventListener('change', this._onParserChange.bind(this));
this._queryParserSelect.appendChild(select);
2019-11-12 21:57:21 +00:00
}
}
_renderParseResult() {
const parseResult = this._getParseResult();
this._queryParser.textContent = '';
2020-02-06 02:00:02 +00:00
if (!parseResult) { return; }
this._queryParser.appendChild(this._queryParserGenerator.createParseResult(parseResult.content));
2019-11-12 21:57:21 +00:00
}
2019-10-29 21:49:36 +00:00
}