aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/search-query-parser-generator.js
blob: 6989e157f89c97b48972bb2afe3c942fa66e2083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * Copyright (C) 2020  Yomichan Authors
 *
 * 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/>.
 */

/* global
 * TemplateHandler
 * api
 */

class QueryParserGenerator {
    constructor() {
        this._templateHandler = null;
    }

    async prepare() {
        const html = await api.getQueryParserTemplatesHtml();
        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()) {
                    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));
        segmentReadingContainer.textContent = segment.reading;
        return segmentContainer;
    }

    createSegmentText(text) {
        const fragment = document.createDocumentFragment();
        for (const chr of text) {
            const charContainer = this._templateHandler.instantiate('char');
            charContainer.textContent = chr;
            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;
            switch (parseResult.source) {
                case 'scanning-parser':
                    optionContainer.textContent = 'Scanning parser';
                    break;
                case 'mecab':
                    optionContainer.textContent = `MeCab: ${parseResult.dictionary}`;
                    break;
                default:
                    optionContainer.textContent = 'Unrecognized dictionary';
                    break;
            }
            optionContainer.defaultSelected = selectedParser === parseResult.id;
            selectContainer.appendChild(optionContainer);
        }
        return selectContainer;
    }
}