forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyhandler.js
103 lines (93 loc) · 2.31 KB
/
keyhandler.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
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Allows moving around inputs/select by Ctrl+arrows
*
* @param object event data
*/
function onKeyDownArrowsHandler(e)
{
e = e || window.event;
var o = (e.srcElement || e.target);
if (!o) {
return;
}
if (o.tagName != "TEXTAREA" && o.tagName != "INPUT" && o.tagName != "SELECT") {
return;
}
console.log(e);
if (navigator.userAgent.toLowerCase().indexOf('applewebkit/') != -1) {
if (e.ctrlKey || e.shiftKey || !e.altKey) {
return;
}
} else {
if (!e.ctrlKey || e.shiftKey || e.altKey) {
return;
}
}
if (!o.id) {
return;
}
var pos = o.id.split("_");
if (pos[0] != "field" || typeof pos[2] == "undefined") {
return;
}
var x = pos[2], y = pos[1];
var nO = null;
switch (e.keyCode) {
case 38:
// up
y--;
break;
case 40:
// down
y++;
break;
case 37:
// left
x--;
break;
case 39:
// right
x++;
break;
default:
return;
}
var is_firefox = navigator.userAgent.toLowerCase().indexOf("firefox/") > -1;
// restore selected index, bug #3799
if (is_firefox && e.type == "keyup") {
o.selectedIndex = window["selectedIndex_" + o.id];
}
var id = "field_" + y + "_" + x;
nO = document.getElementById(id);
if (! nO) {
id = "field_" + y + "_" + x + "_0";
nO = document.getElementById(id);
}
// skip non existent fields
if (! nO) {
return;
}
if (e.type == "keydown") {
nO.focus();
if (is_firefox) {
window["selectedIndex_" + nO.id] = nO.selectedIndex;
}
}
if (nO.tagName != 'SELECT') {
nO.select();
}
e.returnValue = false;
}
AJAX.registerTeardown('keyhandler.js', function () {
$('#table_columns').die('keydown keyup');
$('table.insertRowTable').die('keydown keyup');
});
AJAX.registerOnload('keyhandler.js', function () {
$('#table_columns').live('keydown keyup', function (event) {
onKeyDownArrowsHandler(event.originalEvent);
});
$('table.insertRowTable').live('keydown keyup', function (event) {
onKeyDownArrowsHandler(event.originalEvent);
});
});