2012-10-18 19:58:10 +02:00
|
|
|
var hotkeys = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2012-10-04 00:04:58 +02:00
|
|
|
var pressed_keys = {};
|
|
|
|
|
|
|
|
function num_pressed_keys() {
|
|
|
|
var size = 0, key;
|
2012-10-31 22:31:04 +01:00
|
|
|
$.each(pressed_keys, function () {
|
|
|
|
size++;
|
|
|
|
});
|
2012-10-04 00:04:58 +02:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2012-09-21 23:51:31 +02:00
|
|
|
var directional_hotkeys = {
|
2012-10-18 20:55:41 +02:00
|
|
|
40: rows.next_visible, // down arrow
|
|
|
|
106: rows.next_visible, // 'j'
|
|
|
|
38: rows.prev_visible, // up arrow
|
|
|
|
107: rows.prev_visible, // 'k'
|
|
|
|
36: rows.first_visible, // Home
|
|
|
|
35: rows.last_visible // End
|
2012-09-21 23:51:31 +02:00
|
|
|
};
|
|
|
|
|
2012-10-23 20:55:24 +02:00
|
|
|
var narrow_hotkeys = {
|
|
|
|
115: narrow.by_recipient, // 's'
|
|
|
|
83: narrow.by_subject, // 'S'
|
2012-11-06 19:07:24 +01:00
|
|
|
118: narrow.all_huddles // 'v'
|
2012-10-23 20:55:24 +02:00
|
|
|
};
|
|
|
|
|
2012-10-31 22:33:39 +01:00
|
|
|
// These are not exported, but they need to be used before they are
|
|
|
|
// defined, since we have a cycle in function reference. So we
|
|
|
|
// declare them ahead of time to make JSLint happy.
|
2012-10-23 20:55:24 +02:00
|
|
|
var process_key_in_input, process_compose_hotkey;
|
2012-10-18 19:58:10 +02:00
|
|
|
|
2012-10-02 21:41:40 +02:00
|
|
|
function simulate_keydown(keycode) {
|
2012-09-24 21:02:13 +02:00
|
|
|
$(document).trigger($.Event('keydown', {keyCode: keycode}));
|
|
|
|
}
|
|
|
|
|
2012-09-21 22:35:32 +02:00
|
|
|
function process_hotkey(code) {
|
2012-10-09 23:45:41 +02:00
|
|
|
var next_message;
|
2012-10-09 19:50:39 +02:00
|
|
|
|
2012-10-09 20:09:03 +02:00
|
|
|
// Disable hotkeys on settings page etc.
|
|
|
|
if (!$('#home').hasClass('active')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-09 19:50:39 +02:00
|
|
|
// Disable hotkeys when in an input, textarea, or button
|
|
|
|
if ($('input:focus,textarea:focus,button:focus').length > 0) {
|
|
|
|
return process_key_in_input(code);
|
|
|
|
}
|
|
|
|
|
2012-10-04 07:27:53 +02:00
|
|
|
if (directional_hotkeys.hasOwnProperty(code)) {
|
2012-10-10 16:17:58 +02:00
|
|
|
next_message = directional_hotkeys[code](selected_message);
|
2012-10-09 23:45:41 +02:00
|
|
|
if (next_message.length !== 0) {
|
2012-10-22 19:05:06 +02:00
|
|
|
select_message(next_message, {then_scroll: true});
|
2012-09-21 22:35:32 +02:00
|
|
|
}
|
2012-10-09 23:45:41 +02:00
|
|
|
if ((next_message.length === 0) && (code === 40 || code === 106)) {
|
2012-10-10 16:22:10 +02:00
|
|
|
// At the last message, scroll to the bottom so we have
|
|
|
|
// lots of nice whitespace for new messages coming in.
|
2012-10-05 22:13:51 +02:00
|
|
|
//
|
2012-10-18 20:55:41 +02:00
|
|
|
// FIXME: this doesn't work for End because rows.last_visible()
|
2012-10-10 16:22:10 +02:00
|
|
|
// always returns a message.
|
2012-10-05 22:13:51 +02:00
|
|
|
viewport.scrollTop($("#main_div").outerHeight(true));
|
|
|
|
}
|
2012-09-21 22:35:32 +02:00
|
|
|
return process_hotkey;
|
2012-09-21 23:51:31 +02:00
|
|
|
}
|
2012-09-21 22:35:32 +02:00
|
|
|
|
2012-10-23 20:55:24 +02:00
|
|
|
if (narrow_hotkeys.hasOwnProperty(code)) {
|
|
|
|
narrow.target(selected_message_id);
|
|
|
|
narrow_hotkeys[code]();
|
|
|
|
return process_hotkey;
|
|
|
|
}
|
|
|
|
|
2012-10-03 17:30:48 +02:00
|
|
|
if (num_pressed_keys() > 1 &&
|
2012-11-07 16:23:46 +01:00
|
|
|
// "shift" "caps lock"
|
|
|
|
!((pressed_keys[16] || pressed_keys[20]) &&
|
2012-10-03 17:30:48 +02:00
|
|
|
num_pressed_keys() === 2)) {
|
2012-09-26 23:37:21 +02:00
|
|
|
// If you are already holding down another key, none of these
|
2012-11-07 16:23:46 +01:00
|
|
|
// actions apply. However, if you are holding down exactly one
|
|
|
|
// other key and that key is shift or caps lock, we still want
|
|
|
|
// to continue processing.
|
2012-09-26 23:37:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-21 23:51:31 +02:00
|
|
|
switch (code) {
|
2012-09-24 16:52:48 +02:00
|
|
|
case 33: // Page Up
|
2012-10-05 21:51:47 +02:00
|
|
|
if (at_top_of_viewport()) {
|
2012-10-22 19:05:06 +02:00
|
|
|
select_message(rows.first_visible(), {then_scroll: false});
|
2012-10-05 21:51:47 +02:00
|
|
|
}
|
2012-10-03 23:47:15 +02:00
|
|
|
return false; // We want the browser to actually page up and down
|
2012-10-17 17:23:50 +02:00
|
|
|
case 32: // Spacebar
|
2012-09-24 16:52:48 +02:00
|
|
|
case 34: // Page Down
|
2012-10-05 21:51:47 +02:00
|
|
|
if (at_bottom_of_viewport()) {
|
2012-10-22 19:05:06 +02:00
|
|
|
select_message(rows.last_visible(), {then_scroll: false});
|
2012-10-05 21:51:47 +02:00
|
|
|
}
|
2012-10-03 23:47:15 +02:00
|
|
|
return false;
|
2012-10-29 20:48:22 +01:00
|
|
|
case 27: // Esc: close userinfo popup, cancel compose, or un-narrow
|
|
|
|
if (userinfo_currently_popped !== undefined) {
|
|
|
|
userinfo_currently_popped.popover("destroy");
|
|
|
|
userinfo_currently_popped = undefined;
|
|
|
|
} else if (compose.composing()) {
|
2012-10-18 20:17:55 +02:00
|
|
|
compose.cancel();
|
2012-10-11 20:30:34 +02:00
|
|
|
} else {
|
2012-10-18 20:12:04 +02:00
|
|
|
narrow.show_all_messages();
|
2012-10-11 20:30:34 +02:00
|
|
|
}
|
2012-09-21 22:35:32 +02:00
|
|
|
return process_hotkey;
|
2012-10-03 17:04:43 +02:00
|
|
|
case 99: // 'c': compose
|
2012-10-18 20:17:55 +02:00
|
|
|
compose.start('stream');
|
2012-10-17 17:55:11 +02:00
|
|
|
return process_compose_hotkey;
|
|
|
|
case 67: // 'C': compose huddle
|
2012-10-18 20:17:55 +02:00
|
|
|
compose.start('personal');
|
2012-09-25 16:04:27 +02:00
|
|
|
return process_compose_hotkey;
|
2012-10-10 16:22:10 +02:00
|
|
|
case 114: // 'r': respond to message
|
2012-10-10 16:18:51 +02:00
|
|
|
respond_to_message();
|
2012-10-09 19:50:39 +02:00
|
|
|
return process_hotkey;
|
2012-10-03 17:30:48 +02:00
|
|
|
case 82: // 'R': respond to author
|
2012-10-10 16:18:51 +02:00
|
|
|
respond_to_message("personal");
|
2012-10-09 19:50:39 +02:00
|
|
|
return process_hotkey;
|
2012-11-01 17:05:17 +01:00
|
|
|
case 47: // '/': initiate search
|
2012-11-01 17:14:33 +01:00
|
|
|
initiate_search();
|
2012-11-01 17:05:17 +01:00
|
|
|
return process_hotkey;
|
2012-10-25 00:15:36 +02:00
|
|
|
case 63: // '?': Show keyboard shortcuts page
|
|
|
|
$('#keyboard-shortcuts').modal('show');
|
|
|
|
return process_hotkey;
|
2012-09-21 22:35:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-09 19:50:39 +02:00
|
|
|
/* The current handler function for keydown events.
|
|
|
|
It should return a new handler, or 'false' to
|
|
|
|
decline to handle the event. */
|
2012-10-31 23:08:02 +01:00
|
|
|
var current_key_handler = process_hotkey;
|
2012-10-09 19:50:39 +02:00
|
|
|
|
2012-10-18 19:58:10 +02:00
|
|
|
process_key_in_input = function (code) {
|
2012-09-21 22:35:32 +02:00
|
|
|
if (code === 27) {
|
2012-10-18 20:17:55 +02:00
|
|
|
// If the user hit the escape key, cancel the current compose
|
|
|
|
compose.cancel();
|
2012-09-21 22:35:32 +02:00
|
|
|
}
|
2012-10-31 22:57:44 +01:00
|
|
|
// Keycode 13 is Return.
|
2012-10-26 16:59:38 +02:00
|
|
|
if ((code === 13) && $("#search").is(":focus")) {
|
2012-10-31 22:57:44 +01:00
|
|
|
// Pass it along to the search up button.
|
2012-10-26 16:59:38 +02:00
|
|
|
$("#search_up").focus();
|
|
|
|
}
|
2012-10-31 23:00:40 +01:00
|
|
|
// Let the browser handle the key normally.
|
2012-09-21 22:35:32 +02:00
|
|
|
return false;
|
2012-10-18 19:58:10 +02:00
|
|
|
};
|
2012-09-21 22:35:32 +02:00
|
|
|
|
2012-10-18 19:58:10 +02:00
|
|
|
process_compose_hotkey = function (code) {
|
2012-10-10 23:37:14 +02:00
|
|
|
if (code === 9) { // Tab: toggles between stream and huddle compose tabs.
|
2012-10-18 20:29:16 +02:00
|
|
|
compose.toggle_mode();
|
2012-09-25 16:04:27 +02:00
|
|
|
return process_compose_hotkey;
|
|
|
|
}
|
2012-10-09 20:10:41 +02:00
|
|
|
// Process the first non-tab character and everything after it
|
|
|
|
// like any other keys typed in the input box
|
2012-10-31 23:08:02 +01:00
|
|
|
current_key_handler = process_hotkey;
|
2012-10-09 20:10:41 +02:00
|
|
|
return process_hotkey(code);
|
2012-10-18 19:58:10 +02:00
|
|
|
};
|
2012-09-25 16:04:27 +02:00
|
|
|
|
2012-10-18 19:58:10 +02:00
|
|
|
exports.set_compose = function () {
|
2012-10-31 23:08:02 +01:00
|
|
|
current_key_handler = process_compose_hotkey;
|
2012-10-18 19:58:10 +02:00
|
|
|
};
|
2012-10-17 18:05:43 +02:00
|
|
|
|
2012-09-26 23:37:21 +02:00
|
|
|
$(document).keydown(function (e) {
|
|
|
|
pressed_keys[e.which] = true;
|
2012-11-01 19:44:59 +01:00
|
|
|
if ((num_pressed_keys() >= 2) &&
|
2012-11-02 19:31:16 +01:00
|
|
|
(48 <= e.which && e.which <= 90) &&
|
2012-11-01 19:44:59 +01:00
|
|
|
(pressed_keys[17] === true ||
|
|
|
|
pressed_keys[91] === true)) {
|
|
|
|
// If the user typed 2 or more characters, one of which was
|
|
|
|
// ctrl(17) or command(91), and ending with an alphanumeric
|
|
|
|
// character (between 48 and 90), this is probably a browser
|
|
|
|
// keyboard shortcut (example: ctrl-f in Chrome). Browsers
|
|
|
|
// will often not trigger a keyup event after processing those
|
|
|
|
// shortcuts and we don't have any hotkeys using these
|
|
|
|
// characters, so just ignore such key presses for our
|
|
|
|
// accounting.
|
|
|
|
pressed_keys = {};
|
|
|
|
}
|
2012-09-26 23:37:21 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keyup(function (e) {
|
|
|
|
pressed_keys = {};
|
|
|
|
});
|
|
|
|
|
2012-10-03 17:04:43 +02:00
|
|
|
/* We register both a keydown and a keypress function because
|
|
|
|
we want to intercept pgup/pgdn, escape, etc, and process them
|
|
|
|
as they happen on the keyboard. However, if we processed
|
|
|
|
letters/numbers in keydown, we wouldn't know what the case of
|
|
|
|
the letters were.
|
|
|
|
|
|
|
|
We want case-sensitive hotkeys (such as in the case of r vs R)
|
|
|
|
so we bail in .keydown if the event is a letter or number and
|
|
|
|
instead just let keypress go for it. */
|
|
|
|
|
2012-10-31 23:10:15 +01:00
|
|
|
function down_or_press(event) {
|
|
|
|
var result = current_key_handler(event.which);
|
|
|
|
if (result) {
|
|
|
|
current_key_handler = result;
|
|
|
|
event.preventDefault();
|
2012-10-03 17:04:43 +02:00
|
|
|
}
|
2012-10-31 23:10:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$(document).keydown(function (event) {
|
|
|
|
// Restrict to non-alphanumeric keys
|
|
|
|
if (48 > event.which || 90 < event.which)
|
|
|
|
down_or_press(event);
|
2012-10-03 17:04:43 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keypress(function (event) {
|
|
|
|
// What exactly triggers .keypress may vary by browser.
|
|
|
|
// Welcome to compatability hell.
|
2012-10-15 16:45:31 +02:00
|
|
|
//
|
|
|
|
// In particular, when you press tab in Firefox, it fires a
|
|
|
|
// keypress event with keycode 0 after processing the original
|
|
|
|
// event.
|
2012-10-31 23:10:15 +01:00
|
|
|
if (event.which !== 0 && event.charCode !== 0)
|
|
|
|
down_or_press(event);
|
2012-09-21 22:35:32 +02:00
|
|
|
});
|
2012-10-18 19:58:10 +02:00
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|