]> git.scottworley.com Git - picsort/blob - picsorter.js
Don't start on a deleted picture.
[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 }
23
24 function move_to_nondeleted(direction) {
25 do {
26 input_index += direction;
27 } while (files[input_index] in picsorter_deleted);
28 }
29
30 function mark_deleted() {
31 picsorter_deleted[files[input_index]] = 1;
32 localStorage.picsorter_deleted = JSON.stringify(picsorter_deleted);
33 }
34
35 function mark_not_deleted() {
36 delete picsorter_deleted[files[input_index]];
37 localStorage.picsorter_deleted = JSON.stringify(picsorter_deleted);
38 }
39
40 $(function() {
41 setpic();
42 });
43
44 Mousetrap.bind('z', function() { toggle_zoom(); setpic(); });
45 Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
46 Mousetrap.bind('n', function() { move_to_nondeleted(1); setpic(); });
47 Mousetrap.bind('p', function() { move_to_nondeleted(-1); setpic(); });
48 Mousetrap.bind('N', function() { input_index ++; setpic(); });
49 Mousetrap.bind('P', function() { input_index --; setpic(); });
50 Mousetrap.bind('b', function() { exposure ++; setpic(); });
51 Mousetrap.bind('d', function() { exposure --; setpic(); });
52 Mousetrap.bind('x', function() { mark_deleted(); });
53 Mousetrap.bind('X', function() { mark_not_deleted(); });