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

395 lines
13 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-11-08 04:55:06 +00:00
function database() {
return yomichan().translator.database;
}
2016-10-16 06:38:00 +00:00
function anki() {
return yomichan().anki;
}
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 {
2016-09-15 05:40:35 +00:00
'anki-term-model': 'ankiTermFields',
2016-08-12 03:56:49 +00:00
'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 {
2016-11-08 04:55:06 +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-08-12 03:56:49 +00:00
}[id];
2016-05-29 01:27:26 +00:00
}
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);
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
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();
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
}
function onDictionaryDelete() {
const dictGroup = $(this).closest('.dict-group');
const dictError = $('#dict-error');
dictError.hide();
const dictSpinner = $('#dict-spinner');
dictSpinner.show();
const dictProgress = dictGroup.find('.dict-delete-progress');
dictProgress.show();
const dictControls = dictGroup.find('.dict-controls');
dictControls.hide();
const callback = (total, current) => {
dictProgress.find('div').css('width', `${current / total * 100.0}%`);
};
database().deleteDictionary(dictGroup.data('title'), callback).then(() => {
dictGroup.slideUp();
}).catch(error => {
dictError.show().find('span').text(error);
}).then(() => {
dictSpinner.hide();
dictProgress.hide();
dictControls.show();
});
}
2016-11-08 04:55:06 +00:00
function onDictionaryImport() {
const dictImport = $(this);
dictImport.prop('disabled', true);
2016-11-07 17:16:38 +00:00
const dictError = $('#dict-error');
dictError.hide();
const dictProgress = $('.dict-import-progress');
2016-11-09 05:02:12 +00:00
dictProgress.show();
2016-11-09 04:34:28 +00:00
const dictSpinner = $('#dict-spinner');
dictSpinner.show();
2016-11-14 01:50:09 +00:00
const setProgress = percent => {
dictProgress.find('div').css('width', `${percent}%`);
2016-11-07 17:16:38 +00:00
};
2016-11-14 01:50:09 +00:00
setProgress(0.0);
2016-11-08 06:16:00 +00:00
const dictUrl = $('#dict-url');
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 => {
dictError.show().find('span').text(error);
}).then(() => {
dictImport.prop('disabled', false);
dictUrl.val('');
dictUrl.trigger('input');
dictProgress.hide();
dictSpinner.hide();
});
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);
}
function populateAnkiDeckAndModel(opts) {
const ankiSpinner = $('#anki-spinner');
ankiSpinner.show();
const ankiFormat = $('#anki-format');
ankiFormat.hide();
const ankiDeck = $('.anki-deck');
ankiDeck.find('option').remove();
const ankiModel = $('.anki-model');
ankiModel.find('option').remove();
return anki().getDeckNames().then(names => {
names.forEach(name => ankiDeck.append($('<option/>', {value: name, text: name})));
$('#anki-term-deck').val(opts.ankiTermDeck);
$('#anki-kanji-deck').val(opts.ankiKanjiDeck);
}).then(() => {
return anki().getModelNames();
}).then(names => {
names.forEach(name => ankiModel.append($('<option/>', {value: name, text: name})));
return populateAnkiFields($('#anki-term-model').val(opts.ankiTermModel), opts);
}).then(() => {
return populateAnkiFields($('#anki-kanji-model').val(opts.ankiKanjiModel), opts);
}).then(() => {
$('#anki-error').hide();
ankiFormat.show();
}).catch(error => {
$('#anki-error').show().find('span').text(error);
}).then(() => {
ankiSpinner.hide();
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-07 02:30:51 +00:00
const container = tab.find('tbody');
2016-11-07 01:56:47 +00:00
container.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-07 01:56:47 +00:00
const html = Handlebars.templates['model.html']({
name,
markers,
2016-10-17 01:34:31 +00:00
value: opts[optKey][name] || ''
2016-11-07 01:56:47 +00:00
});
2016-08-11 15:57:23 +00:00
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-13 21:29:35 +00:00
function populateDictionaries(opts) {
const dictGroups = $('#dict-groups');
dictGroups.empty();
const dictError = $('#dict-error');
dictError.hide();
const dictWarning = $('#dict-warning');
dictWarning.hide();
const dictSpinner = $('#dict-spinner');
dictSpinner.show();
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 => {
dictError.show().find('span').text(error);
}).then(() => {
if (dictCount === 0) {
dictWarning.show();
}
dictSpinner.hide();
});
}
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}) => {
saveOptions(optsNew).then(() => {
yomichan().setOptions(optsNew);
2016-10-16 06:23:40 +00:00
updateVisibility(optsNew);
2016-10-17 01:44:36 +00:00
const loginChanged =
2016-10-17 01:50:07 +00:00
optsNew.ankiUsername !== optsOld.ankiUsername ||
optsNew.ankiPassword !== optsOld.ankiPassword;
if (loginChanged && optsNew.ankiMethod === 'ankiweb') {
anki().logout().then(() => populateAnkiDeckAndModel(optsNew)).catch(error => {
$('#anki-error').show().find('span').text(error);
});
} else if (loginChanged || optsNew.ankiMethod !== optsOld.ankiMethod) {
2016-10-17 01:34:31 +00:00
populateAnkiDeckAndModel(optsNew);
}
2016-10-16 02:05:53 +00:00
});
2016-10-17 01:34:31 +00:00
});
2016-05-28 20:35:46 +00:00
}
2016-05-29 01:27:26 +00:00
function onAnkiModelChanged(e) {
2016-10-17 01:34:31 +00:00
if (!e.originalEvent) {
return;
}
getFormValues().then(({optsNew, optsOld}) => {
optsNew[modelIdToFieldOptKey($(this).id)] = {};
2016-10-17 01:44:36 +00:00
const ankiSpinner = $('#anki-spinner');
2016-10-17 01:34:31 +00:00
ankiSpinner.show();
populateAnkiFields($(this), optsNew).then(() => {
2016-09-13 20:38:37 +00:00
saveOptions(optsNew).then(() => yomichan().setOptions(optsNew));
2016-10-17 01:34:31 +00:00
}).catch(error => {
2016-10-17 01:44:36 +00:00
$('#anki-error').show().find('span').text(error);
2016-10-17 01:34:31 +00:00
}).then(() => {
2016-10-17 01:44:36 +00:00
$('#anki-error').hide();
2016-10-17 01:34:31 +00:00
ankiSpinner.hide();
2016-05-29 01:27:26 +00:00
});
2016-10-17 01:34:31 +00:00
});
2016-05-29 01:27:26 +00:00
}
2016-05-07 21:02:54 +00:00
$(document).ready(() => {
2016-11-07 01:10:31 +00:00
Handlebars.partials = Handlebars.templates;
2016-09-13 20:38:37 +00:00
loadOptions().then(opts => {
2016-05-28 21:18:43 +00:00
$('#activate-on-startup').prop('checked', opts.activateOnStartup);
$('#enable-audio-playback').prop('checked', opts.enableAudioPlayback);
2016-10-22 03:15:00 +00:00
$('#enable-soft-katakana-search').prop('checked', opts.enableSoftKatakanaSearch);
2016-09-15 05:54:07 +00:00
$('#show-advanced-options').prop('checked', opts.showAdvancedOptions);
2016-10-22 03:15:00 +00:00
$('#hold-shift-to-scan').prop('checked', opts.holdShiftToScan);
$('#select-matched-text').prop('checked', opts.selectMatchedText);
$('#scan-delay').val(opts.scanDelay);
2016-09-15 05:54:07 +00:00
$('#scan-length').val(opts.scanLength);
2016-10-16 02:05:53 +00:00
$('#anki-method').val(opts.ankiMethod);
$('#anki-username').val(opts.ankiUsername);
$('#anki-password').val(opts.ankiPassword);
2016-06-13 05:36:12 +00:00
$('#anki-card-tags').val(opts.ankiCardTags.join(' '));
$('#sentence-extent').val(opts.sentenceExtent);
2016-06-13 05:36:12 +00:00
2016-10-17 01:34:31 +00:00
$('input, select').not('.anki-model').change(onOptionsChanged);
2016-05-29 01:27:26 +00:00
$('.anki-model').change(onAnkiModelChanged);
2016-05-22 20:41:52 +00:00
2016-11-08 04:55:06 +00:00
$('#dict-importer a').click(onDictionarySetUrl);
$('#dict-import').click(onDictionaryImport);
$('#dict-url').on('input', onDictionaryUpdateUrl);
2016-11-07 17:16:38 +00:00
2016-11-07 02:09:12 +00:00
populateDictionaries(opts);
2016-10-16 02:21:02 +00:00
populateAnkiDeckAndModel(opts);
2016-10-16 06:23:40 +00:00
updateVisibility(opts);
2016-05-07 21:02:54 +00:00
});
2016-04-05 04:59:30 +00:00
});