yomichan/ext/bg/js/options.js

121 lines
4.1 KiB
JavaScript
Raw Normal View History

2016-04-04 03:05:22 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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 <http://www.gnu.org/licenses/>.
*/
2017-01-14 04:47:40 +00:00
function optionsSetDefaults(options) {
2016-04-04 03:05:22 +00:00
const defaults = {
2017-01-14 04:47:40 +00:00
general: {
autoStart: true,
audioPlayback: true,
softKatakana: true,
groupResults: true,
showAdvanced: false
},
2016-10-16 02:05:53 +00:00
2017-01-14 04:47:40 +00:00
scanning: {
requireShift: true,
selectText: true,
delay: 15,
length: 10
},
2016-11-07 02:09:12 +00:00
2017-01-14 04:47:40 +00:00
dictionaries: {},
2016-09-15 05:54:07 +00:00
2017-01-14 04:47:40 +00:00
anki: {
enable: false,
tags: ['yomichan'],
sentenceExt: 200,
terms: {deck: '', model: '', fields: {}},
kanji: {deck: '', model: '', fields: {}},
}
2016-04-04 03:05:22 +00:00
};
2017-01-14 04:47:40 +00:00
const combine = (target, source) => {
for (const key in source) {
if (!(key in target)) {
target[key] = source[key];
}
2016-04-06 05:18:55 +00:00
}
2017-01-14 04:47:40 +00:00
};
combine(options, defaults);
combine(options.general, defaults.general);
combine(options.scanning, defaults.scanning);
combine(options.anki, defaults.anki);
combine(options.anki.terms, defaults.anki.terms);
combine(options.anki.kanji, defaults.anki.kanji);
return options;
}
function optionsVersion(options) {
const copy = (targetDict, targetKey, sourceDict, sourceKey) => {
targetDict[targetKey] = sourceDict[sourceKey] || targetDict[targetKey];
};
2017-01-15 04:38:11 +00:00
options.version = options.version || 0;
2017-01-14 04:47:40 +00:00
const fixups = [
() => {
optionsSetDefaults(options);
copy(options.general, 'autoStart', options, 'activateOnStartup');
copy(options.general, 'audioPlayback', options, 'enableAudioPlayback');
copy(options.general, 'softKatakana', options, 'enableSoftKatakanaSearch');
2017-01-14 05:06:33 +00:00
copy(options.general, 'groupResults', options, 'groupTermResults');
2017-01-14 04:47:40 +00:00
copy(options.general, 'showAdvanced', options, 'showAdvancedOptions');
copy(options.scanning, 'requireShift', options, 'holdShiftToScan');
copy(options.scanning, 'selectText', options, 'selectMatchedText');
copy(options.scanning, 'delay', options, 'scanDelay');
copy(options.scanning, 'length', options, 'scanLength');
options.anki.enable = options.ankiMethod === 'ankiconnect';
copy(options.anki, 'tags', options, 'ankiCardTags');
copy(options.anki, 'sentenceExt', options, 'sentenceExtent');
2017-01-14 05:06:33 +00:00
copy(options.anki.terms, 'deck', options, 'ankiTermDeck');
copy(options.anki.terms, 'model', options, 'ankiTermModel');
copy(options.anki.terms, 'fields', options, 'ankiTermFields');
2017-01-14 04:47:40 +00:00
copy(options.anki.kanji, 'deck', options, 'ankiKanjiDeck');
copy(options.anki.kanji, 'model', options, 'ankiKanjiModel');
copy(options.anki.kanji, 'fields', options, 'ankiKanjiFields');
},
];
2017-01-15 04:38:11 +00:00
if (options.version < fixups.length) {
fixups[options.version]();
2017-01-14 04:47:40 +00:00
++options.version;
optionsVersion(options);
2016-04-04 03:05:22 +00:00
}
return options;
}
2017-01-14 04:47:40 +00:00
function optionsLoad() {
2016-09-16 03:10:11 +00:00
return new Promise((resolve, reject) => {
2017-01-14 04:47:40 +00:00
chrome.storage.sync.get(null, options => resolve(optionsVersion(options)));
2016-09-16 03:10:11 +00:00
});
2016-04-04 03:05:22 +00:00
}
2017-01-14 04:47:40 +00:00
function optionsSave(options) {
2016-09-16 03:10:11 +00:00
return new Promise((resolve, reject) => {
2017-01-14 04:47:40 +00:00
chrome.storage.sync.set(options, resolve);
2016-09-16 03:10:11 +00:00
});
2016-04-04 03:05:22 +00:00
}