aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/options.js
blob: 64278fcad334e0f0e4b4872dbdae4c3b09431737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
 * 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/>.
 */


function optionsSetDefaults(options) {
    const defaults = {
        general: {
            autoStart:     true,
            audioPlayback: true,
            softKatakana:  true,
            groupResults:  true,
            showAdvanced:  false
        },

        scanning: {
            requireShift: true,
            selectText:   true,
            delay:        15,
            length:       10
        },

        dictionaries: {},

        anki: {
            enable:      false,
            tags:        ['yomichan'],
            sentenceExt: 200,
            terms:       {deck: '', model: '', fields: {}},
            kanji:       {deck: '', model: '', fields: {}},
        }
    };

    const combine = (target, source) => {
        for (const key in source) {
            if (!(key in target)) {
                target[key] = source[key];
            }
        }
    };

    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];
    };

    const version = options.version || 0;
    const fixups = [
        () => {
            optionsSetDefaults(options);

            copy(options.general, 'autoStart',     options, 'activateOnStartup');
            copy(options.general, 'audioPlayback', options, 'enableAudioPlayback');
            copy(options.general, 'softKatakana',  options, 'enableSoftKatakanaSearch');
            copy(options.general, 'groupResults',  options, 'goupTermResults');
            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');
            copy(options.anki.term,  'deck',        options, 'ankiTermDeck');
            copy(options.anki.term,  'model',       options, 'ankiTermModel');
            copy(options.anki.term,  'fields',      options, 'ankiTermFields');
            copy(options.anki.kanji, 'deck',        options, 'ankiKanjiDeck');
            copy(options.anki.kanji, 'model',       options, 'ankiKanjiModel');
            copy(options.anki.kanji, 'fields',      options, 'ankiKanjiFields');
        },
    ];

    if (version < fixups.length) {
        fixups[version]();
        ++options.version;
        optionsVersion(options);
    }

    return options;
}

function optionsLoad() {
    return new Promise((resolve, reject) => {
        chrome.storage.sync.get(null, options => resolve(optionsVersion(options)));
    });
}

function optionsSave(options) {
    return new Promise((resolve, reject) => {
        chrome.storage.sync.set(options, resolve);
    });
}