Merge pull request #5351 from berendjan/download_multiple_files

tree added download multiple files
This commit is contained in:
Zachary Sailer 2020-05-15 10:15:32 -07:00 committed by GitHub
commit cbfc4dae91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -729,10 +729,9 @@ define([
$('.move-button').css('display', 'none');
}
// Download is only visible when one item is selected, and it is not a
// running notebook or a directory
// TODO(nhdaly): Add support for download multiple items at once.
if (selected.length === 1 && !has_running_notebook && !has_directory) {
// Download is only visible when items are selected, and none are
// running notebooks or a directories
if (selected.length > 0 && !has_running_notebook && !has_directory) {
$('.download-button').css('display', 'inline-block');
} else {
$('.download-button').css('display', 'none');
@ -1150,15 +1149,11 @@ define([
NotebookList.prototype.download_selected = function() {
var that = this;
// TODO(nhdaly): Support download multiple items at once.
if (that.selected.length !== 1){
return;
}
var item_path = that.selected[0].path;
window.open(utils.url_path_join(that.base_url, 'files', utils.encode_uri_components(item_path)) + '?download=1', IPython._target);
that.selected.forEach(function(item) {
var item_path = utils.encode_uri_components(item.path);
window.open(utils.url_path_join(that.base_url, 'files', utils.encode_uri_components(item_path)) + '?download=1', IPython._target);
});
};
NotebookList.prototype.delete_selected = function() {