]> git.scottworley.com Git - picsort/blame_incremental - picsorter.js
Delete/move-to-extra unnamed pics
[picsort] / picsorter.js
... / ...
CommitLineData
1var picinfo = {};
2if ("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});
10function save_picinfo() {
11 localStorage.picsorter_picinfo = JSON.stringify(picinfo);
12}
13save_picinfo();
14
15var exposure = 20;
16var zoom = "sm/";
17var input_index = -1;
18
19function endsWith(str, suffix) {
20 return str.indexOf(suffix, str.length - suffix.length) !== -1;
21}
22
23function stripFromEnd(str, suffix) {
24 if (endsWith(str, suffix)) {
25 return str.substr(0, str.length - suffix.length);
26 }
27 return str;
28}
29
30function 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 var $pic = $("#pic");
44 $pic.on("load", function() {
45 $pic.removeClass("rot90 rot180 rot270");
46 if ("rotate" in picinfo[files[input_index]]) {
47 $pic.addClass("rot" + picinfo[files[input_index]].rotate);
48 }
49 });
50 $pic.attr("src", display_filename);
51}
52
53function say(message) {
54 $("#message").text(message).removeClass("fade");
55 setTimeout(function() { $("#message").addClass("fade"); }, 100);
56}
57function announce() {
58 say(input_index + " " + (picinfo[files[input_index]].name || ""));
59}
60
61function toggle_zoom() {
62 if (zoom) {
63 zoom = "";
64 } else {
65 zoom = "sm/";
66 }
67 setpic();
68}
69
70function move_by_filter(direction, filter) {
71 // Keep moving in direction until filter is satisfied
72 var new_index = input_index;
73 while (true) {
74 var next = new_index + direction;
75 if (next < 0) {
76 say("At beginning");
77 return;
78 }
79 if (next >= files.length) {
80 say("At end");
81 return;
82 }
83 new_index = next;
84 if (filter(new_index)) {
85 break;
86 }
87 }
88 input_index = new_index;
89 announce();
90 setpic();
91}
92function move(direction) {
93 move_by_filter(direction, function() { return true; });
94}
95function move_to_begenning() {
96 move_by_filter(-1, function(i) { return i == 0; });
97}
98function move_to_end() {
99 move_by_filter(1, function(i) { return i == files.length - 1; });
100}
101function move_to_nondeleted(direction) {
102 move_by_filter(direction, function(i) {
103 return !("deleted" in picinfo[files[i]]); });
104}
105function move_to_unnamed(direction) {
106 move_by_filter(direction, function(i) {
107 return !("deleted" in picinfo[files[i]]) &&
108 !("name" in picinfo[files[i]]); });
109}
110
111function mark_deleted(method) {
112 picinfo[files[input_index]].deleted = method;
113 save_picinfo();
114 say(method);
115}
116
117function mark_not_deleted() {
118 delete picinfo[files[input_index]].deleted;
119 save_picinfo();
120 say("Undeleted");
121}
122
123function say_exposure() {
124 if (!endsWith(files[input_index], ".NEF")) {
125 say("Exposure adjustment not available");
126 return;
127 }
128 var display_exposure = (exposure / 4) - 3.5;
129 say((display_exposure >= 0 ? "+" : "") + display_exposure);
130}
131
132function change_exposure(amount) {
133 if (!endsWith(files[input_index], ".NEF")) {
134 say("Exposure adjustment not available");
135 return;
136 }
137 exposure += amount;
138 picinfo[files[input_index]].exposure = exposure;
139 save_picinfo();
140 setpic();
141 say_exposure();
142}
143
144function rotate() {
145 var rotation = picinfo[files[input_index]].rotate || 0;
146 rotation = (rotation + 90) % 360;
147 if (rotation > 1e-5) {
148 picinfo[files[input_index]].rotate = rotation;
149 } else {
150 delete picinfo[files[input_index]].rotate;
151 }
152 save_picinfo();
153 setpic();
154}
155
156
157function set_name(name) {
158 if (name) {
159 picinfo[files[input_index]].name = name;
160 save_picinfo();
161 say("Named " + name);
162 last_name = name;
163 }
164}
165
166function set_name_from_form() {
167 var name_input = $("#name").hide().get(0);
168 set_name(name_input.value);
169 name_input.value = "";
170}
171
172function shell_escape(x) {
173 return x.replace(/'/g, "'\\''");
174}
175
176function show_commands() {
177 var commands = [];
178 $.each(files, function(i, f) {
179 var escaped_filename = "'" + shell_escape(f) + "'";
180 if (picinfo[f].deleted == "deleted") {
181 commands.push("shred -u " + escaped_filename);
182 } else if (picinfo[f].deleted == "extra") {
183 commands.push("mv " + escaped_filename + " \"$EXTRADIR\"");
184 } else if ("name" in picinfo[f] && picinfo[f].name.length > 0) {
185 var command = ["pic-mv"];
186 if ("exposure" in picinfo[f]) {
187 command.push("-e " + picinfo[f].exposure);
188 }
189 if ("rotate" in picinfo[f]) {
190 command.push("-r " + picinfo[f].rotate);
191 }
192 command.push(escaped_filename);
193 command.push("'" + shell_escape(picinfo[f].name) + "'");
194 commands.push(command.join(" "));
195 }
196 });
197 commands.push("");
198 $("#shell_out").text(commands.join("\n")).show();
199}
200
201$(function() {
202 $("#name").hide().on("keyup", function(e) { e.which == 13 && set_name_from_form(); });
203 move_to_nondeleted(1);
204});
205
206Mousetrap.bind('z', toggle_zoom);
207Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
208Mousetrap.bind(['n', 'l'], function() { move_to_nondeleted(1); });
209Mousetrap.bind(['p', 'h'], function() { move_to_nondeleted(-1); });
210Mousetrap.bind(['N', 'L'], function() { move_to_unnamed(1); });
211Mousetrap.bind(['P', 'H'], function() { move_to_unnamed(-1); });
212Mousetrap.bind(['m n', 'm l'], function() { move(1); });
213Mousetrap.bind(['m n', 'm h'], function() { move(-1); });
214Mousetrap.bind(['b', 'k'], function() { change_exposure(1); });
215Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); });
216Mousetrap.bind('0', move_to_begenning);
217Mousetrap.bind('$', move_to_end);
218Mousetrap.bind('x', function(){ mark_deleted("deleted"); });
219Mousetrap.bind('X', mark_not_deleted);
220Mousetrap.bind('e', function(){ mark_deleted("extra"); });
221Mousetrap.bind('E', mark_not_deleted);
222Mousetrap.bind('r', rotate);
223Mousetrap.bind('i', announce);
224Mousetrap.bind('f', function() { say(files[input_index]); });
225Mousetrap.bind('B', function() { say_exposure(); });
226Mousetrap.bind('c', function() { $("#name").show().focus(); return false; });
227Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } });
228Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); });
229Mousetrap.bind('!', show_commands);
230Mousetrap.bind('esc', function() { $("#name").hide(); $("#shell_out").hide(); });
231
232function clean_picinfo() {
233 files_index = {};
234 $.each(files, function(i, f) {
235 files_index[f] = true;
236 });
237 for (f in picinfo) {
238 if (!files_index[f]) {
239 delete picinfo[f];
240 }
241 }
242}
243
244function undelete_all() {
245 for (f in picinfo) {
246 delete picinfo[f].deleted;
247 }
248 save_picinfo();
249 say("Undeleted everything");
250}