/* * Copyright (C) 2016 Alex Yatskov * Author: Alex Yatskov * * 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. * * 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ function yomichan() { return chrome.extension.getBackgroundPage().yomichan; } function database() { return yomichan().translator.database; } function anki() { return yomichan().anki; } function fieldsToDict(selection) { const result = {}; selection.each((index, element) => { result[$(element).data('field')] = $(element).val(); }); return result; } function modelIdToFieldOptKey(id) { return { 'anki-term-model': 'ankiTermFields', 'anki-kanji-model': 'ankiKanjiFields' }[id]; } function modelIdToMarkers(id) { return { 'anki-term-model': ['audio', 'expression', 'expression-furigana', 'glossary', 'glossary-list', 'reading', 'sentence', 'tags', 'url'], 'anki-kanji-model': ['character', 'glossary', 'glossary-list', 'kunyomi', 'onyomi', 'url'], }[id]; } function getFormValues() { return loadOptions().then(optsOld => { const optsNew = $.extend({}, optsOld); optsNew.activateOnStartup = $('#activate-on-startup').prop('checked'); optsNew.enableAudioPlayback = $('#enable-audio-playback').prop('checked'); optsNew.showAdvancedOptions = $('#show-advanced-options').prop('checked'); optsNew.enableSoftKatakanaSearch = $('#enable-soft-katakana-search').prop('checked'); 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); 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')); $('.dict-group').each((index, element) => { const dictionary = $(element); const title = dictionary.data('title'); const enableTerms = dictionary.find('.dict-enable-terms').prop('checked'); const enableKanji = dictionary.find('.dict-enable-kanji').prop('checked'); optsNew.dictionaries[title] = {enableTerms, enableKanji}; }); return { optsNew: sanitizeOptions(optsNew), optsOld: sanitizeOptions(optsOld) }; }); } function updateVisibility(opts) { switch (opts.ankiMethod) { case 'ankiweb': $('#anki-general').show(); $('.anki-login').show(); break; case 'ankiconnect': $('#anki-general').show(); $('.anki-login').hide(); break; default: $('#anki-general').hide(); break; } if (opts.showAdvancedOptions) { $('.options-advanced').show(); } else { $('.options-advanced').hide(); } } 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(); }); } function onDictionaryImport() { const dictImport = $(this); dictImport.prop('disabled', true); const dictError = $('#dict-error'); dictError.hide(); const dictProgress = $('.dict-import-progress'); dictProgress.show(); const dictSpinner = $('#dict-spinner'); dictSpinner.show(); const setProgress = percent => { dictProgress.find('div').css('width', `${percent}%`); }; setProgress(0.0); const dictUrl = $('#dict-url'); loadOptions().then(opts => { database().importDictionary(dictUrl.val(), (total, current) => setProgress(current / total * 100.0)).then(summary => { opts.dictionaries[summary.title] = {enableTerms: summary.hasTerms, enableKanji: summary.hasKanji}; return saveOptions(opts).then(() => yomichan().setOptions(opts)); }).then(() => { 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(); }); }); } 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($('