]> git.scottworley.com Git - picsort/blob - picsorter.js
Bind keys directly where possible
[picsort] / picsorter.js
1 if (!("picsorter_deleted" in localStorage)) {
2 localStorage.picsorter_deleted = JSON.stringify({});
3 }
4 var picsorter_deleted = JSON.parse(localStorage.picsorter_deleted);
5
6 var exposure = 20;
7 var zoom = "sm/";
8 var input_index = -1;
9 move_to_nondeleted(1);
10
11
12 function setpic() {
13 $("#pic").attr("src", zoom + exposure + "/" + files[input_index]);
14 }
15
16 function toggle_zoom() {
17 if (zoom) {
18 zoom = "";
19 } else {
20 zoom = "sm/";
21 }
22 setpic();
23 }
24
25 function move_to_nondeleted(direction) {
26 do {
27 input_index += direction;
28 } while (files[input_index] in picsorter_deleted);
29 }
30
31 function mark_deleted() {
32 picsorter_deleted[files[input_index]] = 1;
33 localStorage.picsorter_deleted = JSON.stringify(picsorter_deleted);
34 }
35
36 function mark_not_deleted() {
37 delete picsorter_deleted[files[input_index]];
38 localStorage.picsorter_deleted = JSON.stringify(picsorter_deleted);
39 }
40
41 $(function() {
42 setpic();
43 });
44
45 Mousetrap.bind('z', toggle_zoom);
46 Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
47 Mousetrap.bind('n', function() { move_to_nondeleted(1); setpic(); });
48 Mousetrap.bind('p', function() { move_to_nondeleted(-1); setpic(); });
49 Mousetrap.bind('N', function() { input_index ++; setpic(); });
50 Mousetrap.bind('P', function() { input_index --; setpic(); });
51 Mousetrap.bind('b', function() { exposure ++; setpic(); });
52 Mousetrap.bind('d', function() { exposure --; setpic(); });
53 Mousetrap.bind('x', mark_deleted);
54 Mousetrap.bind('X', mark_not_deleted);