|
@@ -68,21 +68,39 @@ function setURL(website_url) {
|
|
}
|
|
}
|
|
|
|
|
|
function getURL() {
|
|
function getURL() {
|
|
|
|
+
|
|
closeContextMenu();
|
|
closeContextMenu();
|
|
hash = document.location.hash.replace("#", "");
|
|
hash = document.location.hash.replace("#", "");
|
|
- if (hash.indexOf("a")!=-1) {
|
|
+
|
|
- if (hash.indexOf("p")!=-1) {
|
|
+ albumID = "";
|
|
- hash = hash.split("p");
|
|
+ photoID = "";
|
|
- content.hide();
|
|
+
|
|
- showImageview(hash[1]);
|
|
+ if (hash.indexOf("a")!=-1) albumID = hash.split("p")[0].replace("a", "");
|
|
- if (content.html()=="") loadPhotos(hash[0].replace("a", ""), true);
|
|
+ if (hash.indexOf("p")!=-1) photoID = hash.split("p")[1];
|
|
- } else {
|
|
+
|
|
- if (visibleImageview()) hideImageview();
|
|
+ if (hash=="upload") {
|
|
- else loadPhotos(hash.replace("a", ""), false);
|
|
+
|
|
- }
|
|
+ loadAlbums();
|
|
|
|
+ $("body").append(buildAddModal);
|
|
|
|
+
|
|
|
|
+ } else if (albumID&&photoID) {
|
|
|
|
+
|
|
|
|
+ content.hide();
|
|
|
|
+ showImageview(photoID);
|
|
|
|
+ if (content.html()=="") loadPhotos(albumID, true);
|
|
|
|
+
|
|
|
|
+ } else if (albumID) {
|
|
|
|
+
|
|
|
|
+ if (!visibleControls()) showControls();
|
|
|
|
+ if (visibleImageview()) hideImageview();
|
|
|
|
+ else loadPhotos(albumID, false);
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
|
|
+
|
|
loadAlbums();
|
|
loadAlbums();
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -190,12 +208,18 @@ function showControls() {
|
|
image_view.css("background-color", "rgba(30,30,30,.99)");
|
|
image_view.css("background-color", "rgba(30,30,30,.99)");
|
|
loading.css("opacity", 1);
|
|
loading.css("opacity", 1);
|
|
header.css("margin-Top", "0px");
|
|
header.css("margin-Top", "0px");
|
|
- $("#image_view #image").css({
|
|
+ if ($("#image_view #image.small").length>0) {
|
|
- top: 70,
|
|
+ $("#image_view #image").css({
|
|
- right: 30,
|
|
+ marginTop: -1*($("#image_view #image").height()/2)+20
|
|
- bottom: 30,
|
|
+ });
|
|
- left: 30
|
|
+ } else {
|
|
- });
|
|
+ $("#image_view #image").css({
|
|
|
|
+ top: 70,
|
|
|
|
+ right: 30,
|
|
|
|
+ bottom: 30,
|
|
|
|
+ left: 30
|
|
|
|
+ });
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function hideControls() {
|
|
function hideControls() {
|
|
@@ -207,12 +231,18 @@ function hideControls() {
|
|
image_view.css("background-color", "#111");
|
|
image_view.css("background-color", "#111");
|
|
loading.css("opacity", 0);
|
|
loading.css("opacity", 0);
|
|
header.css("margin-Top", "-45px");
|
|
header.css("margin-Top", "-45px");
|
|
- $("#image_view #image").css({
|
|
+ if ($("#image_view #image.small").length>0) {
|
|
- top: 0,
|
|
+ $("#image_view #image").css({
|
|
- right: 0,
|
|
+ marginTop: -1*($("#image_view #image").height()/2)
|
|
- bottom: 0,
|
|
+ });
|
|
- left: 0
|
|
+ } else {
|
|
- });
|
|
+ $("#image_view #image").css({
|
|
|
|
+ top: 0,
|
|
|
|
+ right: 0,
|
|
|
|
+ bottom: 0,
|
|
|
|
+ left: 0
|
|
|
|
+ });
|
|
|
|
+ }
|
|
}, 500));
|
|
}, 500));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -354,6 +384,21 @@ function visibleInfobox() {
|
|
else return true;
|
|
else return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+function isPhotoSmall(photo) {
|
|
|
|
+
|
|
|
|
+ size = [
|
|
|
|
+ ["width", false],
|
|
|
|
+ ["height", false]
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ if (photo.width<$(window).width()-60) size["width"] = true;
|
|
|
|
+ if (photo.height<$(window).height()-100) size["height"] = true;
|
|
|
|
+
|
|
|
|
+ if (size["width"]&&size["height"]) return true;
|
|
|
|
+ else return false;
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
|
|
Key Function
|
|
Key Function
|
|
This function triggers events when a special key is pressed.
|
|
This function triggers events when a special key is pressed.
|
|
@@ -447,7 +492,7 @@ function renamePhoto(photoID) {
|
|
|
|
|
|
newTitle = prompt("Please enter a new title for this photo:", oldTitle);
|
|
newTitle = prompt("Please enter a new title for this photo:", oldTitle);
|
|
|
|
|
|
- if (photoID!=""&&photoID!=null&&photoID!=undefined&&newTitle.length>2&&newTitle.length<31) {
|
|
+ if (photoID!=null&&photoID!=undefined&&newTitle.length<31) {
|
|
|
|
|
|
loadingFadeIn("loading");
|
|
loadingFadeIn("loading");
|
|
|
|
|
|
@@ -680,8 +725,10 @@ function loadPhotoInfo(photoID) {
|
|
}
|
|
}
|
|
|
|
|
|
image_view.attr("data-id", photoID);
|
|
image_view.attr("data-id", photoID);
|
|
- if (visibleControls()) image_view.html("").append("<a id='previous' class='icon-caret-left'></a><a id='next' class='icon-caret-right'></a><div id='image_wrapper'><div id='image' style='background-image: url(" + data.url + ")'></div></div>");
|
|
+ if (visibleControls()&&isPhotoSmall(data)) image_view.html("").append("<a id='previous' class='icon-caret-left'></a><a id='next' class='icon-caret-right'></a><div id='image' class='small' style='background-image: url(" + data.url + "); width: " + data.width + "px; height: " + data.height + "px; margin-top: -" + parseInt(data.height/2-20) + "px; margin-left: -" + data.width/2 + "px;'></div>");
|
|
- else image_view.html("").append("<a id='previous' style='left: -50px' class='icon-caret-left'></a><a id='next' style='right: -50px' class='icon-caret-right'></a><div id='image_wrapper'><div id='image' style='background-image: url(" + data.url + "); top: 0px; right: 0px; bottom: 0px; left: 0px;'></div></div>");
|
|
+ else if (visibleControls()) image_view.html("").append("<a id='previous' class='icon-caret-left'></a><a id='next' class='icon-caret-right'></a><div id='image' style='background-image: url(" + data.url + ")'></div>");
|
|
|
|
+ else if (isPhotoSmall(data)) image_view.html("").append("<a id='previous' style='left: -50px' class='icon-caret-left'></a><a id='next' style='right: -50px' class='icon-caret-right'></a><div id='image' class='small' style='background-image: url(" + data.url + "); width: " + data.width + "px; height: " + data.height + "px; margin-top: -" + parseInt(data.height/2) + "px; margin-left: -" + data.width/2 + "px;'></div>");
|
|
|
|
+ else image_view.html("").append("<a id='previous' style='left: -50px' class='icon-caret-left'></a><a id='next' style='right: -50px' class='icon-caret-right'></a><div id='image' style='background-image: url(" + data.url + "); top: 0px; right: 0px; bottom: 0px; left: 0px;'></div>");
|
|
image_view.removeClass("fadeOut").addClass("fadeIn").show();
|
|
image_view.removeClass("fadeOut").addClass("fadeIn").show();
|
|
|
|
|
|
if (!visibleControls()) hideControls(true);
|
|
if (!visibleControls()) hideControls(true);
|
|
@@ -914,6 +961,18 @@ function loadNextPhoto() {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+function syncFolder() {
|
|
|
|
+
|
|
|
|
+ params = "function=syncFolder";
|
|
|
|
+ $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
|
|
|
|
+
|
|
|
|
+ if (data==1) setURL("a0");
|
|
|
|
+ else loadingFadeIn("error");
|
|
|
|
+
|
|
|
|
+ }, error: ajaxError });
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
function search(term) {
|
|
function search(term) {
|
|
|
|
|
|
clearTimeout($(window).data("timeout"));
|
|
clearTimeout($(window).data("timeout"));
|