|
@@ -43,13 +43,21 @@ contextMenu.settings = function(e) {
|
|
|
|
|
|
contextMenu.album = function(albumID, e) {
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
if (albumID==='0'||albumID==='f'||albumID==='s'||albumID==='r') return false;
|
|
|
|
|
|
var items = [
|
|
|
{ type: 'item', title: build.iconic('pencil') + 'Rename', fn: function() { album.setTitle([albumID]) } },
|
|
|
+ { type: 'item', title: 'Merge', fn: function () { basicContext.close(); contextMenu.mergeAlbum(albumID, e) } },
|
|
|
{ type: 'item', title: build.iconic('trash') + 'Delete', fn: function() { album.delete([albumID]) } }
|
|
|
];
|
|
|
|
|
|
+
|
|
|
+ if (albums.json&&albums.json.albums&&Object.keys(albums.json.albums).length<=1) items.splice(1, 1);
|
|
|
+
|
|
|
$('.album[data-id="' + albumID + '"]').addClass('active');
|
|
|
|
|
|
basicContext.show(items, e, contextMenu.close);
|
|
@@ -61,8 +69,8 @@ contextMenu.albumMulti = function(albumIDs, e) {
|
|
|
multiselect.stopResize();
|
|
|
|
|
|
var items = [
|
|
|
- { type: 'item', title: 'Merge All', fn: function () { album.merge(albumIDs) } },
|
|
|
{ type: 'item', title: build.iconic('pencil') + 'Rename All', fn: function() { album.setTitle(albumIDs) } },
|
|
|
+ { type: 'item', title: 'Merge All', fn: function () { album.merge(albumIDs) } },
|
|
|
{ type: 'item', title: build.iconic('trash') + 'Delete All', fn: function() { album.delete(albumIDs) } }
|
|
|
];
|
|
|
|
|
@@ -104,6 +112,33 @@ contextMenu.albumTitle = function(albumID, e) {
|
|
|
|
|
|
}
|
|
|
|
|
|
+contextMenu.mergeAlbum = function(albumID, e) {
|
|
|
+
|
|
|
+ var items = [];
|
|
|
+
|
|
|
+ api.post('Album::getAll', {}, function(data) {
|
|
|
+
|
|
|
+ $.each(data.albums, function(){
|
|
|
+
|
|
|
+ var that = this;
|
|
|
+
|
|
|
+ if (!that.thumbs[0]) that.thumbs[0] = 'src/images/no_cover.svg';
|
|
|
+ that.contextTitle = "<img class='cover' width='16' height='16' src='" + that.thumbs[0] + "'><div class='title'>" + that.title + "</div>";
|
|
|
+
|
|
|
+ if (that.id!=album.getID()) {
|
|
|
+ items.unshift({ type: 'item', title: that.contextTitle, fn: function() { album.merge([albumID, that.id]) } });
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ if (items.length===0) return false;
|
|
|
+
|
|
|
+ basicContext.show(items, e, contextMenu.close);
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
contextMenu.photo = function(photoID, e) {
|
|
|
|
|
|
|