|
@@ -11,12 +11,13 @@ contextMenu = {
|
|
|
|
|
|
show: function(items, mouse_x, mouse_y, orientation) {
|
|
show: function(items, mouse_x, mouse_y, orientation) {
|
|
|
|
|
|
- if (visible.contextMenu()) contextMenu.close();
|
|
|
|
|
|
+ contextMenu.close();
|
|
|
|
|
|
$("body")
|
|
$("body")
|
|
.css("overflow", "hidden")
|
|
.css("overflow", "hidden")
|
|
.append(build.contextMenu(items));
|
|
.append(build.contextMenu(items));
|
|
|
|
|
|
|
|
+ // Do not leave the screen
|
|
if ((mouse_x+$(".contextmenu").outerWidth(true))>$("html").width()) orientation = "left";
|
|
if ((mouse_x+$(".contextmenu").outerWidth(true))>$("html").width()) orientation = "left";
|
|
if ((mouse_y+$(".contextmenu").outerHeight(true))>$("html").height()) mouse_y -= (mouse_y+$(".contextmenu").outerHeight(true)-$("html").height())
|
|
if ((mouse_y+$(".contextmenu").outerHeight(true))>$("html").height()) mouse_y -= (mouse_y+$(".contextmenu").outerHeight(true)-$("html").height())
|
|
|
|
|
|
@@ -38,11 +39,9 @@ contextMenu = {
|
|
add: function(e) {
|
|
add: function(e) {
|
|
|
|
|
|
var mouse_x = e.pageX,
|
|
var mouse_x = e.pageX,
|
|
- mouse_y = e.pageY,
|
|
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
items;
|
|
items;
|
|
|
|
|
|
- mouse_y -= $(document).scrollTop();
|
|
|
|
-
|
|
|
|
contextMenu.fns = [
|
|
contextMenu.fns = [
|
|
function() { $("#upload_files").click() },
|
|
function() { $("#upload_files").click() },
|
|
function() { upload.start.url() },
|
|
function() { upload.start.url() },
|
|
@@ -68,11 +67,9 @@ contextMenu = {
|
|
settings: function(e) {
|
|
settings: function(e) {
|
|
|
|
|
|
var mouse_x = e.pageX,
|
|
var mouse_x = e.pageX,
|
|
- mouse_y = e.pageY,
|
|
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
items;
|
|
items;
|
|
|
|
|
|
- mouse_y -= $(document).scrollTop();
|
|
|
|
-
|
|
|
|
contextMenu.fns = [
|
|
contextMenu.fns = [
|
|
function() { settings.setLogin() },
|
|
function() { settings.setLogin() },
|
|
function() { settings.setSorting() },
|
|
function() { settings.setSorting() },
|
|
@@ -95,13 +92,11 @@ contextMenu = {
|
|
album: function(albumID, e) {
|
|
album: function(albumID, e) {
|
|
|
|
|
|
var mouse_x = e.pageX,
|
|
var mouse_x = e.pageX,
|
|
- mouse_y = e.pageY,
|
|
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
items;
|
|
items;
|
|
|
|
|
|
if (albumID==="0"||albumID==="f"||albumID==="s") return false;
|
|
if (albumID==="0"||albumID==="f"||albumID==="s") return false;
|
|
|
|
|
|
- mouse_y -= $(document).scrollTop();
|
|
|
|
-
|
|
|
|
contextMenu.fns = [
|
|
contextMenu.fns = [
|
|
function() { album.setTitle(albumID) },
|
|
function() { album.setTitle(albumID) },
|
|
function() { album.delete(albumID) }
|
|
function() { album.delete(albumID) }
|
|
@@ -121,15 +116,13 @@ contextMenu = {
|
|
photo: function(photoID, e) {
|
|
photo: function(photoID, e) {
|
|
|
|
|
|
var mouse_x = e.pageX,
|
|
var mouse_x = e.pageX,
|
|
- mouse_y = e.pageY,
|
|
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
items;
|
|
items;
|
|
|
|
|
|
- mouse_y -= $(document).scrollTop();
|
|
|
|
-
|
|
|
|
contextMenu.fns = [
|
|
contextMenu.fns = [
|
|
- function() { photo.setStar(photoID) },
|
|
|
|
|
|
+ function() { photo.setStar([photoID]) },
|
|
function() { photo.setTitle(photoID) },
|
|
function() { photo.setTitle(photoID) },
|
|
- function() { contextMenu.move(photoID, e, "right") },
|
|
|
|
|
|
+ function() { contextMenu.move([photoID], e, "right") },
|
|
function() { photo.delete(photoID) }
|
|
function() { photo.delete(photoID) }
|
|
];
|
|
];
|
|
|
|
|
|
@@ -146,18 +139,45 @@ contextMenu = {
|
|
$(".photo[data-id='" + photoID + "']").addClass("active");
|
|
$(".photo[data-id='" + photoID + "']").addClass("active");
|
|
|
|
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ photoMulti: function(ids, e) {
|
|
|
|
+
|
|
|
|
+ var mouse_x = e.pageX,
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
|
|
+ items;
|
|
|
|
+
|
|
|
|
+ multiselect.stopResize();
|
|
|
|
+
|
|
|
|
+ contextMenu.fns = [
|
|
|
|
+ function() { photo.setStar(ids) },
|
|
|
|
+ function() { photo.setTitle(ids) },
|
|
|
|
+ function() { contextMenu.move(ids, e, "right") },
|
|
|
|
+ function() { photo.delete(ids) }
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ items = [
|
|
|
|
+ ["<a class='icon-star'></a> Star All", 0],
|
|
|
|
+ ["separator", -1],
|
|
|
|
+ ["<a class='icon-edit'></a> Rename All", 1],
|
|
|
|
+ ["<a class='icon-folder-open'></a> Move All", 2],
|
|
|
|
+ ["<a class='icon-trash'></a> Delete All", 3]
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ contextMenu.show(items, mouse_x, mouse_y, "right");
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
|
|
- move: function(photoID, e, orientation) {
|
|
|
|
|
|
+ move: function(ids, e, orientation) {
|
|
|
|
|
|
var mouse_x = e.pageX,
|
|
var mouse_x = e.pageX,
|
|
- mouse_y = e.pageY,
|
|
|
|
|
|
+ mouse_y = e.pageY - $(document).scrollTop(),
|
|
items = [];
|
|
items = [];
|
|
|
|
|
|
- contextMenu.fns = [];
|
|
|
|
|
|
+ contextMenu.close(true);
|
|
|
|
|
|
if (album.getID()!=="0") {
|
|
if (album.getID()!=="0") {
|
|
items = [
|
|
items = [
|
|
- ["Unsorted", 0, "photo.setAlbum(0, " + photoID + ")"],
|
|
|
|
|
|
+ ["Unsorted", 0, "photo.setAlbum([" + ids + "], 0)"],
|
|
["separator", -1]
|
|
["separator", -1]
|
|
];
|
|
];
|
|
}
|
|
}
|
|
@@ -168,14 +188,10 @@ contextMenu = {
|
|
items = [["New Album", 0, "album.add()"]];
|
|
items = [["New Album", 0, "album.add()"]];
|
|
} else {
|
|
} else {
|
|
$.each(data.content, function(index) {
|
|
$.each(data.content, function(index) {
|
|
- if (this.id!=album.getID()) items.push([this.title, 0, "photo.setAlbum(" + this.id + ", " + photoID + ")"]);
|
|
|
|
|
|
+ if (this.id!=album.getID()) items.push([this.title, 0, "photo.setAlbum([" + ids + "], " + this.id + ")"]);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
- contextMenu.close();
|
|
|
|
-
|
|
|
|
- $(".photo[data-id='" + photoID + "']").addClass("active");
|
|
|
|
-
|
|
|
|
if (!visible.photo()) contextMenu.show(items, mouse_x, mouse_y, "right");
|
|
if (!visible.photo()) contextMenu.show(items, mouse_x, mouse_y, "right");
|
|
else contextMenu.show(items, mouse_x, mouse_y, "left");
|
|
else contextMenu.show(items, mouse_x, mouse_y, "left");
|
|
|
|
|
|
@@ -255,13 +271,19 @@ contextMenu = {
|
|
|
|
|
|
},
|
|
},
|
|
|
|
|
|
- close: function() {
|
|
|
|
-
|
|
|
|
- contextMenu.js = null;
|
|
|
|
-
|
|
|
|
|
|
+ close: function(leaveSelection) {
|
|
|
|
+
|
|
|
|
+ if (!visible.contextMenu()) return false;
|
|
|
|
+
|
|
|
|
+ contextMenu.fns = [];
|
|
|
|
+
|
|
$(".contextmenu_bg, .contextmenu").remove();
|
|
$(".contextmenu_bg, .contextmenu").remove();
|
|
- $(".photo.active, .album.active").removeClass("active");
|
|
|
|
$("body").css("overflow", "auto");
|
|
$("body").css("overflow", "auto");
|
|
|
|
+
|
|
|
|
+ if (leaveSelection!==true) {
|
|
|
|
+ $(".photo.active, .album.active").removeClass("active");
|
|
|
|
+ if (visible.multiselect()) multiselect.close();
|
|
|
|
+ }
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|