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