forked from philc/vimium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
300 lines (274 loc) · 9.57 KB
/
options.html
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<html>
<head>
<title>Vimium Options</title>
<script src="lib/utils.js"></script>
<script src="lib/keyboardUtils.js"></script>
<script src="linkHints.js"></script>
<script src="lib/clipboard.js"></script>
<script src="vimiumFrontend.js"></script>
<style type="text/css" media="screen">
body {
font-family:"helvetica neue", "helvetica", "arial", "sans";
width:640px;
margin:10px auto;
}
a, a:visited { color:blue; }
#optionsTableWrapper {
width:490px;
border:1px solid red;
}
.example {
font-size:80%;
color:#555;
margin-left:20px;
}
.caption {
margin-right:10px;
}
td {
padding:5px 0;
}
td#mappingsHelp {
padding:20px 0;
}
textarea#excludedUrls {
width:490px;
min-height:100px;
}
textarea#userDefinedLinkHintCss {
width:342px;
min-height:100px;
}
textarea#keyMappings {
width:342px;
min-height:100px;
}
#status {
margin-left:10px;
font-size:80%;
}
/* Make the caption in the settings table as small as possible, to pull the other fields to the right. */
td:nth-child(1) {
width:1px;
white-space:nowrap;
}
#buttonsPanel {
/* This should match the width of #excludedUrls + 5px of padding to move the buttons to the right. */
width:495px;
text-align:right;
margin-top:18px;
margin-right:-10px;
}
#showHelpDialogMessage {
width:495px;
font-size:15px;
}
.help {
position:absolute;
right:-280px;
width:280px;
}
tr.advancedOption {
display:none;
}
input:read-only {
background-color: #eee;
color: #666;
}
</style>
<script type="text/javascript">
$ = function(id) { return document.getElementById(id); };
var defaultSettings = chrome.extension.getBackgroundPage().defaultSettings;
var editableFields = ["scrollStepSize", "excludedUrls", "linkHintCharacters",
"userDefinedLinkHintCss", "keyMappings", "filterLinkHints"];
var canBeEmptyFields = ["excludedUrls", "keyMappings", "userDefinedLinkHintCss"];
var postSaveHooks = {
keyMappings: function (value) {
backgroundPage = chrome.extension.getBackgroundPage();
backgroundPage.clearKeyMappingsAndSetDefaults();
backgroundPage.parseCustomKeyMappings(value);
backgroundPage.refreshCompletionKeysAfterMappingSave();
}
};
function initializeOptions() {
populateOptions();
for (var i = 0; i < editableFields.length; i++) {
$(editableFields[i]).addEventListener("keyup", onOptionKeyup, false);
$(editableFields[i]).addEventListener("change", enableSaveButton, false);
$(editableFields[i]).addEventListener("change", onDataLoaded, false);
}
$("advancedOptions").addEventListener("click", openAdvancedOptions, false);
$("showCommands").addEventListener("click", function () {
showHelpDialog(
chrome.extension.getBackgroundPage().helpDialogHtml(true, true, "Command Listing"), frameId);
}, false);
}
function onOptionKeyup(event) {
if (event.target.getAttribute("savedValue") != event.target.value)
enableSaveButton();
}
function onDataLoaded() {
$("linkHintCharacters").readOnly = $("filterLinkHints").checked;
}
function enableSaveButton() { $("saveOptions").removeAttribute("disabled"); }
// Saves options to localStorage.
function saveOptions() {
// If the value is unchanged from the default, delete the preference from localStorage; this gives us
// the freedom to change the defaults in the future.
for (var i = 0; i < editableFields.length; i++) {
var fieldName = editableFields[i];
var field = $(fieldName);
var fieldValue;
if (field.getAttribute("type") == "checkbox") {
fieldValue = field.checked ? "true" : "false";
} else {
fieldValue = field.value.trim();
field.value = fieldValue;
}
var defaultFieldValue = (defaultSettings[fieldName] != null) ?
defaultSettings[fieldName].toString() : "";
// Don't save to storage if it's equal to the default
if (fieldValue == defaultFieldValue)
delete localStorage[fieldName];
// ..or if it's empty and not a field that we allow to be empty.
else if (!fieldValue && canBeEmptyFields.indexOf(fieldName) == -1) {
delete localStorage[fieldName];
fieldValue = defaultFieldValue;
} else
localStorage[fieldName] = fieldValue;
$(fieldName).value = fieldValue;
$(fieldName).setAttribute("savedValue", fieldValue);
if (postSaveHooks[fieldName]) { postSaveHooks[fieldName](fieldValue); }
}
$("saveOptions").disabled = true;
}
// Restores select box state to saved value from localStorage.
function populateOptions() {
for (var i = 0; i < editableFields.length; i++) {
// If it's null or undefined, let's go to the default. We want to allow empty strings in certain cases.
if (localStorage[editableFields[i]] != "" && !localStorage[editableFields[i]]) {
var val = defaultSettings[editableFields[i]] || "";
} else {
var val = localStorage[editableFields[i]];
}
setFieldValue($(editableFields[i]), val);
}
onDataLoaded();
}
function restoreToDefaults() {
for (var i = 0; i < editableFields.length; i++) {
var val = defaultSettings[editableFields[i]] || "";
setFieldValue($(editableFields[i]), val);
}
onDataLoaded();
enableSaveButton();
}
function setFieldValue(field, value) {
if (field.getAttribute('type') == 'checkbox')
field.checked = value == "true";
else
field.value = value;
field.setAttribute("savedValue", value);
}
function openAdvancedOptions(event) {
var elements = document.getElementsByClassName("advancedOption");
for (var i = 0; i < elements.length; i++)
elements[i].style.display = (elements[i].style.display == "table-row") ? "none" : "table-row";
event.preventDefault();
}
</script>
</head>
<body onload="initializeOptions()">
<h1>Vimium - Options</h1>
<table style="position:relative">
<tr>
<td class="caption">Scroll step size</td>
<td>
<input id="scrollStepSize" type="text" style="width:50px" />px
</td>
</tr>
<tr>
<td colspan="3">
Excluded URLs<br/>
<div class="help">
<div class="example">
e.g. http*://mail.google.com/*<br/>
This will disable Vimium on Gmail.<br/><br/>
Enter one URL per line.<br/>
</div>
</div>
<textarea id="excludedUrls"></textarea>
</td>
</tr>
<tr>
<td colspan="3">
<a href="#" id="advancedOptions">Advanced options »</a>
</td>
</tr>
<tr class="advancedOption">
<td class="caption">Key mappings</td>
<td id="mappingsHelp" verticalAlign="top">
<div class="help">
<div class="example">
<!-- TODO(ilya/philc): Expand this and style it better. -->
Enter commands to remap your keys. Available commands:<br/>
<div style="margin-left:10px;margin-top:5px">
map j scrollDown<br/>
unmap j<br/>
unmapAll<br/>
" this is a comment<br/>
# this is also a comment<br/>
</div>
<a href="#" id="showCommands">Show available commands.</a>
</div>
</div>
<textarea id="keyMappings" type="text"></textarea>
</td>
</tr>
<tr class="advancedOption">
<td class="caption">Characters used<br/> for link hints</td>
<td verticalAlign="top">
<div class="help">
<div class="example">
The characters placed next to each link after typing "F" to enter link hinting mode.
</div>
</div>
<input id="linkHintCharacters" type="text" style="width:150px" />
</td>
</tr>
<tr class="advancedOption">
<td class="caption">CSS for link hints</td>
<td verticalAlign="top">
<div class="help">
<div class="example">
The CSS used to style the characters next to each link hint.<br/><br/>
Note: these styles are used in addition to and take precedence over Vimium's
default styles.
</div>
</div>
<textarea id="userDefinedLinkHintCss" type="text"></textarea>
</td>
</tr>
<tr class="advancedOption">
<td class="caption">Filter link hints</td>
<td verticalAlign="top">
<div class="help">
<div class="example">
Typing in link hints mode will filter link hints by the link text.<br/><br/>
Note: You <em>must</em> use numeric link hint characters in this mode
</div>
</div>
<input id="filterLinkHints" type="checkbox"/>
</td>
</tr>
</table>
<div id="buttonsPanel">
<button id="restoreSettings" onclick="restoreToDefaults()">Restore to Defaults</button>
<button id="saveOptions" disabled="true" onclick="saveOptions()">Save Options</button>
</div>
<br/>
<div id="showHelpDialogMessage">
To view all available shortcuts, type <span style="font-weight:bold">?</span> to show the Vimium help dialog.
</div>
</body>
</html>