2016-12-28 14:46:42 +01:00
|
|
|
var attachments_ui = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
|
|
|
function delete_attachments(attachment) {
|
2017-09-19 23:13:52 +02:00
|
|
|
var status = $('#delete-upload-status');
|
|
|
|
channel.del({
|
|
|
|
url: '/json/attachments/' + attachment,
|
|
|
|
idempotent: true,
|
|
|
|
error: function (xhr) {
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, status);
|
|
|
|
},
|
|
|
|
success: function () {
|
|
|
|
ui_report.success(i18n.t("Attachment deleted"), status);
|
|
|
|
},
|
|
|
|
});
|
2016-12-28 14:46:42 +01:00
|
|
|
}
|
|
|
|
|
2017-09-17 01:20:11 +02:00
|
|
|
exports.bytes_to_size = function (bytes) {
|
|
|
|
var sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
|
|
|
|
if (bytes === 0) {
|
|
|
|
return '0 B';
|
|
|
|
}
|
|
|
|
var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)), 10);
|
|
|
|
return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i];
|
|
|
|
};
|
|
|
|
|
2016-12-28 14:46:42 +01:00
|
|
|
exports.set_up_attachments = function () {
|
|
|
|
// The settings page must be rendered before this function gets called.
|
|
|
|
|
2017-09-17 01:20:11 +02:00
|
|
|
var attachments = page_params.attachments;
|
|
|
|
_.each(attachments, function (attachment) {
|
|
|
|
attachment.create_time = timerender.absolute_time(attachment.create_time);
|
|
|
|
attachment.size = exports.bytes_to_size(attachment.size);
|
|
|
|
});
|
2017-02-28 14:55:47 +01:00
|
|
|
|
2017-09-17 01:20:11 +02:00
|
|
|
var uploaded_files_table = $("#uploaded_files_table").expectOne();
|
2017-02-24 02:31:37 +01:00
|
|
|
|
2017-09-28 21:07:23 +02:00
|
|
|
list_render(uploaded_files_table, attachments, {
|
|
|
|
name: "uploaded-files-list",
|
|
|
|
modifier: function (attachment) {
|
|
|
|
return templates.render("uploaded_files_list", { attachment: attachment });
|
|
|
|
},
|
|
|
|
filter: {
|
|
|
|
element: $search_input,
|
|
|
|
callback: function (item, value) {
|
|
|
|
return item.name.toLocaleLowerCase().indexOf(value) >= 0;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}).init();
|
|
|
|
|
|
|
|
|
2017-09-17 01:20:11 +02:00
|
|
|
uploaded_files_table.empty();
|
|
|
|
_.each(attachments, function (attachment) {
|
|
|
|
var row = templates.render('uploaded_files_list', { attachment: attachment });
|
|
|
|
uploaded_files_table.append(row);
|
2016-12-28 14:46:42 +01:00
|
|
|
});
|
|
|
|
|
2017-09-17 01:20:11 +02:00
|
|
|
$('#uploaded_files_table').on('click', '.remove-attachment', function (e) {
|
|
|
|
var row = $(e.target).closest(".uploaded_file_row");
|
|
|
|
row.remove();
|
2016-12-28 14:46:42 +01:00
|
|
|
delete_attachments($(this).data('attachment'));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
}());
|
|
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = attachments_ui;
|
|
|
|
}
|