-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-shortcuts.js
345 lines (293 loc) · 9.52 KB
/
blog-shortcuts.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
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/*
Blog Shortcuts are developed by Matt Jacobs
This will eventually be open sourced, once I figure that out.
*/
/* Please leave these fellows be (aka futz at your own risk). */
var keyIndex = 0;
var keyPresses = 0;
var bsItems, lastCode, activeUrl;
var clickCleared = false;
var clearT = false;
var bsOptions = {};
/*
Configure me, please.
All of the shortcuts already have keys and other variables set,
but you'll have a lot more fun if you make it your own.
A couple notes:
* Don't use 'g'. I've reserved that for go-to commands.
* Just comment out any shortcuts you don't need.
*/
// The CSS selector that is unique to your blog posts.
// Without this, we can't jump between posts!
bsOptions.blogPostSelector = '.article';
// Keys for next and previous posts
bsOptions.nextPost = 'j';
bsOptions.prevPost = 'k';
// The key used to go to the permalink for the actively selected post.
bsOptions.goToPost = 'enter';
// The jQuery selector for finding the active link after selecting a new post.
// Yes, mine is very complicated.
bsOptions.goToPostUrl = '$($(bsOptions.blogPostSelector).get(keyIndex)).children().children(\'a.permalink\').attr(\'href\')';
// Selectors for your permalink pages
// The first is a unique identifier for the pages,
// the following are for next/prev links.
bsOptions.permalinkSelector = 'body.entry';
bsOptions.newerPermalink = '$(\'a.right-nav\').attr(\'href\')';
bsOptions.olderPermalink = '$(\'a.left-nav\').attr(\'href\')';
// Keys for next and previous posts when on permalink pages
bsOptions.nextPermalink = 'n';
bsOptions.prevPermalink = 'p';
// Key to go to your homepage
bsOptions.goToHomepage = 'h';
// The URL of your homepage
bsOptions.homepageUrl = '/';
// Key to go to the top of the page
bsOptions.goToTop = 't';
// Key to go to your archives
bsOptions.goToArchives = 'r';
// The URL of your archives
bsOptions.archivesUrl = '/archives/';
// Key to go to your about page
bsOptions.goToAbout = 'a';
// The URL of your about page
bsOptions.aboutUrl = '/about/';
// The selector for your search box
bsOptions.searchSelector = '#search';
// Key to focus on search
bsOptions.focusSearch = 's';
// Enable go-to-tag box.
// I haven't generalized key sequences, so this is hard coded to g+t for now.
// Don't forget to update the form submit event handler if you're going to use this.
bsOptions.showTagBox = true;
// Show help box
// Note: I've defaulted to the question mark, which is problematic in Firefox.
bsOptions.help = '?';
/*
I borrowed these key codes from jKey
More infomation is available at http://oscargodson.com/labs/jkey
*/
var keyCodes = {
/* start the a-z keys */
'a' : 65,
'b' : 66,
'c' : 67,
'd' : 68,
'e' : 69,
'f' : 70,
// 'g' : 71, *I've reserved g for go-to commands*
'h' : 72,
'i' : 73,
'j' : 74,
'k' : 75,
'l' : 76,
'm' : 77,
'n' : 78,
'o' : 79,
'p' : 80,
'q' : 81,
'r' : 82,
's' : 83,
't' : 84,
'u' : 85,
'v' : 86,
'w' : 87,
'x' : 88,
'y' : 89,
'z' : 90,
/* start number keys */
'0' : 48,
'1' : 49,
'2' : 50,
'3' : 51,
'4' : 52,
'5' : 53,
'6' : 54,
'7' : 55,
'8' : 56,
'9' : 57,
/* start the f keys */
'f1' : 112,
'f2' : 113,
'f3' : 114,
'f4' : 115,
'f5' : 116,
'f6' : 117,
'f7' : 118,
'f8' : 119,
'f9' : 120,
'f10': 121,
'f11': 122,
'f12': 123,
/* start the modifier keys */
'shift' : 16,
'ctrl' : 17,
'control' : 17,
'alt' : 18,
'option' : 18, //Mac OS key
'opt' : 18, //Mac OS key
'cmd' : 224, //Mac OS key
'command' : 224, //Mac OS key
'fn' : 255, //tested on Lenovo ThinkPad
'function' : 255, //tested on Lenovo ThinkPad
/* Misc. Keys */
'backspace' : 8,
'osxdelete' : 8, //Mac OS version of backspace
'enter' : 13,
'return' : 13, //Mac OS version of "enter"
'space':32,
'spacebar':32,
'esc':27,
'escape':27,
'tab':9,
'capslock':20,
'capslk':20,
'super':91,
'windows':91,
'insert':45,
'delete':46, //NOT THE OS X DELETE KEY!
'home':36,
'end':35,
'pgup':33,
'pageup':33,
'pgdn':34,
'pagedown':34,
/* Arrow keys */
'left' : 37,
'up' : 38,
'right': 39,
'down' : 40,
/* Special char keys */
'`':96,
'~':96,
'-':45,
'_':45,
'=':187,
'+':187,
'[':219,
'{':219,
']':221,
'}':221,
'\\':220, //it's actually a \ but there's two to escape the original
'|':220,
';':59,
':':59,
"'":222,
'"':222,
',':188,
'<':188,
'.':190,
'>':190,
'/':191,
'?':191
};
$(document).ready(function(){
/***** Not so Configurable *****/
bsItems = $(bsOptions.blogPostSelector).length;
$('html').keyup(function(event){
// Prevent keypresses from interupting form submissions
if (document.activeElement.localName.toLowerCase() != 'input' && document.activeElement.localName.toLowerCase() != 'textarea') {
keyPresses++;
// Scroll to the next entry
if (event.keyCode == keyCodes[bsOptions.nextPost] && !$(bsOptions.permalinkSelector).html()) {
keyIndex++;
if (keyIndex < 0 || keyPresses == 1) keyIndex = 0;
if (keyIndex >= bsItems) keyIndex = bsItems - 1;
var articlePos = $($(bsOptions.blogPostSelector).get(keyIndex)).offset();
$(window).scrollTop(articlePos.top - 10);
activeUrl = eval(bsOptions.goToPostUrl);
}
// Scroll to the previous entry
if (event.keyCode == keyCodes[bsOptions.prevPost] && !$(bsOptions.permalinkSelector).html()) {
keyIndex--;
if (keyIndex < 0 || keyPresses == 1) keyIndex = 0;
if (keyIndex >= bsItems) keyIndex = bsItems - 1;
var articlePos = $($(bsOptions.blogPostSelector).get(keyIndex)).offset();
$(window).scrollTop(articlePos.top - 10);
activeUrl = eval(bsOptions.goToPostUrl);
}
// Go to Entry
if (event.keyCode == keyCodes[bsOptions.goToPost] && activeUrl) {
window.location = activeUrl;
}
// Load the newer entry on permalink
if ($(bsOptions.permalinkSelector).html() && eval(bsOptions.newerPermalink) && event.keyCode == keyCodes[bsOptions.nextPermalink]) {
window.location = eval(bsOptions.newerPermalink);
}
// Load the older entry on permalink
if ($(bsOptions.permalinkSelector).html() && eval(bsOptions.olderPermalink) && event.keyCode == keyCodes[bsOptions.prevPermalink]) {
window.location = eval(bsOptions.olderPermalink);
}
// Go to the homepage
if (bsOptions.homepageUrl && event.keyCode == keyCodes[bsOptions.goToHomepage]) {
window.location = bsOptions.homepageUrl;
}
// Go to archives
if (bsOptions.archivesUrl && event.keyCode == keyCodes[bsOptions.goToArchives]) {
window.location = bsOptions.archivesUrl;
}
// Go to about
if (bsOptions.homepageUrl && event.keyCode == keyCodes[bsOptions.goToAbout]) {
window.location = bsOptions.aboutUrl;
}
// Focus on search
if (bsOptions.searchSelector && event.keyCode == keyCodes[bsOptions.focusSearch]) {
$(bsOptions.searchSelector).focus();
}
// Show the tag input window: g+t
if (bsOptions.showTagBox && event.keyCode == '84' && lastCode == '71') {
$('body').append('<div id="goto-tag" class="shortcut-display"><form><label for="tag-input">Enter Tag: </label><input type="text" name="tag-input" id="tag-input" /></form></div>');
$('#tag-input').focus();
clickClear();
clearT = true;
}
// Go to top (we have to check that g wasn't pressed first while this is still hard coded)
if (event.keyCode == keyCodes[bsOptions.goToTop] && lastCode != '71') {
$(window).scrollTop(0);
}
if (event.keyCode == keyCodes[bsOptions.help]) {
bsHelp = $('<div id="shortcut-help" class="shortcut-display"><h3>Keyboard Shortcuts!</h3><ul></ul></div>');
if (bsOptions.nextPost) bsHelp.append('<li>Scroll to the next post: ' + bsOptions.nextPost + '</li>');
if (bsOptions.prevPost) bsHelp.append('<li>Scroll to the previous post: ' + bsOptions.prevPost + '</li>');
if (bsOptions.goToPost) bsHelp.append('<li>Load highlighted post: ' + bsOptions.goToPost + '</li>');
if (bsOptions.nextPermalink) bsHelp.append('<li>On permalink, load newer post: ' + bsOptions.nextPermalink + '</li>');
if (bsOptions.prevPermalink) bsHelp.append('<li>On permalink, load older post: ' + bsOptions.prevPermalink + '</li>');
if (bsOptions.goToHomepage) bsHelp.append('<li>Go to the homepage: ' + bsOptions.goToHomepage + '</li>');
if (bsOptions.goToTop) bsHelp.append('<li>Go to the top of the page: ' + bsOptions.goToTop + '</li>');
if (bsOptions.goToArchives) bsHelp.append('<li>Go to archives: ' + bsOptions.goToArchives + '</li>');
if (bsOptions.goToAbout) bsHelp.append('<li>Go to about page: ' + bsOptions.goToAbout + '</li>');
if (bsOptions.focusSearch) bsHelp.append('<li>Focus on the search box: ' + bsOptions.focusSearch + '</li>');
if (bsOptions.showTagBox) bsHelp.append('<li>Show the "Go to tag" box: g then t</li>');
$('body').append(bsHelp);
clickClear();
}
lastCode = event.keyCode;
}
// Clear tag or help window by pressing escape
if (event.keyCode == '27') {
$('.shortcut-display').remove();
}
// Wait until the box is gone before removing the value of the input box
if (clearT) {
clearT = false;
window.setTimeout(clearTag,10);
}
// This is the event handler that submits the go-to-tag form
$('#goto-tag form').live('submit', function(){
window.location = '/tag/' + $('#tag-input').val();
return false;
});
});
});
// We want to clear out the go-to-tag box if you hide it.
function clearTag() { $('#tag-input').val(''); }
// When a user clicks out of the tag or help box, hide it.
function clickClear() {
if (!clickCleared) {
$('*').click(function(e) {
if (!$(e.target).parents().hasClass('.shortcut-display') && !$(e.target).hasClass('.shortcut-display')) {
$('.shortcut-display').remove();
clickCleared = true;
}
});
}
}