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;
|
|
|
|
}
|
|
|
|
|
2016-10-17 01:34:31 +00:00
|
|
|
function getFormValues() {
|
2016-09-13 20:38:37 +00:00
|
|
|
return loadOptions().then(optsOld => {
|
2016-05-28 20:35:46 +00:00
|
|
|
const optsNew = $.extend({}, optsOld);
|
|
|
|
|
2016-10-09 00:39:21 +00:00
|
|
|
optsNew.activateOnStartup = $('#activate-on-startup').prop('checked');
|
|
|
|
optsNew.enableAudioPlayback = $('#enable-audio-playback').prop('checked');
|
2016-10-17 01:34:31 +00:00
|
|
|
optsNew.showAdvancedOptions = $('#show-advanced-options').prop('checked');
|
2016-10-22 03:15:00 +00:00
|
|
|
optsNew.enableSoftKatakanaSearch = $('#enable-soft-katakana-search').prop('checked');
|
2016-10-17 01:34:31 +00:00
|
|
|
|
2016-10-09 00:39:21 +00:00
|
|
|
optsNew.holdShiftToScan = $('#hold-shift-to-scan').prop('checked');
|
|
|
|
optsNew.selectMatchedText = $('#select-matched-text').prop('checked');
|
|
|
|
optsNew.scanDelay = parseInt($('#scan-delay').val(), 10);
|
|
|
|
optsNew.scanLength = parseInt($('#scan-length').val(), 10);
|
|
|
|
|
2016-10-16 02:05:53 +00:00
|
|
|
optsNew.ankiMethod = $('#anki-method').val();
|
|
|
|
optsNew.ankiUsername = $('#anki-username').val();
|
|
|
|
optsNew.ankiPassword = $('#anki-password').val();
|
2016-10-09 00:39:21 +00:00
|
|
|
optsNew.ankiCardTags = $('#anki-card-tags').val().split(/[,; ]+/);
|
|
|
|
optsNew.sentenceExtent = parseInt($('#sentence-extent').val(), 10);
|
|
|
|
optsNew.ankiTermDeck = $('#anki-term-deck').val();
|
|
|
|
optsNew.ankiTermModel = $('#anki-term-model').val();
|
|
|
|
optsNew.ankiTermFields = fieldsToDict($('#term .anki-field-value'));
|
|
|
|
optsNew.ankiKanjiDeck = $('#anki-kanji-deck').val();
|
|
|
|
optsNew.ankiKanjiModel = $('#anki-kanji-model').val();
|
|
|
|
optsNew.ankiKanjiFields = fieldsToDict($('#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');
|
2016-11-07 02:30:51 +00:00
|
|
|
const enableTerms = dictionary.find('.dict-enable-terms').prop('checked');
|
|
|
|
const enableKanji = dictionary.find('.dict-enable-kanji').prop('checked');
|
2016-11-07 03:14:43 +00:00
|
|
|
optsNew.dictionaries[title] = {enableTerms, enableKanji};
|
2016-11-07 02:30:51 +00:00
|
|
|
});
|
|
|
|
|
2016-09-13 20:38:37 +00:00
|
|
|
return {
|
|
|
|
optsNew: sanitizeOptions(optsNew),
|
|
|
|
optsOld: sanitizeOptions(optsOld)
|
|
|
|
};
|
2016-05-28 20:35:46 +00:00
|
|
|
});
|
2016-05-21 22:50:59 +00:00
|
|
|
}
|
|
|
|
|
2016-10-16 06:23:40 +00:00
|
|
|
function updateVisibility(opts) {
|
|
|
|
switch (opts.ankiMethod) {
|
|
|
|
case 'ankiweb':
|
2016-10-17 01:34:31 +00:00
|
|
|
$('#anki-general').show();
|
|
|
|
$('.anki-login').show();
|
2016-10-16 06:23:40 +00:00
|
|
|
break;
|
|
|
|
case 'ankiconnect':
|
2016-10-17 01:34:31 +00:00
|
|
|
$('#anki-general').show();
|
|
|
|
$('.anki-login').hide();
|
2016-10-16 06:23:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
2016-10-17 01:34:31 +00:00
|
|
|
$('#anki-general').hide();
|
2016-10-16 06:23:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.showAdvancedOptions) {
|
|
|
|
$('.options-advanced').show();
|
|
|
|
} else {
|
|
|
|
$('.options-advanced').hide();
|
|
|
|
}
|
2016-05-29 21:20:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
$(document).ready(() => {
|
|
|
|
Handlebars.partials = Handlebars.templates;
|
|
|
|
|
|
|
|
loadOptions().then(opts => {
|
|
|
|
$('#activate-on-startup').prop('checked', opts.activateOnStartup);
|
|
|
|
$('#enable-audio-playback').prop('checked', opts.enableAudioPlayback);
|
|
|
|
$('#enable-soft-katakana-search').prop('checked', opts.enableSoftKatakanaSearch);
|
|
|
|
$('#show-advanced-options').prop('checked', opts.showAdvancedOptions);
|
|
|
|
|
|
|
|
$('#hold-shift-to-scan').prop('checked', opts.holdShiftToScan);
|
|
|
|
$('#select-matched-text').prop('checked', opts.selectMatchedText);
|
|
|
|
$('#scan-delay').val(opts.scanDelay);
|
|
|
|
$('#scan-length').val(opts.scanLength);
|
|
|
|
|
|
|
|
$('#anki-method').val(opts.ankiMethod);
|
|
|
|
$('#anki-username').val(opts.ankiUsername);
|
|
|
|
$('#anki-password').val(opts.ankiPassword);
|
|
|
|
$('#anki-card-tags').val(opts.ankiCardTags.join(' '));
|
|
|
|
$('#sentence-extent').val(opts.sentenceExtent);
|
|
|
|
|
|
|
|
$('input, select').not('.anki-model').change(onOptionsChanged);
|
|
|
|
$('.anki-model').change(onAnkiModelChanged);
|
|
|
|
|
|
|
|
$('#dict-purge').click(onDictionaryPurge);
|
|
|
|
$('#dict-importer a').click(onDictionarySetUrl);
|
|
|
|
$('#dict-import').click(onDictionaryImport);
|
|
|
|
$('#dict-url').on('input', onDictionaryUpdateUrl);
|
|
|
|
|
|
|
|
populateDictionaries(opts);
|
|
|
|
populateAnkiDeckAndModel(opts);
|
|
|
|
updateVisibility(opts);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function populateDictionaries(opts) {
|
|
|
|
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 => {
|
|
|
|
const dictOpts = opts.dictionaries[row.title] || {enableTerms: false, enableKanji: false};
|
|
|
|
const html = Handlebars.templates['dictionary.html']({
|
|
|
|
title: row.title,
|
|
|
|
version: row.version,
|
|
|
|
hasTerms: row.hasTerms,
|
|
|
|
hasKanji: row.hasKanji,
|
|
|
|
enableTerms: dictOpts.enableTerms,
|
|
|
|
enableKanji: dictOpts.enableKanji
|
|
|
|
});
|
|
|
|
|
|
|
|
dictGroups.append($(html));
|
|
|
|
++dictCount;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.dict-enable-terms, .dict-enable-kanji').change(onOptionsChanged);
|
|
|
|
$('.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();
|
|
|
|
return loadOptions().then(opts => populateDictionaries(opts));
|
|
|
|
});
|
|
|
|
}
|
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();
|
2016-11-14 03:10:28 +00:00
|
|
|
return loadOptions().then(opts => populateDictionaries(opts));
|
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);
|
|
|
|
|
2016-11-13 04:20:23 +00:00
|
|
|
loadOptions().then(opts => {
|
2016-11-14 01:50:09 +00:00
|
|
|
database().importDictionary(dictUrl.val(), (total, current) => setProgress(current / total * 100.0)).then(summary => {
|
2016-11-13 21:29:35 +00:00
|
|
|
opts.dictionaries[summary.title] = {enableTerms: summary.hasTerms, enableKanji: summary.hasKanji};
|
2016-11-14 01:50:09 +00:00
|
|
|
return saveOptions(opts).then(() => yomichan().setOptions(opts));
|
2016-11-13 19:37:54 +00:00
|
|
|
}).then(() => {
|
2016-11-13 04:20:23 +00:00
|
|
|
return populateDictionaries(opts);
|
|
|
|
}).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 {
|
|
|
|
dictUrl.val(chrome.extension.getURL(`bg/data/${url}/index.json`));
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
function fieldsToDict(selection) {
|
|
|
|
const result = {};
|
|
|
|
selection.each((index, element) => {
|
|
|
|
result[$(element).data('field')] = $(element).val();
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function modelIdToFieldOptKey(id) {
|
|
|
|
return {
|
|
|
|
'anki-term-model': 'ankiTermFields',
|
|
|
|
'anki-kanji-model': 'ankiKanjiFields'
|
|
|
|
}[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
function modelIdToMarkers(id) {
|
|
|
|
return {
|
2016-11-15 04:42:45 +00:00
|
|
|
'anki-term-model': [
|
|
|
|
'audio',
|
|
|
|
'expression',
|
|
|
|
'expression-furigana',
|
|
|
|
'glossary',
|
|
|
|
'glossary-list',
|
|
|
|
'reading',
|
|
|
|
'sentence',
|
|
|
|
'tags',
|
|
|
|
'url'
|
|
|
|
],
|
|
|
|
'anki-kanji-model': [
|
|
|
|
'character',
|
|
|
|
'glossary',
|
|
|
|
'glossary-list',
|
|
|
|
'kunyomi',
|
|
|
|
'onyomi',
|
|
|
|
'url'
|
|
|
|
],
|
2016-11-14 17:12:49 +00:00
|
|
|
}[id];
|
|
|
|
}
|
|
|
|
|
2016-11-08 04:55:06 +00:00
|
|
|
function populateAnkiDeckAndModel(opts) {
|
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();
|
2016-11-08 04:55:06 +00:00
|
|
|
|
2016-11-15 04:42:45 +00:00
|
|
|
return Promise.all([anki().getDeckNames(), anki().getModelNames()]).then(([deckNames, modelNames]) => {
|
|
|
|
const ankiDeck = $('.anki-deck');
|
|
|
|
ankiDeck.find('option').remove();
|
|
|
|
deckNames.forEach(name => ankiDeck.append($('<option/>', {value: name, text: name})));
|
2016-11-08 04:55:06 +00:00
|
|
|
|
|
|
|
$('#anki-term-deck').val(opts.ankiTermDeck);
|
|
|
|
$('#anki-kanji-deck').val(opts.ankiKanjiDeck);
|
2016-11-15 04:42:45 +00:00
|
|
|
|
|
|
|
const ankiModel = $('.anki-model');
|
|
|
|
ankiModel.find('option').remove();
|
|
|
|
modelNames.forEach(name => ankiModel.append($('<option/>', {value: name, text: name})));
|
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
populateAnkiFields($('#anki-term-model').val(opts.ankiTermModel), opts),
|
|
|
|
populateAnkiFields($('#anki-kanji-model').val(opts.ankiKanjiModel), opts)
|
|
|
|
]);
|
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
|
|
|
}
|
|
|
|
|
2016-05-28 21:45:10 +00:00
|
|
|
function populateAnkiFields(element, opts) {
|
2016-11-07 01:56:47 +00:00
|
|
|
const tab = element.closest('.tab-pane');
|
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
|
|
|
}
|
|
|
|
|
2016-08-12 03:56:49 +00:00
|
|
|
const modelId = element.attr('id');
|
|
|
|
const optKey = modelIdToFieldOptKey(modelId);
|
2016-08-19 03:24:27 +00:00
|
|
|
const markers = modelIdToMarkers(modelId);
|
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 => {
|
2016-11-15 04:42:45 +00:00
|
|
|
const html = Handlebars.templates['model.html']({name, markers, value: opts[optKey][name] || ''});
|
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);
|
|
|
|
|
2016-11-14 17:12:49 +00:00
|
|
|
getFormValues().then(({optsNew, optsOld}) => {
|
|
|
|
optsNew[modelIdToFieldOptKey($(this).id)] = {};
|
|
|
|
populateAnkiFields($(this), optsNew).then(() => {
|
|
|
|
saveOptions(optsNew).then(() => yomichan().setOptions(optsNew));
|
|
|
|
}).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
|
|
|
|
2016-10-17 01:34:31 +00:00
|
|
|
getFormValues().then(({optsNew, optsOld}) => {
|
2016-11-15 04:42:45 +00:00
|
|
|
return saveOptions(optsNew).then(() => {
|
2016-10-17 01:34:31 +00:00
|
|
|
yomichan().setOptions(optsNew);
|
2016-10-16 06:23:40 +00:00
|
|
|
updateVisibility(optsNew);
|
2016-10-17 01:44:36 +00:00
|
|
|
|
2016-10-19 16:26:26 +00:00
|
|
|
const loginChanged =
|
2016-10-17 01:50:07 +00:00
|
|
|
optsNew.ankiUsername !== optsOld.ankiUsername ||
|
|
|
|
optsNew.ankiPassword !== optsOld.ankiPassword;
|
|
|
|
|
2016-10-19 16:26:26 +00:00
|
|
|
if (loginChanged && optsNew.ankiMethod === 'ankiweb') {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(null);
|
|
|
|
showAnkiSpinner(true);
|
|
|
|
return anki().logout().then(() => populateAnkiDeckAndModel(optsNew));
|
2016-10-19 16:26:26 +00:00
|
|
|
} else if (loginChanged || optsNew.ankiMethod !== optsOld.ankiMethod) {
|
2016-11-15 04:42:45 +00:00
|
|
|
showAnkiError(null);
|
|
|
|
showAnkiSpinner(true);
|
|
|
|
return populateAnkiDeckAndModel(optsNew);
|
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
|
|
|
}
|