]> git.scottworley.com Git - picsort/blob - picsorter.js
Support .jpeg files mixed in with .NEF files
[picsort] / picsorter.js
1 var picinfo = {};
2 if ("picsorter_picinfo" in localStorage) {
3 picinfo = JSON.parse(localStorage.picsorter_picinfo);
4 }
5 $.each(files, function(i, f) {
6 if (!(f in picinfo)) {
7 picinfo[f] = {};
8 }
9 });
10 function save_picinfo() {
11 localStorage.picsorter_picinfo = JSON.stringify(picinfo);
12 }
13 save_picinfo();
14
15 var exposure = 20;
16 var zoom = "sm/";
17 var input_index = -1;
18
19 function endsWith(str, suffix) {
20 return str.indexOf(suffix, str.length - suffix.length) !== -1;
21 }
22
23 function stripFromEnd(str, suffix) {
24 if (endsWith(str, suffix)) {
25 return str.substr(0, str.length - suffix.length);
26 }
27 return str;
28 }
29
30 function setpic() {
31 var display_filename;
32 if (endsWith(files[input_index], ".NEF")) {
33 if ("exposure" in picinfo[files[input_index]]) {
34 exposure = picinfo[files[input_index]].exposure;
35 } else {
36 picinfo[files[input_index]].exposure = exposure;
37 save_picinfo();
38 }
39 display_filename = zoom + exposure + "/" + stripFromEnd(files[input_index], ".NEF") + ".jpeg";
40 } else {
41 display_filename = zoom + files[input_index];
42 }
43 $("#pic").attr("src", display_filename);
44 }
45
46 function say(message) {
47 $("#message").text(message).removeClass("fade");
48 setTimeout(function() { $("#message").addClass("fade"); }, 1);
49 }
50
51 function toggle_zoom() {
52 if (zoom) {
53 zoom = "";
54 } else {
55 zoom = "sm/";
56 }
57 setpic();
58 }
59
60 function move_to_nondeleted(direction) {
61 do {
62 input_index += direction;
63 } while (picinfo[files[input_index]].deleted);
64 say(input_index + " " + (picinfo[files[input_index]].name || ""));
65 setpic();
66 }
67
68 function mark_deleted() {
69 picinfo[files[input_index]].deleted = 1;
70 save_picinfo();
71 say("Deleted");
72 }
73
74 function mark_not_deleted() {
75 delete picinfo[files[input_index]].deleted;
76 save_picinfo();
77 say("Undeleted");
78 }
79
80 function change_exposure(amount) {
81 exposure += amount;
82 picinfo[files[input_index]].exposure = exposure;
83 save_picinfo();
84 setpic();
85 var display_exposure = (exposure / 4) - 3.5;
86 say((display_exposure >= 0 ? "+" : "") + display_exposure);
87 }
88
89 function set_name() {
90 var name_input = $("#name").hide().get(0);
91 var name = name_input.value;
92 name_input.value = "";
93 picinfo[files[input_index]].name = name;
94 save_picinfo();
95 say("Named " + name);
96 }
97
98 $(function() {
99 $("#name").hide().on("keyup", function(e) { e.which == 13 && set_name(); });
100 move_to_nondeleted(1);
101 });
102
103 Mousetrap.bind('z', toggle_zoom);
104 Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
105 Mousetrap.bind(['n', 'l'], function() { move_to_nondeleted(1); });
106 Mousetrap.bind(['p', 'h'], function() { move_to_nondeleted(-1); });
107 Mousetrap.bind(['N', 'L'], function() { input_index ++; say(input_index); setpic(); });
108 Mousetrap.bind(['P', 'H'], function() { input_index --; say(input_index); setpic(); });
109 Mousetrap.bind(['b', 'k'], function() { change_exposure(1); });
110 Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); });
111 Mousetrap.bind('x', mark_deleted);
112 Mousetrap.bind('X', mark_not_deleted);
113 Mousetrap.bind('c', function() { $("#name").show().focus(); return false; });