2016-04-05 04:59:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
|
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +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.
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +00:00
|
|
|
* 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.
|
2016-04-06 05:18:55 +00:00
|
|
|
*
|
2016-04-05 04:59:30 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
//
|
|
|
|
// General
|
|
|
|
//
|
2016-04-05 04:59:30 +00:00
|
|
|
|
2016-05-22 20:41:52 +00:00
|
|
|
function yomichan() {
|
|
|
|
return chrome.extension.getBackgroundPage().yomichan;
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:37:05 +00:00
|
|
|
function getFormData() {
|
2017-01-15 19:15:24 +00:00
|
|
|
return optionsLoad().then(optionsOld => {
|
2017-01-15 19:30:04 +00:00
|
|
|
const optionsNew = $.extend(true, {}, optionsOld);
|
2017-01-15 19:15:24 +00:00
|
|
|
|
|
|
|
optionsNew.general.autoStart = $('#activate-on-startup').prop('checked');
|
2017-01-15 19:22:34 +00:00
|
|
|
optionsNew.general.audioPlayback = $('#audio-playback-buttons').prop('checked');
|
|
|
|
optionsNew.general.groupResults = $('#group-terms-results').prop('checked');
|
2017-01-27 17:01:12 +00:00
|
|
|
optionsNew.general.softKatakana = $('#soft-katakana-search').prop('checked');
|
2017-01-15 19:15:24 +00:00
|
|
|
optionsNew.general.showAdvanced = $('#show-advanced-options').prop('checked');
|
2017-01-27 17:01:12 +00:00
|
|
|
optionsNew.general.maxResults = parseInt($('#max-displayed-results').val(), 10);
|
2017-01-15 19:15:24 +00:00
|
|
|
|
|
|
|
optionsNew.scanning.requireShift = $('#hold-shift-to-scan').prop('checked');
|
|
|
|
optionsNew.scanning.selectText = $('#select-matched-text').prop('checked');
|
|
|
|
optionsNew.scanning.delay = parseInt($('#scan-delay').val(), 10);
|
|
|
|
optionsNew.scanning.length = parseInt($('#scan-length').val(), 10);
|
|
|
|
|
|
|
|
optionsNew.anki.enable = $('#anki-enable').prop('checked');
|
2017-01-15 19:22:34 +00:00
|
|
|
optionsNew.anki.tags = $('#card-tags').val().split(/[,; ]+/);
|
2017-01-19 04:46:17 +00:00
|
|
|
optionsNew.anki.htmlCards = $('#generate-html-cards').prop('checked');
|
2017-01-15 19:22:34 +00:00
|
|
|
optionsNew.anki.sentenceExt = parseInt($('#sentence-detection-extent').val(), 10);
|
2017-01-15 19:37:05 +00:00
|
|
|
if (optionsOld.anki.enable) {
|
|
|
|
optionsNew.anki.terms.deck = $('#anki-terms-deck').val();
|
|
|
|
optionsNew.anki.terms.model = $('#anki-terms-model').val();
|
|
|
|
optionsNew.anki.terms.fields = ankiFieldsToDict($('#terms .anki-field-value'));
|
|
|
|
optionsNew.anki.kanji.deck = $('#anki-kanji-deck').val();
|
|
|
|
optionsNew.anki.kanji.model = $('#anki-kanji-model').val();
|
|
|
|
optionsNew.anki.kanji.fields = ankiFieldsToDict($('#kanji .anki-field-value'));
|
|
|
|
}
|
2016-04-05 04:59:30 +00:00
|
|
|
|
2016-11-08 04:55:06 +00:00
|
|
|
$('.dict-group').each((index, element) => {
|
2016-11-07 02:30:51 +00:00
|
|
|
const dictionary = $(element);
|
2016-11-07 03:14:43 +00:00
|
|
|
const title = dictionary.data('title');
|
2017-01-15 20:42:44 +00:00
|
|
|
const priority = parseInt(dictionary.find('.dict-priority').val(), 10);
|
2017-01-17 06:30:53 +00:00
|
|
|
const enabled = dictionary.find('.dict-enabled').prop('checked');
|
|
|
|
optionsNew.dictionaries[title] = {priority, enabled};
|
2016-11-07 02:30:51 +00:00
|
|
|
});
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
return {optionsNew, optionsOld};
|
2016-05-28 20:35:46 +00:00
|
|
|
});
|
2016-05-21 22:50:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
function updateVisibility(options) {
|
2017-01-15 04:38:11 +00:00
|
|
|
const general = $('#anki-general');
|
2017-01-15 19:15:24 +00:00
|
|
|
if (options.anki.enable) {
|
2017-01-15 04:38:11 +00:00
|
|
|
general.show();
|
2017-01-13 04:14:05 +00:00
|
|
|
} else {
|
2017-01-15 04:38:11 +00:00
|
|
|
general.hide();
|
2016-10-16 06:23:40 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 04:38:11 +00:00
|
|
|
const advanced = $('.options-advanced');
|
2017-01-15 19:15:24 +00:00
|
|
|
if (options.general.showAdvanced) {
|
2017-01-15 04:38:11 +00:00
|
|
|
advanced.show();
|
2016-10-16 06:23:40 +00:00
|
|
|
} else {
|
2017-01-15 04:38:11 +00:00
|
|
|
advanced.hide();
|
2016-10-16 06:23:40 +00:00
|
|
|
}
|
2016-05-29 21:20:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
$(document).ready(() => {
|
|
|
|
Handlebars.partials = Handlebars.templates;
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
optionsLoad().then(options => {
|
|
|
|
$('#activate-on-startup').prop('checked', options.general.autoStart);
|
2017-01-15 19:22:34 +00:00
|
|
|
$('#audio-playback-buttons').prop('checked', options.general.audioPlayback);
|
|
|
|
$('#group-terms-results').prop('checked', options.general.groupResults);
|
2017-01-27 17:01:12 +00:00
|
|
|
$('#soft-katakana-search').prop('checked', options.general.softKatakana);
|
2017-01-15 19:15:24 +00:00
|
|
|
$('#show-advanced-options').prop('checked', options.general.showAdvanced);
|
2017-01-27 17:01:12 +00:00
|
|
|
$('#max-displayed-results').val(options.general.maxResults);
|
2016-11-15 04:42:45 +00:00
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
$('#hold-shift-to-scan').prop('checked', options.scanning.requireShift);
|
|
|
|
$('#select-matched-text').prop('checked', options.scanning.selectText);
|
|
|
|
$('#scan-delay').val(options.scanning.delay);
|
|
|
|
$('#scan-length').val(options.scanning.length);
|
2016-11-15 04:42:45 +00:00
|
|
|
|
2017-01-15 04:38:11 +00:00
|
|
|
$('#dict-purge').click(onDictionaryPurge);
|
|
|
|
$('#dict-importer a').click(onDictionarySetUrl);
|
|
|
|
$('#dict-import').click(onDictionaryImport);
|
|
|
|
$('#dict-url').on('input', onDictionaryUpdateUrl);
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
$('#anki-enable').prop('checked', options.anki.enable);
|
2017-01-15 19:22:34 +00:00
|
|
|
$('#card-tags').val(options.anki.tags.join(' '));
|
2017-01-19 04:46:17 +00:00
|
|
|
$('#generate-html-cards').prop('checked', options.anki.htmlCards);
|
2017-01-15 19:22:34 +00:00
|
|
|
$('#sentence-detection-extent').val(options.anki.sentenceExt);
|
2016-11-15 04:42:45 +00:00
|
|
|
$('input, select').not('.anki-model').change(onOptionsChanged);
|
|
|
|
$('.anki-model').change(onAnkiModelChanged);
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
populateDictionaries(options);
|
|
|
|
populateAnkiDeckAndModel(options);
|
|
|
|
updateVisibility(options);
|
2016-11-15 04:42:45 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
//
|
|
|
|
// Dictionary
|
|
|
|
//
|
|
|
|
|
|
|
|
function database() {
|
|
|
|
return yomichan().translator.database;
|
|
|
|
}
|
|
|
|
|
|
|
|
function showDictionaryError(error) {
|
|
|
|
const dialog = $('#dict-error');
|
|
|
|
if (error) {
|
|
|
|
dialog.show().find('span').text(error);
|
|
|
|
} else {
|
|
|
|
dialog.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showDictionarySpinner(show) {
|
|
|
|
const spinner = $('#dict-spinner');
|
|
|
|
if (show) {
|
|
|
|
spinner.show();
|
|
|
|
} else {
|
|
|
|
spinner.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
function populateDictionaries(options) {
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionaryError(null);
|
|
|
|
showDictionarySpinner(true);
|
|
|
|
|
|
|
|
const dictGroups = $('#dict-groups').empty();
|
|
|
|
const dictWarning = $('#dict-warning').hide();
|
2016-11-13 03:34:02 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
let dictCount = 0;
|
|
|
|
return database().getDictionaries().then(rows => {
|
|
|
|
rows.forEach(row => {
|
2017-01-15 20:42:44 +00:00
|
|
|
const dictOptions = options.dictionaries[row.title] || {enableTerms: false, enableKanji: false, priority: 0};
|
2016-11-14 17:12:49 +00:00
|
|
|
const html = Handlebars.templates['dictionary.html']({
|
|
|
|
title: row.title,
|
|
|
|
version: row.version,
|
2016-12-24 05:59:19 +00:00
|
|
|
revision: row.revision,
|
2017-01-15 20:42:44 +00:00
|
|
|
priority: dictOptions.priority,
|
2017-01-17 06:30:53 +00:00
|
|
|
enabled: dictOptions.enabled
|
2016-11-14 17:12:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
dictGroups.append($(html));
|
|
|
|
++dictCount;
|
|
|
|
});
|
|
|
|
|
2017-02-01 05:10:20 +00:00
|
|
|
updateVisibility(options);
|
|
|
|
|
2017-01-17 06:30:53 +00:00
|
|
|
$('.dict-enabled, .dict-priority').change(onOptionsChanged);
|
2016-11-14 17:12:49 +00:00
|
|
|
$('.dict-delete').click(onDictionaryDelete);
|
|
|
|
}).catch(error => {
|
|
|
|
showDictionaryError(error);
|
|
|
|
}).then(() => {
|
|
|
|
showDictionarySpinner(false);
|
|
|
|
if (dictCount === 0) {
|
|
|
|
dictWarning.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-15 05:14:22 +00:00
|
|
|
function onDictionaryPurge(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionaryError(null);
|
|
|
|
showDictionarySpinner(true);
|
2016-11-13 03:34:02 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
const dictControls = $('#dict-importer, #dict-groups').hide();
|
|
|
|
const dictProgress = $('#dict-purge-progress').show();
|
2016-11-13 03:34:02 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
return database().purge().catch(error => {
|
|
|
|
showDictionaryError(error);
|
|
|
|
}).then(() => {
|
|
|
|
showDictionarySpinner(false);
|
|
|
|
dictControls.show();
|
|
|
|
dictProgress.hide();
|
2017-01-15 19:15:24 +00:00
|
|
|
return optionsLoad().then(options => populateDictionaries(options));
|
2016-11-14 17:12:49 +00:00
|
|
|
});
|
|
|
|
}
|
2016-11-13 03:34:02 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
function onDictionaryDelete() {
|
|
|
|
showDictionaryError(null);
|
|
|
|
showDictionarySpinner(true);
|
2016-11-13 03:34:02 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
const dictGroup = $(this).closest('.dict-group');
|
|
|
|
const dictProgress = dictGroup.find('.dict-delete-progress').show();
|
|
|
|
const dictControls = dictGroup.find('.dict-group-controls').hide();
|
2016-11-14 16:15:08 +00:00
|
|
|
const setProgress = percent => {
|
|
|
|
dictProgress.find('.progress-bar').css('width', `${percent}%`);
|
2016-11-13 03:34:02 +00:00
|
|
|
};
|
|
|
|
|
2016-11-14 16:15:08 +00:00
|
|
|
setProgress(0.0);
|
|
|
|
|
|
|
|
database().deleteDictionary(dictGroup.data('title'), (total, current) => setProgress(current / total * 100.0)).catch(error => {
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionaryError(error);
|
2016-11-13 03:34:02 +00:00
|
|
|
}).then(() => {
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionarySpinner(false);
|
2016-11-13 03:34:02 +00:00
|
|
|
dictProgress.hide();
|
|
|
|
dictControls.show();
|
2017-01-15 19:15:24 +00:00
|
|
|
return optionsLoad().then(options => populateDictionaries(options));
|
2016-11-13 03:34:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-08 04:55:06 +00:00
|
|
|
function onDictionaryImport() {
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionaryError(null);
|
|
|
|
showDictionarySpinner(true);
|
2016-11-09 04:34:28 +00:00
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
const dictUrl = $('#dict-url');
|
|
|
|
const dictImporter = $('#dict-importer').hide();
|
|
|
|
const dictProgress = $('#dict-import-progress').show();
|
2016-11-14 01:50:09 +00:00
|
|
|
const setProgress = percent => {
|
2016-11-14 16:15:08 +00:00
|
|
|
dictProgress.find('.progress-bar').css('width', `${percent}%`);
|
2016-11-07 17:16:38 +00:00
|
|
|
};
|
|
|
|
|
2016-11-14 01:50:09 +00:00
|
|
|
setProgress(0.0);
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
optionsLoad().then(options => {
|
2016-11-14 01:50:09 +00:00
|
|
|
database().importDictionary(dictUrl.val(), (total, current) => setProgress(current / total * 100.0)).then(summary => {
|
2017-01-17 06:30:53 +00:00
|
|
|
options.dictionaries[summary.title] = {enabled: true, priority: 0};
|
2017-01-15 19:15:24 +00:00
|
|
|
return optionsSave(options).then(() => yomichan().setOptions(options));
|
2016-11-13 19:37:54 +00:00
|
|
|
}).then(() => {
|
2017-01-15 19:15:24 +00:00
|
|
|
return populateDictionaries(options);
|
2016-11-13 04:20:23 +00:00
|
|
|
}).catch(error => {
|
2016-11-14 17:12:49 +00:00
|
|
|
showDictionaryError(error);
|
2016-11-13 04:20:23 +00:00
|
|
|
}).then(() => {
|
2016-11-15 04:42:45 +00:00
|
|
|
showDictionarySpinner(false);
|
|
|
|
dictProgress.hide();
|
2016-11-14 03:10:28 +00:00
|
|
|
dictImporter.show();
|
2016-11-13 04:20:23 +00:00
|
|
|
dictUrl.val('');
|
|
|
|
dictUrl.trigger('input');
|
|
|
|
});
|
2016-11-08 04:55:06 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDictionarySetUrl(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const dictUrl = $('#dict-url');
|
|
|
|
const url = $(this).data('url');
|
|
|
|
if (url.includes('/')) {
|
|
|
|
dictUrl.val(url);
|
|
|
|
} else {
|
2016-12-24 00:25:14 +00:00
|
|
|
dictUrl.val(chrome.extension.getURL(`bg/lang/data/${url}/index.json`));
|
2016-11-08 04:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dictUrl.trigger('input');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDictionaryUpdateUrl() {
|
|
|
|
$('#dict-import').prop('disabled', $(this).val().length === 0);
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
//
|
|
|
|
// Anki
|
|
|
|
//
|
|
|
|
|
|
|
|
function anki() {
|
|
|
|
return yomichan().anki;
|
|
|
|
}
|
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
function showAnkiSpinner(show) {
|
|
|
|
const spinner = $('#anki-spinner');
|
|
|
|
if (show) {
|
|
|
|
spinner.show();
|
|
|
|
} else {
|
|
|
|
spinner.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showAnkiError(error) {
|
|
|
|
const dialog = $('#anki-error');
|
|
|
|
if (error) {
|
|
|
|
dialog.show().find('span').text(error);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dialog.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:37:05 +00:00
|
|
|
function ankiFieldsToDict(selection) {
|
2016-11-14 17:12:49 +00:00
|
|
|
const result = {};
|
|
|
|
selection.each((index, element) => {
|
|
|
|
result[$(element).data('field')] = $(element).val();
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
function populateAnkiDeckAndModel(options) {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(null);
|
|
|
|
showAnkiSpinner(true);
|
2016-11-08 04:55:06 +00:00
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
const ankiFormat = $('#anki-format').hide();
|
|
|
|
return Promise.all([anki().getDeckNames(), anki().getModelNames()]).then(([deckNames, modelNames]) => {
|
|
|
|
const ankiDeck = $('.anki-deck');
|
|
|
|
ankiDeck.find('option').remove();
|
2017-01-23 03:51:14 +00:00
|
|
|
deckNames.sort().forEach(name => ankiDeck.append($('<option/>', {value: name, text: name})));
|
2016-11-08 04:55:06 +00:00
|
|
|
|
2017-01-15 19:22:34 +00:00
|
|
|
$('#anki-terms-deck').val(options.anki.terms.deck);
|
2017-01-15 19:15:24 +00:00
|
|
|
$('#anki-kanji-deck').val(options.anki.kanji.deck);
|
2016-11-15 04:42:45 +00:00
|
|
|
|
|
|
|
const ankiModel = $('.anki-model');
|
|
|
|
ankiModel.find('option').remove();
|
2017-01-23 03:51:14 +00:00
|
|
|
modelNames.sort().forEach(name => ankiModel.append($('<option/>', {value: name, text: name})));
|
2016-11-15 04:42:45 +00:00
|
|
|
|
|
|
|
return Promise.all([
|
2017-01-15 19:22:34 +00:00
|
|
|
populateAnkiFields($('#anki-terms-model').val(options.anki.terms.model), options),
|
2017-01-15 19:15:24 +00:00
|
|
|
populateAnkiFields($('#anki-kanji-model').val(options.anki.kanji.model), options)
|
2016-11-15 04:42:45 +00:00
|
|
|
]);
|
2016-11-08 04:55:06 +00:00
|
|
|
}).then(() => {
|
|
|
|
ankiFormat.show();
|
|
|
|
}).catch(error => {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(error);
|
2016-11-08 04:55:06 +00:00
|
|
|
}).then(() => {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiSpinner(false);
|
2016-11-07 01:10:31 +00:00
|
|
|
});
|
2016-11-06 01:24:45 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
function populateAnkiFields(element, options) {
|
2016-11-07 01:56:47 +00:00
|
|
|
const tab = element.closest('.tab-pane');
|
2017-01-15 19:15:24 +00:00
|
|
|
const tabId = tab.attr('id');
|
2016-11-15 04:42:45 +00:00
|
|
|
const container = tab.find('tbody').empty();
|
2016-10-17 01:34:31 +00:00
|
|
|
|
2016-05-28 21:45:10 +00:00
|
|
|
const modelName = element.val();
|
2016-05-28 21:00:35 +00:00
|
|
|
if (modelName === null) {
|
2016-10-16 06:38:00 +00:00
|
|
|
return Promise.resolve();
|
2016-05-28 21:00:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
const markers = {
|
2017-01-22 03:30:01 +00:00
|
|
|
'terms': ['audio', 'dictionary', 'expression', 'furigana', 'glossary', 'reading', 'sentence', 'tags', 'url'],
|
|
|
|
'kanji': ['character', 'dictionary', 'glossary', 'kunyomi', 'onyomi', 'url']
|
2017-01-15 19:15:24 +00:00
|
|
|
}[tabId] || {};
|
2016-08-12 03:56:49 +00:00
|
|
|
|
2016-10-16 06:38:00 +00:00
|
|
|
return anki().getModelFieldNames(modelName).then(names => {
|
2016-09-15 05:34:05 +00:00
|
|
|
names.forEach(name => {
|
2017-01-15 19:15:24 +00:00
|
|
|
const value = options.anki[tabId].fields[name] || '';
|
|
|
|
const html = Handlebars.templates['model.html']({name, markers, value});
|
2016-11-07 01:56:47 +00:00
|
|
|
container.append($(html));
|
2016-05-28 21:00:35 +00:00
|
|
|
});
|
|
|
|
|
2016-11-07 01:56:47 +00:00
|
|
|
tab.find('.anki-field-value').change(onOptionsChanged);
|
|
|
|
tab.find('.marker-link').click(e => {
|
|
|
|
e.preventDefault();
|
|
|
|
const link = e.target;
|
|
|
|
$(link).closest('.input-group').find('.anki-field-value').val(`{${link.text}}`).trigger('change');
|
|
|
|
});
|
2016-10-16 06:38:00 +00:00
|
|
|
});
|
2016-05-28 21:00:35 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
function onAnkiModelChanged(e) {
|
|
|
|
if (!e.originalEvent) {
|
|
|
|
return;
|
|
|
|
}
|
2016-11-13 21:29:35 +00:00
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(null);
|
|
|
|
showAnkiSpinner(true);
|
|
|
|
|
2017-01-15 19:15:24 +00:00
|
|
|
const element = $(this);
|
2017-01-15 19:37:05 +00:00
|
|
|
getFormData().then(({optionsNew, optionsOld}) => {
|
2017-01-15 19:15:24 +00:00
|
|
|
const tab = element.closest('.tab-pane');
|
|
|
|
const tabId = tab.attr('id');
|
|
|
|
|
|
|
|
optionsNew.anki[tabId].fields = {};
|
|
|
|
populateAnkiFields(element, optionsNew).then(() => {
|
|
|
|
optionsSave(optionsNew).then(() => yomichan().setOptions(optionsNew));
|
2016-11-14 17:12:49 +00:00
|
|
|
}).catch(error => {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(error);
|
2016-11-14 17:12:49 +00:00
|
|
|
}).then(() => {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiSpinner(false);
|
2016-11-13 21:29:35 +00:00
|
|
|
});
|
2016-11-14 03:10:28 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-10-17 01:34:31 +00:00
|
|
|
function onOptionsChanged(e) {
|
|
|
|
if (!e.originalEvent && !e.isTrigger) {
|
|
|
|
return;
|
2016-10-16 06:23:40 +00:00
|
|
|
}
|
2016-04-08 20:33:46 +00:00
|
|
|
|
2017-01-15 19:37:05 +00:00
|
|
|
getFormData().then(({optionsNew, optionsOld}) => {
|
2017-01-15 19:15:24 +00:00
|
|
|
return optionsSave(optionsNew).then(() => {
|
|
|
|
yomichan().setOptions(optionsNew);
|
|
|
|
updateVisibility(optionsNew);
|
|
|
|
if (optionsNew.anki.enable !== optionsOld.anki.enable) {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(null);
|
|
|
|
showAnkiSpinner(true);
|
2017-01-15 19:15:24 +00:00
|
|
|
return populateAnkiDeckAndModel(optionsNew);
|
2016-10-17 01:34:31 +00:00
|
|
|
}
|
2016-10-16 02:05:53 +00:00
|
|
|
});
|
2016-11-15 04:42:45 +00:00
|
|
|
}).catch(error => {
|
|
|
|
showAnkiError(error);
|
|
|
|
}).then(() => {
|
|
|
|
showAnkiSpinner(false);
|
2016-10-17 01:34:31 +00:00
|
|
|
});
|
2016-05-28 20:35:46 +00:00
|
|
|
}
|