]>
git.scottworley.com Git - picsort/blob - picsorter.js
92294425889573f80d77e9c550b2477408518dc0
2 if ("picsorter_picinfo" in localStorage
) {
3 picinfo
= JSON
.parse(localStorage
.picsorter_picinfo
);
5 $.each(files
, function(i
, f
) {
10 function save_picinfo() {
11 localStorage
.picsorter_picinfo
= JSON
.stringify(picinfo
);
19 function endsWith(str
, suffix
) {
20 return str
.indexOf(suffix
, str
.length
- suffix
.length
) !== -1;
23 function stripFromEnd(str
, suffix
) {
24 if (endsWith(str
, suffix
)) {
25 return str
.substr(0, str
.length
- suffix
.length
);
32 if (endsWith(files
[input_index
], ".NEF")) {
33 if ("exposure" in picinfo
[files
[input_index
]]) {
34 exposure
= picinfo
[files
[input_index
]].exposure
;
36 picinfo
[files
[input_index
]].exposure
= exposure
;
39 display_filename
= zoom
+ exposure
+ "/" + stripFromEnd(files
[input_index
], ".NEF") + ".jpeg";
41 display_filename
= zoom
+ files
[input_index
];
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
);
50 $pic
.attr("src", display_filename
);
53 function say(message
) {
54 $("#message").text(message
).removeClass("fade");
55 setTimeout(function() { $("#message").addClass("fade"); }, 1);
58 say(input_index
+ " " + (picinfo
[files
[input_index
]].name
|| ""));
61 function toggle_zoom() {
70 function move_by_filter(direction
, filter
) {
71 // Keep moving in direction until filter is satisfied
72 var new_index
= input_index
;
74 var next
= new_index
+ direction
;
79 if (next
>= files
.length
) {
84 if (filter(new_index
)) {
88 input_index
= new_index
;
92 function move(direction
) {
93 move_by_filter(direction
, function() { return true; });
95 function move_to_nondeleted(direction
) {
96 move_by_filter(direction
, function(i
) {
97 return !("deleted" in picinfo
[files
[i
]]); });
99 function move_to_unnamed(direction
) {
100 move_by_filter(direction
, function(i
) {
101 return !("deleted" in picinfo
[files
[i
]]) &&
102 !("name" in picinfo
[files
[i
]]); });
105 function mark_deleted() {
106 picinfo
[files
[input_index
]].deleted
= 1;
111 function mark_not_deleted() {
112 delete picinfo
[files
[input_index
]].deleted
;
117 function change_exposure(amount
) {
118 if (!endsWith(files
[input_index
], ".NEF")) {
119 say("Exposure adjustment not available");
123 picinfo
[files
[input_index
]].exposure
= exposure
;
126 var display_exposure
= (exposure
/ 4) - 3.5;
127 say((display_exposure
>= 0 ? "+" : "") + display_exposure
);
131 var rotation
= picinfo
[files
[input_index
]].rotate
|| 0;
132 rotation
= (rotation
+ 90) % 360;
133 if (rotation
> 1e-5) {
134 picinfo
[files
[input_index
]].rotate
= rotation
;
136 delete picinfo
[files
[input_index
]].rotate
;
143 function set_name(name
) {
144 picinfo
[files
[input_index
]].name
= name
;
146 say("Named " + name
);
150 function set_name_from_form() {
151 var name_input
= $("#name").hide().get(0);
152 set_name(name_input
.value
);
153 name_input
.value
= "";
156 function shell_escape(x
) {
157 return x
.replace(/'/g, "'\\''");
160 function show_commands() {
162 $.each(files, function(i, f) {
163 if ("name
" in picinfo[f] && picinfo[f].name.length > 0 &&
164 !("deleted
" in picinfo[f])) {
165 var command = ["pic
-mv
"];
166 if ("exposure
" in picinfo[f]) {
167 command.push("-e
" + picinfo[f].exposure);
169 if ("rotate
" in picinfo[f]) {
170 command.push("-r
" + picinfo[f].rotate);
172 command.push("'" + shell_escape(f) + "'");
173 command.push("'" + shell_escape(picinfo[f].name) + "'");
174 commands.push(command.join(" "));
178 $("#shell_out
").text(commands.join("\n")).show();
182 $("#name
").hide().on("keyup
", function(e) { e.which == 13 && set_name_from_form(); });
183 move_to_nondeleted(1);
186 Mousetrap.bind('z', toggle_zoom);
187 Mousetrap.bind('Z', function() { $("#pic
").toggleClass("fit_view
"); });
188 Mousetrap.bind(['n', 'l'], function() { move_to_nondeleted(1); });
189 Mousetrap.bind(['p', 'h'], function() { move_to_nondeleted(-1); });
190 Mousetrap.bind(['N', 'L'], function() { move_to_unnamed(1); });
191 Mousetrap.bind(['P', 'H'], function() { move_to_unnamed(-1); });
192 Mousetrap.bind(['m n', 'm l'], function() { move(1); });
193 Mousetrap.bind(['m n', 'm h'], function() { move(-1); });
194 Mousetrap.bind(['b', 'k'], function() { change_exposure(1); });
195 Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); });
196 Mousetrap.bind('x', mark_deleted);
197 Mousetrap.bind('X', mark_not_deleted);
198 Mousetrap.bind('r', rotate);
199 Mousetrap.bind('i', announce);
200 Mousetrap.bind('f', function() { say(files[input_index]); });
201 Mousetrap.bind('c', function() { $("#name
").show().focus(); return false; });
202 Mousetrap.bind('C', function() { if (last_name) { set_name(last_name); } });
203 Mousetrap.bind('%', function() { say((100 * input_index / files.length).toFixed(2) + "%"); });
204 Mousetrap.bind('!', show_commands);
205 Mousetrap.bind('esc', function() { $("#name
").hide(); $("#shell_out
").hide(); });