2014-01-22 10:12:51 +00:00
|
|
|
/**
|
|
|
|
* @name Init Module
|
|
|
|
* @author Tobias Reich
|
|
|
|
* @copyright 2014 by Tobias Reich
|
|
|
|
*/
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
/* Event Name */
|
|
|
|
var event_name = (mobileBrowser()) ? "touchend" : "click";
|
|
|
|
|
2014-01-24 12:49:01 +00:00
|
|
|
/* Disable ContextMenu */
|
|
|
|
$(document).bind("contextmenu", function(e) { e.preventDefault() });
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Tooltips */
|
|
|
|
if (!mobileBrowser()) $(".tools").tipsy({gravity: 'n', fade: false, delayIn: 0, opacity: 1});
|
|
|
|
|
2014-01-28 16:00:55 +00:00
|
|
|
/* Multiselect */
|
|
|
|
$("#content").on("mousedown", multiselect.show);
|
2014-01-28 19:44:25 +00:00
|
|
|
$(document).on("mouseup", multiselect.getSelection);
|
2014-01-28 16:00:55 +00:00
|
|
|
|
2014-01-22 10:12:51 +00:00
|
|
|
/* Header */
|
2014-06-01 10:21:34 +00:00
|
|
|
$("#hostedwith").on(event_name, function() { window.open(lychee.website) });
|
2014-01-22 10:12:51 +00:00
|
|
|
$("#button_signin").on(event_name, lychee.loginDialog);
|
2014-04-19 17:55:07 +00:00
|
|
|
$("#button_settings").on("click", contextMenu.settings);
|
2014-01-22 10:12:51 +00:00
|
|
|
$("#button_share").on(event_name, function(e) {
|
|
|
|
if (photo.json.public==1||photo.json.public==2) contextMenu.sharePhoto(photo.getID(), e);
|
|
|
|
else photo.setPublic(photo.getID(), e);
|
|
|
|
});
|
|
|
|
$("#button_share_album").on(event_name, function(e) {
|
|
|
|
if (album.json.public==1) contextMenu.shareAlbum(album.getID(), e);
|
2014-04-14 15:19:56 +00:00
|
|
|
else album.setPublic(album.getID(), e);
|
2014-01-22 10:12:51 +00:00
|
|
|
});
|
2014-03-26 21:22:25 +00:00
|
|
|
$("#button_more").on(event_name, function(e) { contextMenu.photoMore(photo.getID(), e) });
|
2014-02-02 14:11:46 +00:00
|
|
|
$("#button_trash_album").on(event_name, function() { album.delete([album.getID()]) });
|
2014-01-28 19:44:25 +00:00
|
|
|
$("#button_move").on(event_name, function(e) { contextMenu.move([photo.getID()], e) });
|
2014-01-28 23:43:06 +00:00
|
|
|
$("#button_trash").on(event_name, function() { photo.delete([photo.getID()]) });
|
2014-01-22 10:12:51 +00:00
|
|
|
$("#button_info_album").on(event_name, function() { view.infobox.show() });
|
|
|
|
$("#button_info").on(event_name, function() { view.infobox.show() });
|
|
|
|
$("#button_archive").on(event_name, function() { album.getArchive(album.getID()) });
|
2014-01-28 19:44:25 +00:00
|
|
|
$("#button_star").on(event_name, function() { photo.setStar([photo.getID()]) });
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Search */
|
|
|
|
$("#search").on("keyup click", function() { search.find($(this).val()) });
|
2014-01-28 16:00:55 +00:00
|
|
|
|
2014-01-28 13:04:09 +00:00
|
|
|
/* Clear Search */
|
2014-01-28 16:00:55 +00:00
|
|
|
$("#clearSearch").on(event_name, function () {
|
2014-02-25 22:37:05 +00:00
|
|
|
$("#search").focus();
|
|
|
|
search.reset();
|
2014-01-28 13:04:09 +00:00
|
|
|
});
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Back Buttons */
|
|
|
|
$("#button_back_home").on(event_name, function() { lychee.goto("") });
|
|
|
|
$("#button_back").on(event_name, function() { lychee.goto(album.getID()) });
|
|
|
|
|
|
|
|
/* Image View */
|
|
|
|
lychee.imageview
|
2014-03-26 23:16:39 +00:00
|
|
|
.on(event_name, ".arrow_wrapper.previous", photo.previous)
|
|
|
|
.on(event_name, ".arrow_wrapper.next", photo.next);
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Infobox */
|
|
|
|
$("#infobox")
|
|
|
|
.on(event_name, ".header a", function() { view.infobox.hide() })
|
2014-02-02 14:11:46 +00:00
|
|
|
.on(event_name, "#edit_title_album", function() { album.setTitle([album.getID()]) })
|
2014-01-22 10:12:51 +00:00
|
|
|
.on(event_name, "#edit_description_album", function() { album.setDescription(album.getID()) })
|
2014-01-28 23:43:06 +00:00
|
|
|
.on(event_name, "#edit_title", function() { photo.setTitle([photo.getID()]) })
|
2014-02-02 14:11:46 +00:00
|
|
|
.on(event_name, "#edit_description", function() { photo.setDescription(photo.getID()) })
|
|
|
|
.on(event_name, "#edit_tags", function() { photo.editTags([photo.getID()]) })
|
|
|
|
.on(event_name, "#tags .tag span", function() { photo.deleteTag(photo.getID(), $(this).data('index')) });
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Keyboard */
|
|
|
|
Mousetrap
|
|
|
|
.bind('left', function() { if (visible.photo()) $("#imageview a#previous").click() })
|
|
|
|
.bind('right', function() { if (visible.photo()) $("#imageview a#next").click() })
|
2014-03-29 19:28:18 +00:00
|
|
|
.bind(['u', 'ctrl+u'], function() { $("#upload_files").click() })
|
2014-04-14 09:06:13 +00:00
|
|
|
.bind(['s', 'ctrl+s', 'f', 'ctrl+f'], function(e) {
|
|
|
|
if (visible.photo()) {
|
|
|
|
$("#button_star").click();
|
|
|
|
} else if (visible.albums()) {
|
|
|
|
e.preventDefault();
|
|
|
|
$("#search").focus();
|
|
|
|
}
|
|
|
|
})
|
2014-03-29 19:28:18 +00:00
|
|
|
.bind(['r', 'ctrl+r'], function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (visible.album()) album.setTitle(album.getID());
|
2014-03-29 23:12:38 +00:00
|
|
|
else if (visible.photo()) photo.setTitle([photo.getID()]);
|
|
|
|
})
|
|
|
|
.bind(['d', 'ctrl+d'], function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (visible.photo()) photo.setDescription(photo.getID());
|
|
|
|
else if (visible.album()) album.setDescription(album.getID());
|
|
|
|
})
|
|
|
|
.bind(['t', 'ctrl+t'], function(e) {
|
|
|
|
if (visible.photo()) {
|
|
|
|
e.preventDefault();
|
|
|
|
photo.editTags([photo.getID()]);
|
|
|
|
}
|
2014-03-16 20:00:00 +00:00
|
|
|
})
|
2014-03-29 19:28:18 +00:00
|
|
|
.bind(['i', 'ctrl+i'], function() {
|
2014-01-22 10:12:51 +00:00
|
|
|
if (visible.infobox()) view.infobox.hide();
|
2014-05-17 21:30:02 +00:00
|
|
|
else if (visible.infoboxbutton()) view.infobox.show();
|
2014-03-29 19:28:18 +00:00
|
|
|
})
|
|
|
|
.bind(['command+backspace', 'ctrl+backspace'], function() {
|
|
|
|
if (visible.photo()&&!visible.message()) photo.delete([photo.getID()]);
|
|
|
|
else if (visible.album()&&!visible.message()) album.delete([album.getID()]);
|
2014-01-22 10:12:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Mousetrap.bindGlobal('enter', function() {
|
|
|
|
if ($(".message .button.active").length) $(".message .button.active").addClass("pressed").click()
|
|
|
|
});
|
|
|
|
|
|
|
|
Mousetrap.bindGlobal(['esc', 'command+up'], function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (visible.message()&&$(".message .close").length>0) modal.close();
|
|
|
|
else if (visible.contextMenu()) contextMenu.close();
|
|
|
|
else if (visible.infobox()) view.infobox.hide();
|
|
|
|
else if (visible.photo()) lychee.goto(album.getID());
|
|
|
|
else if (visible.album()) lychee.goto("");
|
|
|
|
else if (visible.albums()&&$("#search").val().length!==0) search.reset();
|
|
|
|
});
|
|
|
|
|
2014-03-25 14:25:28 +00:00
|
|
|
|
2014-03-26 22:43:17 +00:00
|
|
|
if (mobileBrowser()) {
|
2014-03-29 19:28:18 +00:00
|
|
|
|
|
|
|
$(document)
|
|
|
|
|
|
|
|
/* Fullscreen on mobile */
|
|
|
|
.on('touchend', '#image', function(e) {
|
|
|
|
if (swipe.obj===null||(swipe.offset>=-5&&swipe.offset<=5)) {
|
|
|
|
if (visible.controls()) view.header.hide(e, 0);
|
|
|
|
else view.header.show();
|
|
|
|
}
|
2014-03-26 22:43:17 +00:00
|
|
|
})
|
2014-03-29 19:28:18 +00:00
|
|
|
|
|
|
|
/* Swipe on mobile */
|
2014-04-01 20:39:59 +00:00
|
|
|
.swipe().on('swipeStart', function() { if (visible.photo()) swipe.start($("#image")) })
|
|
|
|
.swipe().on('swipeMove', function(e) { if (visible.photo()) swipe.move(e.swipe) })
|
|
|
|
.swipe().on('swipeEnd', function(e) { if (visible.photo()) swipe.stop(e.swipe, photo.previous, photo.next) });
|
2014-03-29 19:28:18 +00:00
|
|
|
|
2014-03-26 22:43:17 +00:00
|
|
|
}
|
2014-03-26 22:02:45 +00:00
|
|
|
|
2014-01-22 10:12:51 +00:00
|
|
|
/* Document */
|
|
|
|
$(document)
|
|
|
|
|
|
|
|
/* Login */
|
|
|
|
.on("keyup", "#password", function() { if ($(this).val().length>0) $(this).removeClass("error") })
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
.on(event_name, "#title.editable", function() {
|
2014-01-28 23:43:06 +00:00
|
|
|
if (visible.photo()) photo.setTitle([photo.getID()]);
|
2014-02-02 14:11:46 +00:00
|
|
|
else album.setTitle([album.getID()]);
|
2014-01-22 10:12:51 +00:00
|
|
|
})
|
2014-01-28 16:00:55 +00:00
|
|
|
|
2014-01-22 10:12:51 +00:00
|
|
|
/* Navigation */
|
|
|
|
.on("click", ".album", function() { lychee.goto($(this).attr("data-id")) })
|
|
|
|
.on("click", ".photo", function() { lychee.goto(album.getID() + "/" + $(this).attr("data-id")) })
|
|
|
|
|
|
|
|
/* Modal */
|
|
|
|
.on(event_name, ".message .close", modal.close)
|
2014-02-25 22:37:05 +00:00
|
|
|
.on(event_name, ".message .button:first", function() { if (modal.fns!==null) modal.fns[0](); if (!visible.signin()) modal.close() })
|
|
|
|
.on(event_name, ".message .button:last", function() { if (modal.fns!==null) modal.fns[1](); if (!visible.signin()) modal.close() })
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Add Dialog */
|
|
|
|
.on(event_name, ".button_add", function(e) { contextMenu.add(e) })
|
|
|
|
|
|
|
|
/* Context Menu */
|
|
|
|
.on("contextmenu", ".photo", function(e) { contextMenu.photo(photo.getID(), e) })
|
|
|
|
.on("contextmenu", ".album", function(e) { contextMenu.album(album.getID(), e) })
|
|
|
|
.on(event_name, ".contextmenu_bg", contextMenu.close)
|
2014-01-24 12:49:01 +00:00
|
|
|
.on("contextmenu", ".contextmenu_bg", contextMenu.close)
|
2014-01-22 10:12:51 +00:00
|
|
|
|
|
|
|
/* Infobox */
|
|
|
|
.on(event_name, "#infobox_overlay", view.infobox.hide)
|
|
|
|
|
|
|
|
/* Upload */
|
2014-08-16 18:53:46 +00:00
|
|
|
.on("change", "#upload_files", function() { modal.close(); upload.start.local(this.files) })
|
|
|
|
.on(event_name, ".upload_message a.close", upload.close)
|
2014-01-22 10:12:51 +00:00
|
|
|
.on("dragover", function(e) { e.preventDefault(); }, false)
|
|
|
|
.on("drop", function(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2014-08-16 18:53:46 +00:00
|
|
|
if (e.originalEvent.dataTransfer.files.length>0) upload.start.local(e.originalEvent.dataTransfer.files);
|
|
|
|
else if (e.originalEvent.dataTransfer.getData('Text').length>3) upload.start.url(e.originalEvent.dataTransfer.getData('Text'));
|
2014-01-22 10:12:51 +00:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Init */
|
|
|
|
lychee.init();
|
|
|
|
|
|
|
|
});
|