aboutsummaryrefslogtreecommitdiff
path: root/ext/js/templates/template-renderer-media-provider.js
blob: 28b9c7f35be33676596d3b868e9275ed66b9143b (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
 * Copyright (C) 2023-2024  Yomitan Authors
 * Copyright (C) 2021-2022  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/>.
 */

import {Handlebars} from '../../lib/handlebars.js';

export class TemplateRendererMediaProvider {
    constructor() {
        /** @type {?import('anki-note-builder').Requirement[]} */
        this._requirements = null;
    }

    /** @type {?import('anki-note-builder').Requirement[]} */
    get requirements() {
        return this._requirements;
    }

    set requirements(value) {
        this._requirements = value;
    }

    /**
     * @param {import('anki-templates').NoteData} root
     * @param {unknown[]} args
     * @param {import('core').SerializableObject} namedArgs
     * @returns {boolean}
     */
    hasMedia(root, args, namedArgs) {
        const {media} = root;
        const data = this._getMediaData(media, args, namedArgs);
        return (data !== null);
    }

    /**
     * @param {import('anki-templates').NoteData} root
     * @param {unknown[]} args
     * @param {import('core').SerializableObject} namedArgs
     * @returns {?string}
     */
    getMedia(root, args, namedArgs) {
        const {media} = root;
        const data = this._getMediaData(media, args, namedArgs);
        if (data !== null) {
            const result = this._getFormattedValue(data, namedArgs);
            if (typeof result === 'string') { return result; }
        }
        const defaultValue = namedArgs.default;
        return defaultValue === null || typeof defaultValue === 'string' ? defaultValue : '';
    }

    // Private

    /**
     * @param {import('anki-note-builder').Requirement} value
     */
    _addRequirement(value) {
        if (this._requirements === null) { return; }
        this._requirements.push(value);
    }

    /**
     * @param {import('anki-templates').MediaObject} data
     * @param {import('core').SerializableObject} namedArgs
     * @returns {string}
     */
    _getFormattedValue(data, namedArgs) {
        let {value} = data;
        const {escape = true} = namedArgs;
        if (escape) {
            // Handlebars is a custom version of the library without type information, so it's assumed to be "any".
            // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
            value = Handlebars.Utils.escapeExpression(value);
        }
        return value;
    }

    /**
     * @param {import('anki-templates').Media} media
     * @param {unknown[]} args
     * @param {import('core').SerializableObject} namedArgs
     * @returns {?(import('anki-templates').MediaObject)}
     */
    _getMediaData(media, args, namedArgs) {
        const type = args[0];
        switch (type) {
            case 'audio': return this._getSimpleMediaData(media, 'audio');
            case 'screenshot': return this._getSimpleMediaData(media, 'screenshot');
            case 'clipboardImage': return this._getSimpleMediaData(media, 'clipboardImage');
            case 'clipboardText': return this._getSimpleMediaData(media, 'clipboardText');
            case 'selectionText': return this._getSimpleMediaData(media, 'selectionText');
            case 'textFurigana': return this._getTextFurigana(media, args[1], namedArgs);
            case 'dictionaryMedia': return this._getDictionaryMedia(media, args[1], namedArgs);
            default: return null;
        }
    }

    /**
     * @param {import('anki-templates').Media} media
     * @param {import('anki-templates').MediaSimpleType} type
     * @returns {?import('anki-templates').MediaObject}
     */
    _getSimpleMediaData(media, type) {
        const result = media[type];
        if (typeof result === 'object' && result !== null) { return result; }
        this._addRequirement({type});
        return null;
    }

    /**
     * @param {import('anki-templates').Media} media
     * @param {unknown} path
     * @param {import('core').SerializableObject} namedArgs
     * @returns {?import('anki-templates').MediaObject}
     */
    _getDictionaryMedia(media, path, namedArgs) {
        if (typeof path !== 'string') { return null; }
        const {dictionaryMedia} = media;
        const {dictionary} = namedArgs;
        if (typeof dictionary !== 'string') { return null; }
        if (
            typeof dictionaryMedia !== 'undefined' &&
            Object.prototype.hasOwnProperty.call(dictionaryMedia, dictionary)
        ) {
            const dictionaryMedia2 = dictionaryMedia[dictionary];
            if (Object.prototype.hasOwnProperty.call(dictionaryMedia2, path)) {
                const result = dictionaryMedia2[path];
                if (typeof result === 'object' && result !== null) {
                    return result;
                }
            }
        }
        this._addRequirement({
            type: 'dictionaryMedia',
            dictionary,
            path,
        });
        return null;
    }

    /**
     * @param {import('anki-templates').Media} media
     * @param {unknown} text
     * @param {import('core').SerializableObject} namedArgs
     * @returns {?import('anki-templates').MediaObject}
     */
    _getTextFurigana(media, text, namedArgs) {
        if (typeof text !== 'string') { return null; }
        const readingMode = this._normalizeReadingMode(namedArgs.readingMode);
        const {textFurigana} = media;
        if (Array.isArray(textFurigana)) {
            for (const entry of textFurigana) {
                if (entry.text !== text || entry.readingMode !== readingMode) { continue; }
                return entry.details;
            }
        }
        this._addRequirement({
            type: 'textFurigana',
            text,
            readingMode,
        });
        return null;
    }

    /**
     * @param {unknown} value
     * @returns {?import('anki-templates').TextFuriganaReadingMode}
     */
    _normalizeReadingMode(value) {
        switch (value) {
            case 'hiragana':
            case 'katakana':
                return value;
            default:
                return null;
        }
    }
}