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

121 lines
3.9 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-04-05 04:59:30 +00:00
function optionsToForm(opts) {
2016-05-23 03:51:06 +00:00
$('#scan-length').val(opts.scanLength);
2016-05-22 23:53:28 +00:00
$('#activate-on-startup').prop('checked', opts.activateOnStartup);
$('#load-enamdict').prop('checked', opts.loadEnamDict);
$('#select-matched-text').prop('checked', opts.selectMatchedText);
2016-05-23 03:51:06 +00:00
$('#enable-anki-connect').prop('checked', opts.enableAnkiConnect);
$('#anki-vocab-deck').val(opts.ankiVocabDeck);
$('#anki-vocab-model').val(opts.ankiVocabModel);
$('#anki-kanji-deck').val(opts.ankiKanjiDeck);
$('#anki-kanji-model').val(opts.ankiKanjiModel);
2016-04-05 04:59:30 +00:00
}
function formToOptions() {
2016-04-05 05:07:57 +00:00
return sanitizeOptions({
2016-05-23 03:51:06 +00:00
scanLength: $('#scan-length').val(),
2016-05-22 23:53:28 +00:00
activateOnStartup: $('#activate-on-startup').prop('checked'),
loadEnamDict: $('#load-enamdict').prop('checked'),
2016-05-23 03:51:06 +00:00
selectMatchedText: $('#select-matched-text').prop('checked'),
enableAnkiConnect: $('#enable-anki-connect').prop('checked'),
ankiVocabDeck: $('#anki-vocab-deck').val(),
ankiVocabModel: $('#anki-vocab-model').val(),
ankiKanjiDeck: $('#anki-kanji-deck').val(),
ankiKanjiModel: $('#anki-kanji-model').val()
2016-04-05 05:07:57 +00:00
});
2016-04-05 04:59:30 +00:00
}
2016-05-22 20:41:52 +00:00
function updateAnkiFormVis(opts) {
2016-05-22 00:44:02 +00:00
if (opts.enableAnkiConnect) {
2016-05-22 20:41:52 +00:00
populateAnkiDeckAndModel();
2016-05-22 03:17:12 +00:00
$('.options-anki').fadeIn();
2016-05-21 22:50:59 +00:00
} else {
2016-05-22 03:17:12 +00:00
$('.options-anki').fadeOut();
2016-05-21 22:50:59 +00:00
}
}
2016-05-22 20:41:52 +00:00
function populateAnkiDeckAndModel() {
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 01:07:57 +00:00
}});
2016-05-22 00:11:17 +00:00
2016-05-22 23:53:28 +00:00
const ankiModel = $('.anki-model');
2016-05-22 00:44:02 +00:00
ankiModel.find('option').remove();
2016-05-22 20:41:52 +00:00
yomi.api_getModelNames({callback: (names) => {
2016-05-22 00:44:02 +00:00
if (names !== null) {
names.forEach((name) => ankiModel.append($('<option/>', {value: name, text: name})));
2016-05-22 23:53:28 +00:00
$('.anki-model').trigger('change');
2016-05-22 00:44:02 +00:00
}
2016-05-22 01:07:57 +00:00
}});
2016-05-22 20:41:52 +00:00
2016-05-22 00:11:17 +00:00
}
2016-05-07 21:02:54 +00:00
function onOptionsChanged() {
2016-04-07 04:02:31 +00:00
const opts = formToOptions();
2016-04-08 20:33:46 +00:00
saveOptions(opts, () => {
2016-05-22 20:41:52 +00:00
yomichan().setOptions(opts);
updateAnkiFormVis(opts);
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-22 20:41:52 +00:00
function onModelChanged() {
const modelName = $(this).val();
if (modelName === null) {
return;
}
yomichan().api_getModelFieldNames({modelName, callback: (names) => {
2016-05-22 23:53:28 +00:00
const table = $(this).closest('.tab-pane').find('.anki-fields');
2016-05-22 20:41:52 +00:00
table.find('tbody').remove();
const body = $('<tbody>');
names.forEach((name) => {
const row = $('<tr>');
row.append($('<td>').text(name));
2016-05-22 23:53:28 +00:00
row.append($('<input>', {class: 'anki-field-value form-control'}).data('field', name));
2016-05-22 20:41:52 +00:00
body.append(row);
});
table.append(body);
}});
}
2016-05-07 21:02:54 +00:00
$(document).ready(() => {
loadOptions((opts) => {
optionsToForm(opts);
2016-05-22 20:41:52 +00:00
2016-05-23 03:51:06 +00:00
$('input, select').on('input paste change', onOptionsChanged);
2016-05-22 23:53:28 +00:00
$('.anki-model').change(onModelChanged);
2016-05-22 20:41:52 +00:00
updateAnkiFormVis(opts);
2016-05-07 21:02:54 +00:00
});
2016-04-05 04:59:30 +00:00
});