-
Notifications
You must be signed in to change notification settings - Fork 13
/
options.js
134 lines (100 loc) · 3.78 KB
/
options.js
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* Copyright (c) 2018 Eric H. Goldman
*
* This file is part of Add URL To Window Title.
*
* Add URL To Window Title 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/>.
*/
/**
* @module disposableEmailHelper
*/
var addUrlToWindowTitleOptions = (function() {
/*
* Main entry function run when the script is loaded
*/
function start(){
loadI18n();
restoreOptions();
}
/**
* Stores the user selected options into storage
*/
function saveOptions() {
var showFullUrl = document.getElementById('showFullUrl').checked || false;
var showFieldAttributes = document.getElementById('showFieldAttributes').checked || false;
//TO Do: some type of filtering of this value
var separatorString = document.getElementById('separatorString').value || "-";
chrome.storage.sync.set({
showFullUrl: showFullUrl,
showFieldAttributes: showFieldAttributes,
separatorString: separatorString
}, function(){
var status = document.getElementById('status');
status.style.display = 'inherit';
/*
* Display the success message `<div />` temporarily after the settings are succesfully saved
*/
setTimeout(function() {
status.style.display = 'none';
}, 2500);
});
}
/**
* Loads the saved options from storage and sets the options in HTML appropriately.
*/
function restoreOptions() {
chrome.storage.sync.get({
showFullUrl:false,
showFieldAttributes: false,
separatorString: "-"
}, function(items) {
document.getElementById('showFullUrl').checked = items.showFullUrl;
document.getElementById('showFieldAttributes').checked = items.showFieldAttributes;
document.getElementById('separatorString').value = items.separatorString;
});
}
/**
* Translate the text in divs in the HTML. Load internationalization from `_locales`.
* @see {#https://developer.chrome.com/extensions/i18n#method-getMessage}
*/
function loadI18n(){
//TODO: update for this extension
i18nElements = [
'optionsSectionHeader',
'optionsShowFullUrlHeader', 'optionsShowFullUrlText', 'optionsShowFullUrlHelp',
'optionsSeparatorStringHeader', 'optionsSeparatorStringHelp',
'optionsShowFieldAttributesHeader', 'optionsShowFieldAttributesText', 'optionsShowFieldAttributesHelp',
'optionsSaveButtonText', 'optionsSavedHeader', 'optionsSavedMessage',
'optionsDonateLinkText','optionsHelpLinkText'
];
i18nElements.forEach(function(elementId) {
document.getElementById(elementId).innerHTML = chrome.i18n.getMessage(elementId);
});
}
/*
* Expose functions outside of module so they can be called by listeners, etc.
*/
return {
start: start,
saveOptions: saveOptions,
};
})();
/**
* Wait for HTML to load, then initiate the script
*/
document.addEventListener('DOMContentLoaded', addUrlToWindowTitleOptions.start );
/**
* Save the user's changed when the user explicitly saves
*/
document.getElementById('optionsSaveButtonText').addEventListener('click', addUrlToWindowTitleOptions.saveOptions );