yomichan/ext/bg/js/options-form.js

146 lines
5.0 KiB
JavaScript
Raw Normal View History

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-28 20:35:46 +00:00
function formToOptions(section, callback) {
loadOptions((optsOld) => {
const optsNew = $.extend({}, optsOld);
switch (section) {
case 'general':
optsNew.scanLength = $('#scan-length').val();
optsNew.activateOnStartup = $('#activate-on-startup').prop('checked');
optsNew.loadEnamDict = $('#load-enamdict').prop('checked');
optsNew.selectMatchedText = $('#select-matched-text').prop('checked');
optsNew.enableAnkiConnect = $('#enable-anki-connect').prop('checked');
break;
case 'anki':
optsNew.ankiVocabDeck = $('#anki-vocab-deck').val();
optsNew.ankiVocabModel = $('#anki-vocab-model').val();
optsNew.ankiKanjiDeck = $('#anki-kanji-deck').val();
optsNew.ankiKanjiModel = $('#anki-kanji-model').val();
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-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;
}
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>');
row.append($('<td>').text(name));
row.append($('<input>', {class: 'anki-field-value form-control'}).data('field', name));
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-28 21:18:43 +00:00
populateAnkiDeckAndModel(optsNew);
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-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);
$('#enable-anki-connect').prop('checked', opts.enableAnkiConnect);
2016-05-22 20:41:52 +00:00
2016-05-28 20:35:46 +00:00
$('.options-general input').change(onOptionsGeneralChanged);
$('.options-anki input, .options-anki select').change(onOptionsAnkiChanged);
2016-05-28 21:45:10 +00:00
$('.anki-model').change((e) => {
loadOptions((opts) => populateAnkiFields($(e.currentTarget), opts));
});
2016-05-28 21:00:35 +00:00
$('#enable-anki-connect').change((e) => {
if ($(e.currentTarget).prop('checked')) {
2016-05-28 20:35:46 +00:00
$('.options-anki').fadeIn();
} else {
$('.options-anki').fadeOut();
}
});
2016-05-22 20:41:52 +00:00
2016-05-28 20:35:46 +00:00
if (opts.enableAnkiConnect) {
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
});