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-05-22 20:41:52 +00:00
|
|
|
function yomichan() {
|
|
|
|
return chrome.extension.getBackgroundPage().yomichan;
|
|
|
|
}
|
|
|
|
|
2016-05-29 01:27:26 +00:00
|
|
|
function fieldsToDict(selection) {
|
|
|
|
const result = {};
|
|
|
|
selection.each((index, element) => {
|
|
|
|
result[$(element).data('field')] = $(element).val();
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
function modelIdToFieldOptKey(id) {
|
|
|
|
return {'anki-vocab-model': 'ankiVocabFields', 'anki-kanji-model': 'ankiKanjiFields'}[id];
|
|
|
|
}
|
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
function formToOptions(section, callback) {
|
|
|
|
loadOptions((optsOld) => {
|
|
|
|
const optsNew = $.extend({}, optsOld);
|
|
|
|
|
|
|
|
switch (section) {
|
|
|
|
case 'general':
|
2016-08-09 03:02:58 +00:00
|
|
|
optsNew.scanLength = parseInt($('#scan-length').val(), 10);
|
|
|
|
optsNew.activateOnStartup = $('#activate-on-startup').prop('checked');
|
|
|
|
optsNew.loadEnamDict = $('#load-enamdict').prop('checked');
|
|
|
|
optsNew.selectMatchedText = $('#select-matched-text').prop('checked');
|
2016-07-16 06:29:36 +00:00
|
|
|
optsNew.enableAudioPlayback = $('#enable-audio-playback').prop('checked');
|
2016-08-09 03:02:58 +00:00
|
|
|
optsNew.enableAnkiConnect = $('#enable-anki-connect').prop('checked');
|
2016-05-28 20:35:46 +00:00
|
|
|
break;
|
|
|
|
case 'anki':
|
2016-08-09 03:02:58 +00:00
|
|
|
optsNew.ankiCardTags = $('#anki-card-tags').val().split(/[,; ]+/);
|
|
|
|
optsNew.sentenceExtent = parseInt($('#sentence-extent').val(), 10);
|
|
|
|
optsNew.ankiVocabDeck = $('#anki-vocab-deck').val();
|
|
|
|
optsNew.ankiVocabModel = $('#anki-vocab-model').val();
|
2016-05-29 01:27:26 +00:00
|
|
|
optsNew.ankiVocabFields = fieldsToDict($('#vocab .anki-field-value'));
|
2016-08-09 03:02:58 +00:00
|
|
|
optsNew.ankiKanjiDeck = $('#anki-kanji-deck').val();
|
|
|
|
optsNew.ankiKanjiModel = $('#anki-kanji-model').val();
|
2016-05-29 01:27:26 +00:00
|
|
|
optsNew.ankiKanjiFields = fieldsToDict($('#kanji .anki-field-value'));
|
2016-05-28 20:35:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-04-05 04:59:30 +00:00
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
callback(sanitizeOptions(optsNew), sanitizeOptions(optsOld));
|
|
|
|
});
|
2016-05-21 22:50:59 +00:00
|
|
|
}
|
|
|
|
|
2016-05-28 21:18:43 +00:00
|
|
|
function populateAnkiDeckAndModel(opts) {
|
2016-05-22 20:41:52 +00:00
|
|
|
const yomi = yomichan();
|
2016-05-22 00:11:17 +00:00
|
|
|
|
2016-05-22 23:53:28 +00:00
|
|
|
const ankiDeck = $('.anki-deck');
|
2016-05-22 00:44:02 +00:00
|
|
|
ankiDeck.find('option').remove();
|
2016-05-22 20:41:52 +00:00
|
|
|
yomi.api_getDeckNames({callback: (names) => {
|
2016-05-22 00:44:02 +00:00
|
|
|
if (names !== null) {
|
|
|
|
names.forEach((name) => ankiDeck.append($('<option/>', {value: name, text: name})));
|
|
|
|
}
|
2016-05-22 00:11:17 +00:00
|
|
|
|
2016-05-28 22:21:01 +00:00
|
|
|
$('#anki-vocab-deck').val(opts.ankiVocabDeck);
|
|
|
|
$('#anki-kanji-deck').val(opts.ankiKanjiDeck);
|
|
|
|
}});
|
|
|
|
|
|
|
|
const ankiModel = $('.anki-model');
|
|
|
|
ankiModel.find('option').remove();
|
|
|
|
yomi.api_getModelNames({callback: (names) => {
|
|
|
|
if (names !== null) {
|
|
|
|
names.forEach((name) => ankiModel.append($('<option/>', {value: name, text: name})));
|
|
|
|
}
|
2016-05-28 21:45:10 +00:00
|
|
|
|
2016-05-28 22:21:01 +00:00
|
|
|
populateAnkiFields($('#anki-vocab-model').val(opts.ankiVocabModel), opts);
|
|
|
|
populateAnkiFields($('#anki-kanji-model').val(opts.ankiKanjiModel), opts);
|
2016-05-22 01:07:57 +00:00
|
|
|
}});
|
2016-05-22 00:11:17 +00:00
|
|
|
}
|
|
|
|
|
2016-05-29 21:20:13 +00:00
|
|
|
function updateAnkiStatus() {
|
|
|
|
$('.error-dlg').hide();
|
2016-08-09 03:02:58 +00:00
|
|
|
|
2016-05-29 21:20:13 +00:00
|
|
|
yomichan().api_getVersion({callback: (version) => {
|
|
|
|
if (version === null) {
|
|
|
|
$('.error-dlg-connection').show();
|
2016-06-13 05:36:12 +00:00
|
|
|
$('.options-anki-controls').hide();
|
2016-05-29 21:20:13 +00:00
|
|
|
} else if (version !== yomichan().getApiVersion()) {
|
|
|
|
$('.error-dlg-version').show();
|
2016-06-13 05:36:12 +00:00
|
|
|
$('.options-anki-controls').hide();
|
|
|
|
} else {
|
|
|
|
$('.options-anki-controls').show();
|
2016-05-29 21:20:13 +00:00
|
|
|
}
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
2016-05-28 21:45:10 +00:00
|
|
|
function populateAnkiFields(element, opts) {
|
|
|
|
const modelName = element.val();
|
2016-05-28 21:00:35 +00:00
|
|
|
if (modelName === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-29 01:27:26 +00:00
|
|
|
const optKey = modelIdToFieldOptKey(element.attr('id'));
|
2016-05-28 21:00:35 +00:00
|
|
|
yomichan().api_getModelFieldNames({modelName, callback: (names) => {
|
2016-05-28 21:45:10 +00:00
|
|
|
const table = element.closest('.tab-pane').find('.anki-fields');
|
2016-05-28 21:00:35 +00:00
|
|
|
table.find('tbody').remove();
|
|
|
|
|
|
|
|
const body = $('<tbody>');
|
|
|
|
names.forEach((name) => {
|
|
|
|
const row = $('<tr>');
|
2016-05-29 01:53:06 +00:00
|
|
|
row.append($('<td>', {class: 'col-sm-2'}).text(name));
|
2016-05-29 01:27:26 +00:00
|
|
|
const value = opts[optKey][name] || '';
|
2016-05-29 01:53:06 +00:00
|
|
|
row.append($('<td>', {class: 'col-sm-10'}).append($('<input>', {class: 'anki-field-value form-control', value}).data('field', name).change(onOptionsAnkiChanged)));
|
2016-05-28 21:00:35 +00:00
|
|
|
body.append(row);
|
|
|
|
});
|
|
|
|
|
|
|
|
table.append(body);
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
function onOptionsGeneralChanged(e) {
|
|
|
|
if (!e.originalEvent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
formToOptions('general', (optsNew, optsOld) => {
|
|
|
|
saveOptions(optsNew, () => {
|
|
|
|
yomichan().setOptions(optsNew);
|
|
|
|
if (!optsOld.enableAnkiConnect && optsNew.enableAnkiConnect) {
|
2016-05-29 21:20:13 +00:00
|
|
|
updateAnkiStatus();
|
2016-05-28 21:18:43 +00:00
|
|
|
populateAnkiDeckAndModel(optsNew);
|
2016-05-29 01:27:26 +00:00
|
|
|
$('.options-anki').fadeIn();
|
|
|
|
} else if (optsOld.enableAnkiConnect && !optsNew.enableAnkiConnect) {
|
|
|
|
$('.options-anki').fadeOut();
|
2016-05-28 20:35:46 +00:00
|
|
|
}
|
|
|
|
});
|
2016-04-08 20:33:46 +00:00
|
|
|
});
|
2016-05-07 21:02:54 +00:00
|
|
|
}
|
2016-04-08 20:33:46 +00:00
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
function onOptionsAnkiChanged(e) {
|
|
|
|
if (e.originalEvent) {
|
|
|
|
formToOptions('anki', (opts) => {
|
|
|
|
saveOptions(opts, () => yomichan().setOptions(opts));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-29 01:27:26 +00:00
|
|
|
function onAnkiModelChanged(e) {
|
|
|
|
if (e.originalEvent) {
|
|
|
|
formToOptions('anki', (opts) => {
|
|
|
|
opts[modelIdToFieldOptKey($(this).id)] = {};
|
|
|
|
populateAnkiFields($(this), opts);
|
|
|
|
saveOptions(opts, () => yomichan().setOptions(opts));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-07 21:02:54 +00:00
|
|
|
$(document).ready(() => {
|
|
|
|
loadOptions((opts) => {
|
2016-05-28 21:18:43 +00:00
|
|
|
$('#scan-length').val(opts.scanLength);
|
|
|
|
$('#activate-on-startup').prop('checked', opts.activateOnStartup);
|
|
|
|
$('#load-enamdict').prop('checked', opts.loadEnamDict);
|
|
|
|
$('#select-matched-text').prop('checked', opts.selectMatchedText);
|
2016-07-16 06:29:36 +00:00
|
|
|
$('#enable-audio-playback').prop('checked', opts.enableAudioPlayback);
|
2016-05-28 21:18:43 +00:00
|
|
|
$('#enable-anki-connect').prop('checked', opts.enableAnkiConnect);
|
2016-05-22 20:41:52 +00:00
|
|
|
|
2016-06-13 05:36:12 +00:00
|
|
|
$('#anki-card-tags').val(opts.ankiCardTags.join(' '));
|
2016-07-26 03:28:56 +00:00
|
|
|
$('#sentence-extent').val(opts.sentenceExtent);
|
2016-06-13 05:36:12 +00:00
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
$('.options-general input').change(onOptionsGeneralChanged);
|
2016-06-13 05:36:12 +00:00
|
|
|
$('.options-anki input').change(onOptionsAnkiChanged);
|
2016-05-29 01:27:26 +00:00
|
|
|
$('.anki-deck').change(onOptionsAnkiChanged);
|
|
|
|
$('.anki-model').change(onAnkiModelChanged);
|
2016-05-22 20:41:52 +00:00
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
if (opts.enableAnkiConnect) {
|
2016-05-29 21:20:13 +00:00
|
|
|
updateAnkiStatus();
|
2016-05-28 21:18:43 +00:00
|
|
|
populateAnkiDeckAndModel(opts);
|
2016-05-28 20:35:46 +00:00
|
|
|
$('.options-anki').show();
|
|
|
|
}
|
2016-05-07 21:02:54 +00:00
|
|
|
});
|
2016-04-05 04:59:30 +00:00
|
|
|
});
|