1 <%include include/head.html>
3 <div class="page-id hidden">image-browser</div>
5 <script language="javascript">
7 /* hide all those forms. */
8 function hideAndShowBlock(blockElement, clickToShowElement, clickToHideElement) {
9 $(blockElement).hide();
10 $(clickToShowElement).removeClass("hidden");
11 $(clickToShowElement).click(function() {
12 $(blockElement).slideDown();
13 $(clickToShowElement).addClass("hidden");
14 $(clickToHideElement).removeClass("hidden");
16 $(clickToHideElement).click(function() {
17 $(blockElement).slideUp();
18 $(clickToHideElement).addClass("hidden");
19 $(clickToShowElement).removeClass("hidden");
23 /* ID of the image currently being edited. */
24 var editingImageId = null;
27 * Shows the form for editing an image.
29 * @param imageId The ID of the image to edit.
31 function editImage(imageId) {
32 if (editingImageId != imageId) {
37 editingImageId = imageId;
38 $(".show-data", getImage(imageId)).hide();
39 $(".edit-data", getImage(imageId)).show();
40 $(document).bind("click.sone", function(event) {
41 if ($(event.target).closest("#image-" + imageId).size() == 0) {
48 * Cancels all image editing.
50 function cancelImageEditing() {
51 $(".image .show-data").show();
52 $(".image .edit-data").hide();
53 $("form.edit-image").each(function() {
56 $(document).unbind("click.sone");
57 editingImageId = null;
61 * Returns the image element with the given ID.
63 * @param imageId The ID of the image
64 * @return The image element
66 function getImage(imageId) {
67 return $("#sone .image .image-id:contains('" + imageId + "')").closest(".image");
73 * @param sourceId The ID of the source image
74 * @param destinationId The ID of the destionation image
76 function swapImage(sourceId, destinationId) {
77 sourceElement = getImage(sourceId);
78 destinationElement = getImage(destinationId);
79 sourceParent = sourceElement.closest(".image-row");
80 sourcePrevSibling = sourceElement.prev();
81 sourceElement.detach();
82 destinationElement.before(sourceElement);
83 if (sourcePrevSibling.get(0) != destinationElement.get(0)) {
84 destinationElement.detach();
85 (sourcePrevSibling.size() > 0) ? sourcePrevSibling.after(destinationElement) : sourceParent.prepend(destinationElement);
87 if ($("button[name='moveLeft']", sourceElement).hasClass("hidden") != $("button[name='moveLeft']", destinationElement).hasClass("hidden")) {
88 $("button[name='moveLeft']", sourceElement).toggleClass("hidden");
89 $("button[name='moveLeft']", destinationElement).toggleClass("hidden");
91 if ($("button[name='moveRight']", sourceElement).hasClass("hidden") != $("button[name='moveRight']", destinationElement).hasClass("hidden")) {
92 $("button[name='moveRight']", sourceElement).toggleClass("hidden");
93 $("button[name='moveRight']", destinationElement).toggleClass("hidden");
98 * Prepare all images for inline editing.
100 function prepareImages() {
101 $(".image").each(function() {
102 imageId = $(this).closest(".image").find(".image-id").text();
103 (function(element, imageId) {
104 $(".show-data", element).click(function() {
107 $("button[name='moveLeft'], button[name='moveRight']", element).click(function() {
108 ajaxGet("editImage.ajax", { "formPassword": getFormPassword(), "image": imageId, "moveLeft": this.name == "moveLeft", "moveRight": this.name == "moveRight" }, function(data) {
109 if (data && data.success) {
110 swapImage(data.sourceImageId, data.destinationImageId);
115 $("button[name='submit']", element).click(function() {
116 title = $(":input[name='title']:enabled", this.form).val();
117 description = $(":input[name='description']:enabled", this.form).val();
118 ajaxGet("editImage.ajax", { "formPassword": getFormPassword(), "image": imageId, "title": title, "description": description }, function(data) {
119 var imageElement = getImage(data.imageId);
120 var imageTitleInput = imageElement.find(":input[name='title']");
121 var imageDescriptionInput = imageElement.find(":input[name='description']");
122 if (data && data.success) {
123 imageElement.find(".image-title").text(data.title);
124 imageElement.find(".image-description").html(data.parsedDescription);
125 imageTitleInput.attr("defaultValue", data.title);
126 imageDescriptionInput.attr("defaultValue", data.description);
127 cancelImageEditing();
128 } else if (data && !data.success) {
129 imageTitleInput.attr("value", imageTitleInput.attr("defaultValue"));
130 imageDescriptionInput.attr("value", imageDescriptionInput.attr("defaultValue"));
131 cancelImageEditing();
140 /* ID of the album currently being edited. */
141 var editingAlbumId = null;
144 * Shows the form for editing an album.
146 * @param albumId The ID of the album to edit.
148 function editAlbum(albumId) {
149 if (editingAlbumId != albumId) {
150 if (editingAlbumId != null) {
151 cancelAlbumEditing();
154 console.log("already editing " + albumId);
157 editingAlbumId = albumId;
158 $(".show-data", getAlbum(albumId)).hide();
159 $(".edit-data", getAlbum(albumId)).show();
160 console.log(getAlbum(albumId));
161 $(document).bind("click.sone", function(event) {
162 if ($(event.target).closest("#album-" + albumId).size() == 0) {
163 cancelAlbumEditing();
169 * Cancels all album editing.
171 function cancelAlbumEditing() {
172 console.log("cancel-album-edit");
173 $(".album .show-data").show();
174 $(".album .edit-data").hide();
175 $("form.edit-album").each(function() {
178 $(document).unbind("click.sone");
179 editingAlbumId = null;
183 * Returns the album element with the given ID.
185 * @param albumId The ID of the album
186 * @return The album element
188 function getAlbum(albumId) {
189 return $("#sone .album .album-id:contains('" + albumId + "')").closest(".album");
195 * @param sourceId The ID of the source album
196 * @param destinationId The ID of the destionation album
198 function swapAlbum(sourceId, destinationId) {
199 sourceElement = getAlbum(sourceId);
200 destinationElement = getAlbum(destinationId);
201 sourceParent = sourceElement.closest(".album-row");
202 sourcePrevSibling = sourceElement.prev();
203 sourceElement.detach();
204 destinationElement.before(sourceElement);
205 if (sourcePrevSibling.get(0) != destinationElement.get(0)) {
206 destinationElement.detach();
207 (sourcePrevSibling.size() > 0) ? sourcePrevSibling.after(destinationElement) : sourceParent.prepend(destinationElement);
209 if ($("button[name='moveLeft']", sourceElement).hasClass("hidden") != $("button[name='moveLeft']", destinationElement).hasClass("hidden")) {
210 $("button[name='moveLeft']", sourceElement).toggleClass("hidden");
211 $("button[name='moveLeft']", destinationElement).toggleClass("hidden");
213 if ($("button[name='moveRight']", sourceElement).hasClass("hidden") != $("button[name='moveRight']", destinationElement).hasClass("hidden")) {
214 $("button[name='moveRight']", sourceElement).toggleClass("hidden");
215 $("button[name='moveRight']", destinationElement).toggleClass("hidden");
220 * Prepare all albums for inline editing.
222 function prepareAlbums() {
223 $(".album").each(function() {
224 albumId = $(this).closest(".album").find(".album-id").text();
225 (function(element, albumId) {
226 $(".show-data", element).click(function() {
227 console.log("show-data");
230 $("button[name='moveLeft'], button[name='moveRight']", element).click(function() {
231 ajaxGet("editAlbum.ajax", { "formPassword": getFormPassword(), "album": albumId, "moveLeft": this.name == "moveLeft", "moveRight": this.name == "moveRight" }, function(data) {
232 if (data && data.success) {
233 swapAlbum(data.sourceAlbumId, data.destinationAlbumId);
238 $("button[name='submit']", element).click(function() {
239 title = $(":input[name='title']:enabled", this.form).val();
240 description = $(":input[name='description']:enabled", this.form).val();
241 ajaxGet("editAlbum.ajax", { "formPassword": getFormPassword(), "album": albumId, "title": title, "description": description }, function(data) {
243 var albumTitleField = getAlbum(data.albumId).find(".album-title");
244 var albumDescriptionField = getAlbum(data.albumId).find(".album-description");
246 albumTitleField.text(data.title);
247 albumDescriptionField.text(data.description);
248 getAlbum(data.albumId).find(":input[name='title']").attr("defaultValue", title);
249 getAlbum(data.albumId).find(":input[name='description']").attr("defaultValue", description);
251 albumTitleField.attr("value", albumTitleField.attr("defaultValue"));
252 albumDescriptionField.attr("value", albumDescriptionField.attr("defaultValue"));
254 cancelAlbumEditing();
269 <p><%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html></p>
271 <%elseifnull album.title>
273 <p><%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html></p>
277 <%if album.sone.local>
278 <script language="javascript">
281 getTranslation("WebInterface.DefaultText.UploadImage.Title", function(text) {
282 $("#upload-image :input[name='title']").each(function() {
283 registerInputTextareaSwap(this, text, "title", false, true);
286 getTranslation("WebInterface.DefaultText.UploadImage.Description", function(text) {
287 $("#upload-image :input[name='description']").each(function() {
288 registerInputTextareaSwap(this, text, "description", true, false);
291 $("#upload-image label").hide();
292 getTranslation("WebInterface.DefaultText.CreateAlbum.Name", function(text) {
293 $("#create-album input[name='name']").each(function() {
294 registerInputTextareaSwap(this, text, "name", false, true);
297 getTranslation("WebInterface.DefaultText.CreateAlbum.Description", function(text) {
298 $("#create-album input[name='description']").each(function() {
299 registerInputTextareaSwap(this, text, "description", true, true);
302 $("#create-album label").hide();
303 getTranslation("WebInterface.DefaultText.EditAlbum.Title", function(text) {
304 $("#edit-album input[name='title']").each(function() {
305 registerInputTextareaSwap(this, text, "title", false, true);
308 getTranslation("WebInterface.DefaultText.EditAlbum.Description", function(text) {
309 $("#edit-album :input[name='description']").each(function() {
310 registerInputTextareaSwap(this, text, "description", true, false);
313 $("#edit-album label").hide();
315 /* hide non-js image move buttons. */
316 $(".move-buttons").hide();
318 hideAndShowBlock("div.edit-album", ".show-edit-album", ".hide-edit-album");
319 hideAndShowBlock("div.create-album", ".show-create-album", ".hide-create-album");
320 hideAndShowBlock("div.upload-image", ".show-upload-image", ".hide-upload-image");
321 hideAndShowBlock("div.delete-album", ".show-delete-album", ".hide-delete-album");
329 <h1 class="backlink"><%= Page.ImageBrowser.Album.Title|l10n|replace needle=='{album}' replacement=album.title|html></h1>
331 <div class="backlinks">
332 <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
333 <div class="separator">></div>
334 <%foreach album.backlinks backlink backlinks>
335 <div class="backlink">
336 <a href="<% backlink.target|html>"><% backlink.name|html></a>
338 <%if ! backlinks.last>
339 <div class="separator">></div>
344 <p id="description"><% album.description|parse sone=album.sone|render></p>
346 <%if album.sone.local>
347 <div class="show-edit-album hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Album.Edit.Title|l10n|html></a></div>
348 <div class="hide-edit-album hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Album.Edit.Title|l10n|html></a></div>
349 <div class="edit-album">
350 <h2><%= Page.ImageBrowser.Album.Edit.Title|l10n|html></h2>
352 <form id="edit-album" action="editAlbum.html" method="post">
353 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
354 <input type="hidden" name="album" value="<%album.id|html>" />
357 <label for="title"><%= Page.ImageBrowser.Album.Label.Title|l10n|html></label>
358 <input type="text" name="title" value="<%album.title|html>" />
361 <label for="description"><%= Page.ImageBrowser.Album.Label.Description|l10n|html></label>
362 <textarea name="description"><%album.description|html></textarea>
364 <button type="submit"><%= Page.ImageBrowser.Album.Button.Save|l10n|html></button>
369 <%include include/browseAlbums.html albums=album.albums>
371 <%if album.sone.local>
372 <div class="show-create-album hidden toggle-link"><a class="small-link">» <%= View.CreateAlbum.Title|l10n|html></a></div>
373 <div class="hide-create-album hidden toggle-link"><a class="small-link">« <%= View.CreateAlbum.Title|l10n|html></a></div>
374 <div class="create-album">
375 <%include include/createAlbum.html>
379 <%foreach album.images image|paginate pageSize=preferences.imagesPerPage page=page>
381 <h2><%= Page.ImageBrowser.Header.Images|l10n|html></h2>
382 <%include include/pagination.html pageParameter=="page">
384 <%if loop.count|mod divisor==3><div class="image-row"><%/if>
385 <div id="image-<% image.id|html>" class="image">
386 <div class="image-id hidden"><% image.id|html></div>
387 <div class="image-container">
388 <a href="imageBrowser.html?image=<%image.id|html>"><% image|image-link max-width==250 max-height==250 mode==enlarge title=image.title></a>
390 <div class="show-data">
391 <div class="image-title"><% image.title|html></div>
392 <div class="image-description"><% image.description|parse sone=image.sone|render></div>
394 <%if album.sone.local>
395 <form class="edit-image" action="editImage.html" method="post">
396 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
397 <input type="hidden" name="returnPage" value="<%request.uri|html>" />
398 <input type="hidden" name="image" value="<%image.id|html>" />
400 <div class="move-buttons">
401 <button <%first>class="hidden" <%/first>type="submit" name="moveLeft" value="true"><%= Page.ImageBrowser.Image.Button.MoveLeft|l10n|html></button>
402 <button <%last>class="hidden" <%/last>type="submit" name="moveRight" value="true"><%= Page.ImageBrowser.Image.Button.MoveRight|l10n|html></button>
405 <div class="edit-data hidden">
407 <input type="text" name="title" value="<%image.title|html>" />
410 <textarea name="description"><%image.description|html></textarea>
413 <button <%first>class="hidden" <%/first>type="submit" name="moveLeft" value="true"><%= Page.ImageBrowser.Image.Button.MoveLeft|l10n|html></button>
414 <button type="submit" name="submit"><%= Page.ImageBrowser.Image.Button.Save|l10n|html></button>
415 <button <%last>class="hidden" <%/last>type="submit" name="moveRight" value="true"><%= Page.ImageBrowser.Image.Button.MoveRight|l10n|html></button>
421 <%= false|store key==endRow>
422 <%if loop.count|mod divisor==3 offset==1><%= true|store key==endRow><%/if>
423 <%last><%= true|store key==endRow><%/last>
427 <%last><%include include/pagination.html pageParameter=="page"><%/last>
430 <%if album.sone.local>
431 <div class="clear show-upload-image hidden toggle-link"><a class="small-link">» <%= View.UploadImage.Title|l10n|html></a></div>
432 <div class="clear hide-upload-image hidden toggle-link"><a class="small-link">« <%= View.UploadImage.Title|l10n|html></a></div>
433 <div class="upload-image">
434 <%include include/uploadImage.html>
438 <div class="show-delete-album hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Album.Delete.Title|l10n|html></a></div>
439 <div class="hide-delete-album hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Album.Delete.Title|l10n|html></a></div>
440 <div class="delete-album">
441 <form id="delete-album" action="deleteAlbum.html" method="get">
442 <input type="hidden" name="album" value="<%album.id|html>" />
443 <button type="submit"><%= Page.ImageBrowser.Album.Button.Delete|l10n|html></button>
452 <%elseif imageRequested>
454 <h1 class="backlink"><%image.title|html></h1>
456 <div class="backlinks">
457 <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
458 <div class="separator">></div>
459 <%foreach image.album.backlinks backlink backlinks>
460 <div class="backlink">
461 <a href="<% backlink.target|html>"><% backlink.name|html></a>
463 <%if ! backlinks.last>
464 <div class="separator">></div>
467 <%ifnull !image.previous><div class="backlink"><a href="imageBrowser.html?image=<%image.previous.id|html>">« <%image.previous.title|html></a></div><%/if>
468 <%ifnull !image.next><div class="backlink"><a href="imageBrowser.html?image=<%image.next.id|html>">» <%image.next.title|html></a></div><%/if>
475 <%if image.sone.local>
476 <script language="javascript">
478 getTranslation("WebInterface.DefaultText.EditImage.Title", function(text) {
479 $("#edit-image input[name='title']").each(function() {
480 registerInputTextareaSwap(this, text, "title", false, true);
483 getTranslation("WebInterface.DefaultText.EditImage.Description", function(text) {
484 $("#edit-image :input[name='description']").each(function() {
485 registerInputTextareaSwap(this, text, "description", true, false);
488 $("#edit-image label").hide();
490 hideAndShowBlock(".edit-image", ".show-edit-image", ".hide-edit-image");
491 hideAndShowBlock(".delete-image", ".show-delete-image", ".hide-delete-image");
496 <div class="single-image">
498 <a href="/<%image.key|html>"><% image|image-link max-width==640 max-height==480></a>
500 <a href="imageBrowser.html?image=<%image.id|html>"><% image|image-link max-width==640 max-height==480></a>
504 <p class="parsed"><%image.description|parse sone=image.sone|render></p>
506 <%if image.sone.local>
508 <div class="show-edit-image hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Image.Edit.Title|l10n|html></a></div>
509 <div class="hide-edit-image hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Image.Edit.Title|l10n|html></a></div>
510 <div class="edit-image">
511 <h2><%= Page.ImageBrowser.Image.Edit.Title|l10n|html></h2>
513 <form id="edit-image" action="editImage.html" method="post">
514 <input type="hidden" name="formPassword" value="<%formPassword|html>" />
515 <input type="hidden" name="returnPage" value="<%request.uri|html>" />
516 <input type="hidden" name="image" value="<%image.id|html>" />
519 <label for="title"><%= Page.ImageBrowser.Image.Title.Label|l10n|html></label>
520 <input type="text" name="title" value="<%image.title|html>" />
523 <label for="description"><%= Page.ImageBrowser.Image.Description.Label|l10n|html></label>
524 <textarea name="description"><%image.description|html></textarea>
527 <button type="submit"><%= Page.ImageBrowser.Image.Button.Save|l10n|html></button>
532 <div class="show-delete-image hidden toggle-link"><a class="small-link">» <%= Page.ImageBrowser.Image.Delete.Title|l10n|html></a></div>
533 <div class="hide-delete-image hidden toggle-link"><a class="small-link">« <%= Page.ImageBrowser.Image.Delete.Title|l10n|html></a></div>
534 <div class="delete-image">
535 <h2><%= Page.ImageBrowser.Image.Delete.Title|l10n|html></h2>
537 <form id="delete-image" action="deleteImage.html" method="get">
538 <input type="hidden" name="image" value="<%image.id|html>" />
539 <button type="submit"><%= Page.ImageBrowser.Image.Button.Delete|l10n|html></button>
547 <%elseif soneRequested>
550 <script language="javascript">
552 getTranslation("WebInterface.DefaultText.CreateAlbum.Name", function(text) {
553 $("#create-album input[name='name']").each(function() {
554 registerInputTextareaSwap(this, text, "name", false, true);
557 getTranslation("WebInterface.DefaultText.CreateAlbum.Description", function(text) {
558 $("#create-album input[name='description']").each(function() {
559 registerInputTextareaSwap(this, text, "description", true, true);
562 $("#create-album label").hide();
564 /* hide non-js move buttons. */
565 $(".move-buttons").hide();
567 hideAndShowBlock(".create-album", ".show-create-album", ".hide-create-album");
576 <p><%= Page.ImageBrowser.Sone.Error.NotFound.Text|l10n|html></p>
580 <h1><%= Page.ImageBrowser.Sone.Title|l10n|replace needle=='{sone}' replacement=sone.niceName|html></h1>
582 <div class="backlinks">
583 <div class="backlink"><a href="imageBrowser.html?mode=gallery"><%= Page.ImageBrowser.Link.All|l10n|html></a></div>
584 <div class="separator">></div>
585 <div class="backlink"><a href="imageBrowser.html?sone=<%sone.id|html>"><%sone.niceName|html></a></div>
588 <%include include/browseAlbums.html albums=sone.rootAlbum.albums>
591 <div class="show-create-album hidden toggle-link"><a class="small-link">» <%= View.CreateAlbum.Title|l10n|html></a></div>
592 <div class="hide-create-album hidden toggle-link"><a class="small-link">« <%= View.CreateAlbum.Title|l10n|html></a></div>
593 <div class="create-album">
594 <%include include/createAlbum.html>
600 <%elseif galleryRequested>
602 <%foreach albums album|paginate pageSize=preferences.imagesPerPage pageParameter=request.page pagination=albumPagination>
604 <h2><%= Page.ImageBrowser.Header.Albums|l10n|html></h2>
605 <%include include/pagination.html pagination=albumPagination pageParameter=="page">
607 <%if loop.count|mod divisor==3><div class="album-row"><%/if>
608 <div id="album-<% album.id|html>" class="album">
609 <div class="album-id hidden"><% album.id|html></div>
610 <div class="album-container">
611 <a href="imageBrowser.html?album=<% album.id|html>" title="<% album.title|html>">
612 <%ifnull album.albumImage>
613 <img src="images/unknown-image-0.png" width="333" height="250" alt="<% album.title|html> (<%album.sone.niceName|html>)" title="<% album.title|html> (<%album.sone.niceName|html>)" style="position: relative; top: 0px; left: -41px;" />
615 <% album.albumImage|image-link max-width==250 max-height==250 mode==enlarge title=album.title>
619 <div class="show-data">
620 <div class="album-sone"><a href="imageBrowser.html?sone=<%album.sone.id|html>"><%album.sone.niceName|html></a></div>
621 <div class="album-title"><% album.title|html> (<%= View.Sone.Stats.Images|l10n 0=album.images.size>)</div>
622 <div class="album-description"><% album.description|parse sone=album.sone|render></div>
625 <%= false|store key==endRow>
626 <%if loop.count|mod divisor==3 offset==1><%= true|store key==endRow><%/if>
627 <%last><%= true|store key==endRow><%/last>
632 <%include include/pagination.html pagination=albumPagination pageParameter=="page">
638 <%include include/tail.html>