2019-12-01 22:01:41 +00:00
|
|
|
/*
|
2020-01-01 17:00:00 +00:00
|
|
|
* Copyright (C) 2019-2020 Alex Yatskov <alex@foosoft.net>
|
2019-12-01 22:01:41 +00:00
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
|
|
|
*
|
|
|
|
* 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-12-01 22:01:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
function onAnkiFieldTemplatesReset(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$('#field-template-reset-modal').modal('show');
|
|
|
|
}
|
|
|
|
|
2019-12-02 02:08:46 +00:00
|
|
|
function onAnkiFieldTemplatesResetConfirm(e) {
|
|
|
|
e.preventDefault();
|
2019-12-01 22:01:41 +00:00
|
|
|
|
2019-12-02 02:08:46 +00:00
|
|
|
$('#field-template-reset-modal').modal('hide');
|
2019-12-01 22:01:41 +00:00
|
|
|
|
2019-12-02 02:08:46 +00:00
|
|
|
const element = document.querySelector('#field-templates');
|
|
|
|
element.value = profileOptionsGetDefaultFieldTemplates();
|
|
|
|
element.dispatchEvent(new Event('change'));
|
2019-12-01 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function ankiTemplatesInitialize() {
|
|
|
|
const markers = new Set(ankiGetFieldMarkers('terms').concat(ankiGetFieldMarkers('kanji')));
|
|
|
|
const fragment = ankiGetFieldMarkersHtml(markers);
|
|
|
|
|
|
|
|
const list = document.querySelector('#field-templates-list');
|
|
|
|
list.appendChild(fragment);
|
|
|
|
for (const node of list.querySelectorAll('.marker-link')) {
|
|
|
|
node.addEventListener('click', onAnkiTemplateMarkerClicked, false);
|
|
|
|
}
|
|
|
|
|
2019-12-15 05:02:52 +00:00
|
|
|
$('#field-templates').on('change', (e) => onAnkiFieldTemplatesChanged(e));
|
2019-12-01 22:01:41 +00:00
|
|
|
$('#field-template-render').on('click', (e) => onAnkiTemplateRender(e));
|
|
|
|
$('#field-templates-reset').on('click', (e) => onAnkiFieldTemplatesReset(e));
|
|
|
|
$('#field-templates-reset-confirm').on('click', (e) => onAnkiFieldTemplatesResetConfirm(e));
|
2019-12-15 05:02:52 +00:00
|
|
|
|
|
|
|
ankiTemplatesUpdateValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function ankiTemplatesUpdateValue() {
|
|
|
|
const optionsContext = getOptionsContext();
|
|
|
|
const options = await apiOptionsGet(optionsContext);
|
|
|
|
let templates = options.anki.fieldTemplates;
|
|
|
|
if (typeof templates !== 'string') { templates = profileOptionsGetDefaultFieldTemplates(); }
|
|
|
|
$('#field-templates').val(templates);
|
|
|
|
|
|
|
|
onAnkiTemplatesValidateCompile();
|
2019-12-01 22:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const ankiTemplatesValidateGetDefinition = (() => {
|
|
|
|
let cachedValue = null;
|
|
|
|
let cachedText = null;
|
|
|
|
|
|
|
|
return async (text, optionsContext) => {
|
|
|
|
if (cachedText !== text) {
|
|
|
|
const {definitions} = await apiTermsFind(text, {}, optionsContext);
|
|
|
|
if (definitions.length === 0) { return null; }
|
|
|
|
|
|
|
|
cachedValue = definitions[0];
|
|
|
|
cachedText = text;
|
|
|
|
}
|
|
|
|
return cachedValue;
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
async function ankiTemplatesValidate(infoNode, field, mode, showSuccessResult, invalidateInput) {
|
|
|
|
const text = document.querySelector('#field-templates-preview-text').value || '';
|
|
|
|
const exceptions = [];
|
|
|
|
let result = `No definition found for ${text}`;
|
|
|
|
try {
|
|
|
|
const optionsContext = getOptionsContext();
|
|
|
|
const definition = await ankiTemplatesValidateGetDefinition(text, optionsContext);
|
|
|
|
if (definition !== null) {
|
|
|
|
const options = await apiOptionsGet(optionsContext);
|
2019-12-14 21:59:44 +00:00
|
|
|
let templates = options.anki.fieldTemplates;
|
|
|
|
if (typeof templates !== 'string') { templates = profileOptionsGetDefaultFieldTemplates(); }
|
|
|
|
result = await dictFieldFormat(field, definition, mode, options, templates, exceptions);
|
2019-12-01 22:01:41 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exceptions.push(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
const hasException = exceptions.length > 0;
|
|
|
|
infoNode.hidden = !(showSuccessResult || hasException);
|
|
|
|
infoNode.textContent = hasException ? exceptions.map((e) => `${e}`).join('\n') : (showSuccessResult ? result : '');
|
|
|
|
infoNode.classList.toggle('text-danger', hasException);
|
|
|
|
if (invalidateInput) {
|
|
|
|
const input = document.querySelector('#field-templates');
|
|
|
|
input.classList.toggle('is-invalid', hasException);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 05:02:52 +00:00
|
|
|
async function onAnkiFieldTemplatesChanged(e) {
|
|
|
|
// Get value
|
|
|
|
let templates = e.currentTarget.value;
|
|
|
|
if (templates === profileOptionsGetDefaultFieldTemplates()) {
|
|
|
|
// Default
|
|
|
|
templates = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Overwrite
|
|
|
|
const optionsContext = getOptionsContext();
|
|
|
|
const options = await getOptionsMutable(optionsContext);
|
|
|
|
options.anki.fieldTemplates = templates;
|
|
|
|
await settingsSaveOptions();
|
|
|
|
|
|
|
|
// Compile
|
|
|
|
onAnkiTemplatesValidateCompile();
|
|
|
|
}
|
|
|
|
|
2019-12-01 22:01:41 +00:00
|
|
|
function onAnkiTemplatesValidateCompile() {
|
|
|
|
const infoNode = document.querySelector('#field-template-compile-result');
|
|
|
|
ankiTemplatesValidate(infoNode, '{expression}', 'term-kanji', false, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onAnkiTemplateMarkerClicked(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
document.querySelector('#field-template-render-text').value = `{${e.target.textContent}}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onAnkiTemplateRender(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const field = document.querySelector('#field-template-render-text').value;
|
|
|
|
const infoNode = document.querySelector('#field-template-render-result');
|
|
|
|
infoNode.hidden = true;
|
|
|
|
ankiTemplatesValidate(infoNode, field, 'term-kanji', true, false);
|
|
|
|
}
|