pandora/static/js/deleteDocumentDialog.js

46 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-03-24 15:13:24 +05:30
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2014-11-20 13:31:00 +00:00
2013-03-24 15:13:24 +05:30
'use strict';
pandora.ui.deleteDocumentDialog = function(files, callback) {
2013-03-24 15:13:24 +05:30
2014-02-14 15:23:59 +00:00
var string = Ox._(files.length == 1 ? 'Document' : 'Documents'),
2015-04-20 10:13:56 +02:00
2014-01-07 13:23:11 +05:30
that = pandora.ui.iconDialog({
2013-03-24 15:13:24 +05:30
buttons: [
Ox.Button({
id: 'keep',
2014-02-14 15:23:59 +00:00
title: Ox._('Keep {0}', [string])
2013-03-24 15:13:24 +05:30
}).bindEvent({
click: function() {
that.close();
}
}),
Ox.Button({
id: 'delete',
2014-02-14 15:23:59 +00:00
title: Ox._('Delete {0}', [string])
2013-03-24 15:13:24 +05:30
}).bindEvent({
click: function() {
that.close();
pandora.api.removeDocument({
2014-01-16 02:57:15 +00:00
ids: files.map(function(file) {
return file.id;
})
2013-04-26 11:21:22 +02:00
}, callback);
2013-03-24 15:13:24 +05:30
}
})
],
content: files.length == 1
2014-01-16 02:57:15 +00:00
? Ox._('Are you sure you want to delete the document "{0}"?', [files[0].name + '.' + files[0].extension])
: Ox._('Are you sure you want to delete {0} documents?', [files.length]),
2013-03-24 15:13:24 +05:30
keys: {enter: 'delete', escape: 'keep'},
2014-01-07 13:23:11 +05:30
title: files.length == 1
2014-02-14 15:23:59 +00:00
? Ox._('Delete {0}', [string])
2014-01-07 13:23:11 +05:30
: Ox._('Delete {0} Documents', [files.length])
2013-03-24 15:13:24 +05:30
});
return that;
};