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

91 lines
3.4 KiB
JavaScript
Raw Normal View History

2020-02-06 02:00:02 +00:00
/*
* Copyright (C) 2020 Yomichan Authors
2020-02-06 02:00:02 +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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-03-11 02:30:36 +00:00
/* global
* TemplateHandler
* apiGetQueryParserTemplatesHtml
*/
2020-02-06 02:00:02 +00:00
class QueryParserGenerator {
constructor() {
this._templateHandler = null;
}
2020-02-10 20:09:23 +00:00
async prepare() {
2020-02-06 02:00:02 +00:00
const html = await apiGetQueryParserTemplatesHtml();
this._templateHandler = new TemplateHandler(html);
}
createParseResult(terms, preview=false) {
const fragment = document.createDocumentFragment();
for (const term of terms) {
const termContainer = this._templateHandler.instantiate(preview ? 'term-preview' : 'term');
for (const segment of term) {
if (!segment.text.trim()) { continue; }
if (!segment.reading.trim()) {
2020-02-06 02:00:02 +00:00
termContainer.appendChild(this.createSegmentText(segment.text));
} else {
termContainer.appendChild(this.createSegment(segment));
}
}
fragment.appendChild(termContainer);
}
return fragment;
}
createSegment(segment) {
const segmentContainer = this._templateHandler.instantiate('segment');
const segmentTextContainer = segmentContainer.querySelector('.query-parser-segment-text');
const segmentReadingContainer = segmentContainer.querySelector('.query-parser-segment-reading');
segmentTextContainer.appendChild(this.createSegmentText(segment.text));
2020-02-23 16:58:17 +00:00
segmentReadingContainer.textContent = segment.reading;
2020-02-06 02:00:02 +00:00
return segmentContainer;
}
createSegmentText(text) {
const fragment = document.createDocumentFragment();
for (const chr of text) {
const charContainer = this._templateHandler.instantiate('char');
2020-02-23 16:58:17 +00:00
charContainer.textContent = chr;
2020-02-06 02:00:02 +00:00
fragment.appendChild(charContainer);
}
return fragment;
}
createParserSelect(parseResults, selectedParser) {
const selectContainer = this._templateHandler.instantiate('select');
for (const parseResult of parseResults) {
const optionContainer = this._templateHandler.instantiate('select-option');
optionContainer.value = parseResult.id;
2020-04-12 00:53:24 +00:00
switch (parseResult.source) {
case 'scanning-parser':
optionContainer.textContent = 'Scanning parser';
break;
case 'mecab':
optionContainer.textContent = `MeCab: ${parseResult.dictionary}`;
break;
default:
optionContainer.textContent = 'Unrecognized dictionary';
2020-04-14 18:13:46 +00:00
break;
2020-04-12 00:53:24 +00:00
}
2020-02-06 02:00:02 +00:00
optionContainer.defaultSelected = selectedParser === parseResult.id;
selectContainer.appendChild(optionContainer);
}
return selectContainer;
}
}