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) {
|
2016-08-12 03:56:49 +00:00
|
|
|
return {
|
|
|
|
'anki-term-model': 'ankiTermFields',
|
|
|
|
'anki-kanji-model': 'ankiKanjiFields'
|
|
|
|
}[id];
|
|
|
|
}
|
|
|
|
|
2016-08-19 03:24:27 +00:00
|
|
|
function modelIdToMarkers(id) {
|
2016-08-12 03:56:49 +00:00
|
|
|
return {
|
|
|
|
'anki-term-model': ['audio', 'expression', 'glossary', 'glossary-list', 'reading', 'sentence', 'tags', 'url'],
|
|
|
|
'anki-kanji-model': ['character', 'glossary', 'glossary-list', 'kunyomi', 'onyomi', 'url'],
|
|
|
|
}[id];
|
2016-05-29 01:27:26 +00:00
|
|
|
}
|
|
|
|
|
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-08-14 19:08:06 +00:00
|
|
|
optsNew.showAdvancedOptions = $('#show-advanced-options').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);
|
2016-08-10 15:44:52 +00:00
|
|
|
optsNew.ankiTermDeck = $('#anki-term-deck').val();
|
|
|
|
optsNew.ankiTermModel = $('#anki-term-model').val();
|
|
|
|
optsNew.ankiTermFields = fieldsToDict($('#term .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-08-10 15:44:52 +00:00
|
|
|
$('#anki-term-deck').val(opts.ankiTermDeck);
|
2016-05-28 22:21:01 +00:00
|
|
|
$('#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-08-10 15:44:52 +00:00
|
|
|
populateAnkiFields($('#anki-term-model').val(opts.ankiTermModel), opts);
|
2016-05-28 22:21:01 +00:00
|
|
|
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-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-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();
|
|
|
|
|
2016-08-12 03:56:49 +00:00
|
|
|
const tbody = $('<tbody>');
|
2016-05-28 21:00:35 +00:00
|
|
|
names.forEach((name) => {
|
2016-08-12 03:56:49 +00:00
|
|
|
const button = $('<button>', {type: 'button', class: 'btn btn-default dropdown-toggle'});
|
|
|
|
button.attr('data-toggle', 'dropdown').dropdown();
|
|
|
|
|
2016-08-19 03:24:27 +00:00
|
|
|
const markerItems = $('<ul>', {class: 'dropdown-menu dropdown-menu-right'});
|
|
|
|
for (const marker of markers) {
|
|
|
|
const link = $('<a>', {href: '#'}).text(`{${marker}}`);
|
2016-08-12 03:56:49 +00:00
|
|
|
link.click((e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
link.closest('.input-group').find('.anki-field-value').val(link.text()).trigger('change');
|
|
|
|
});
|
2016-08-19 03:24:27 +00:00
|
|
|
markerItems.append($('<li>').append(link));
|
2016-08-12 03:56:49 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 15:57:23 +00:00
|
|
|
const groupBtn = $('<div>', {class: 'input-group-btn'});
|
2016-08-12 03:56:49 +00:00
|
|
|
groupBtn.append(button.append($('<span>', {class: 'caret'})));
|
2016-08-19 03:24:27 +00:00
|
|
|
groupBtn.append(markerItems);
|
2016-08-11 15:57:23 +00:00
|
|
|
|
|
|
|
const group = $('<div>', {class: 'input-group'});
|
2016-08-12 03:56:49 +00:00
|
|
|
group.append($('<input>', {type: 'text', class: 'anki-field-value form-control', value: opts[optKey][name] || ''}).data('field', name).change(onOptionsAnkiChanged));
|
2016-08-11 15:57:23 +00:00
|
|
|
group.append(groupBtn);
|
|
|
|
|
2016-05-28 21:00:35 +00:00
|
|
|
const row = $('<tr>');
|
2016-05-29 01:53:06 +00:00
|
|
|
row.append($('<td>', {class: 'col-sm-2'}).text(name));
|
2016-08-11 15:57:23 +00:00
|
|
|
row.append($('<td>', {class: 'col-sm-10'}).append(group));
|
|
|
|
|
2016-08-12 03:56:49 +00:00
|
|
|
tbody.append(row);
|
2016-05-28 21:00:35 +00:00
|
|
|
});
|
|
|
|
|
2016-08-12 03:56:49 +00:00
|
|
|
table.append(tbody);
|
2016-05-28 21:00:35 +00:00
|
|
|
}});
|
|
|
|
}
|
|
|
|
|
2016-05-28 20:35:46 +00:00
|
|
|
function onOptionsGeneralChanged(e) {
|
2016-08-12 03:56:49 +00:00
|
|
|
if (!e.originalEvent && !e.isTrigger) {
|
2016-05-28 20:35:46 +00:00
|
|
|
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-08-14 19:08:06 +00:00
|
|
|
$('.options-anki').show();
|
2016-05-29 01:27:26 +00:00
|
|
|
} else if (optsOld.enableAnkiConnect && !optsNew.enableAnkiConnect) {
|
2016-08-14 19:08:06 +00:00
|
|
|
$('.options-anki').hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optsNew.showAdvancedOptions) {
|
|
|
|
$('.options-advanced').show();
|
|
|
|
} else {
|
|
|
|
$('.options-advanced').hide();
|
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) {
|
2016-08-12 03:56:49 +00:00
|
|
|
if (!e.originalEvent && !e.isTrigger) {
|
|
|
|
return;
|
2016-05-28 20:35:46 +00:00
|
|
|
}
|
2016-08-12 03:56:49 +00:00
|
|
|
|
|
|
|
formToOptions('anki', (opts) => {
|
|
|
|
saveOptions(opts, () => yomichan().setOptions(opts));
|
|
|
|
});
|
2016-05-28 20:35:46 +00:00
|
|
|
}
|
|
|
|
|
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-08-14 19:08:06 +00:00
|
|
|
$('#show-advanced-options').prop('checked', opts.showAdvancedOptions);
|
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-08-14 19:08:06 +00:00
|
|
|
if (opts.showAdvancedOptions) {
|
|
|
|
$('.options-advanced').show();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
});
|