add to current item
This commit is contained in:
parent
40edf9dd4a
commit
1c0462393c
3 changed files with 33 additions and 29 deletions
|
@ -106,7 +106,7 @@ pandora.ui.addFilesDialog = function(options) {
|
||||||
});
|
});
|
||||||
|
|
||||||
var selectItems = [];
|
var selectItems = [];
|
||||||
if (!pandora.site.itemRequiresVideo && pandora.user.ui.item) {
|
if (pandora.user.ui.item && options.editable) {
|
||||||
selectItems.push({
|
selectItems.push({
|
||||||
id: 'add',
|
id: 'add',
|
||||||
title: Ox._(
|
title: Ox._(
|
||||||
|
@ -114,14 +114,7 @@ pandora.ui.addFilesDialog = function(options) {
|
||||||
[pandora.site.itemName.singular.toLowerCase()]
|
[pandora.site.itemName.singular.toLowerCase()]
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
selectItems.push({
|
}
|
||||||
id: 'one',
|
|
||||||
title: Ox._(
|
|
||||||
options.items.length > 1 ? 'Create new {0} with multiple parts' : 'Create new {0}',
|
|
||||||
[pandora.site.itemName.singular.toLowerCase()]
|
|
||||||
)
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
if (options.items.length > 1) {
|
if (options.items.length > 1) {
|
||||||
selectItems.push({
|
selectItems.push({
|
||||||
id: 'multiple',
|
id: 'multiple',
|
||||||
|
@ -134,11 +127,10 @@ pandora.ui.addFilesDialog = function(options) {
|
||||||
selectItems.push({
|
selectItems.push({
|
||||||
id: 'one',
|
id: 'one',
|
||||||
title: Ox._(
|
title: Ox._(
|
||||||
'Create one {0} with multiple parts',
|
options.items.length > 1 ? 'Create new {0} with multiple parts' : 'Create new {0}',
|
||||||
[pandora.site.itemName.singular.toLowerCase()]
|
[pandora.site.itemName.singular.toLowerCase()]
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
}
|
|
||||||
var $select = Ox.Select({
|
var $select = Ox.Select({
|
||||||
items: selectItems,
|
items: selectItems,
|
||||||
width: 256
|
width: 256
|
||||||
|
|
|
@ -270,10 +270,16 @@ pandora.ui.addItemDialog = function(options) {
|
||||||
} else {
|
} else {
|
||||||
$screen.stop();
|
$screen.stop();
|
||||||
that.close();
|
that.close();
|
||||||
|
(pandora.user.ui.item ? pandora.api.get : Ox.noop)({
|
||||||
|
id: pandora.user.ui.item,
|
||||||
|
keys: ['editable']
|
||||||
|
}, function(result) {
|
||||||
pandora.ui.addFilesDialog({
|
pandora.ui.addFilesDialog({
|
||||||
action: selected,
|
action: selected,
|
||||||
items: items
|
items: items,
|
||||||
|
editable: pandora.user.ui.item && result.data.editable
|
||||||
}).open();
|
}).open();
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,10 +58,16 @@ pandora.ui.mediaExistsDialog = function(options) {
|
||||||
return existing.indexOf(item.oshash) == -1;
|
return existing.indexOf(item.oshash) == -1;
|
||||||
});
|
});
|
||||||
that.close();
|
that.close();
|
||||||
|
(pandora.user.ui.item ? pandora.api.get : Ox.noop)({
|
||||||
|
id: pandora.user.ui.item,
|
||||||
|
keys: ['editable']
|
||||||
|
}, function(result) {
|
||||||
pandora.ui.addFilesDialog({
|
pandora.ui.addFilesDialog({
|
||||||
action: options.action,
|
action: options.action,
|
||||||
items: items
|
items: items,
|
||||||
|
editable: pandora.user.ui.item && result.data.editable
|
||||||
}).open();
|
}).open();
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue