/* * 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 . */ // // General // function yomichan() { return chrome.extension.getBackgroundPage().yomichan; } 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(); } } $(document).ready(() => { Handlebars.partials = Handlebars.templates; loadOptions().then(opts => { $('#activate-on-startup').prop('checked', opts.activateOnStartup); $('#enable-audio-playback').prop('checked', opts.enableAudioPlayback); $('#enable-soft-katakana-search').prop('checked', opts.enableSoftKatakanaSearch); $('#show-advanced-options').prop('checked', opts.showAdvancedOptions); $('#hold-shift-to-scan').prop('checked', opts.holdShiftToScan); $('#select-matched-text').prop('checked', opts.selectMatchedText); $('#scan-delay').val(opts.scanDelay); $('#scan-length').val(opts.scanLength); $('#anki-method').val(opts.ankiMethod); $('#anki-username').val(opts.ankiUsername); $('#anki-password').val(opts.ankiPassword); $('#anki-card-tags').val(opts.ankiCardTags.join(' ')); $('#sentence-extent').val(opts.sentenceExtent); $('input, select').not('.anki-model').change(onOptionsChanged); $('.anki-model').change(onAnkiModelChanged); $('#dict-purge').click(onDictionaryPurge); $('#dict-importer a').click(onDictionarySetUrl); $('#dict-import').click(onDictionaryImport); $('#dict-url').on('input', onDictionaryUpdateUrl); populateDictionaries(opts); populateAnkiDeckAndModel(opts); updateVisibility(opts); }); }); // // Dictionary // function database() { return yomichan().translator.database; } function showDictionaryError(error) { const dialog = $('#dict-error'); if (error) { dialog.show().find('span').text(error); } else { dialog.hide(); } } function showDictionarySpinner(show) { const spinner = $('#dict-spinner'); if (show) { spinner.show(); } else { spinner.hide(); } } function populateDictionaries(opts) { showDictionaryError(null); showDictionarySpinner(true); const dictGroups = $('#dict-groups').empty(); const dictWarning = $('#dict-warning').hide(); 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, revision: row.revision, 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 => { showDictionaryError(error); }).then(() => { showDictionarySpinner(false); if (dictCount === 0) { dictWarning.show(); } }); } function onDictionaryPurge(e) { e.preventDefault(); showDictionaryError(null); showDictionarySpinner(true); const dictControls = $('#dict-importer, #dict-groups').hide(); const dictProgress = $('#dict-purge-progress').show(); return database().purge().catch(error => { showDictionaryError(error); }).then(() => { showDictionarySpinner(false); dictControls.show(); dictProgress.hide(); return loadOptions().then(opts => populateDictionaries(opts)); }); } function onDictionaryDelete() { showDictionaryError(null); showDictionarySpinner(true); const dictGroup = $(this).closest('.dict-group'); const dictProgress = dictGroup.find('.dict-delete-progress').show(); const dictControls = dictGroup.find('.dict-group-controls').hide(); const setProgress = percent => { dictProgress.find('.progress-bar').css('width', `${percent}%`); }; setProgress(0.0); database().deleteDictionary(dictGroup.data('title'), (total, current) => setProgress(current / total * 100.0)).catch(error => { showDictionaryError(error); }).then(() => { showDictionarySpinner(false); dictProgress.hide(); dictControls.show(); return loadOptions().then(opts => populateDictionaries(opts)); }); } function onDictionaryImport() { showDictionaryError(null); showDictionarySpinner(true); const dictUrl = $('#dict-url'); const dictImporter = $('#dict-importer').hide(); const dictProgress = $('#dict-import-progress').show(); const setProgress = percent => { dictProgress.find('.progress-bar').css('width', `${percent}%`); }; setProgress(0.0); 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 => { showDictionaryError(error); }).then(() => { showDictionarySpinner(false); dictProgress.hide(); dictImporter.show(); dictUrl.val(''); dictUrl.trigger('input'); }); }); } 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/lang/data/${url}/index.json`)); } dictUrl.trigger('input'); } function onDictionaryUpdateUrl() { $('#dict-import').prop('disabled', $(this).val().length === 0); } // // Anki // function anki() { return yomichan().anki; } function showAnkiSpinner(show) { const spinner = $('#anki-spinner'); if (show) { spinner.show(); } else { spinner.hide(); } } function showAnkiError(error) { const dialog = $('#anki-error'); if (error) { dialog.show().find('span').text(error); } else { dialog.hide(); } } 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 populateAnkiDeckAndModel(opts) { showAnkiError(null); showAnkiSpinner(true); const ankiFormat = $('#anki-format').hide(); return Promise.all([anki().getDeckNames(), anki().getModelNames()]).then(([deckNames, modelNames]) => { const ankiDeck = $('.anki-deck'); ankiDeck.find('option').remove(); deckNames.forEach(name => ankiDeck.append($('