Merge pull request #3264 from takluyver/i3263

Change the path to create notebooks in when navigating directories
This commit is contained in:
Matthias Bussonnier 2018-01-27 09:28:00 -08:00 committed by GitHub
commit b96d75846d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 5 deletions

View File

@ -13,7 +13,6 @@ define([
var NewNotebookWidget = function (selector, options) {
this.selector = selector;
this.base_url = options.base_url;
this.notebook_path = options.notebook_path;
this.contents = options.contents;
this.events = options.events;
this.default_kernel = null;
@ -74,12 +73,13 @@ define([
this.events.trigger('kernelspecs_loaded.KernelSpec', data.kernelspecs);
};
NewNotebookWidget.prototype.new_notebook = function (kernel_name) {
NewNotebookWidget.prototype.new_notebook = function (kernel_name, evt) {
/** create and open a new notebook */
var that = this;
kernel_name = kernel_name || this.default_kernel;
var w = window.open(undefined, IPython._target);
this.contents.new_untitled(that.notebook_path, {type: "notebook"}).then(
var dir_path = $('body').attr('data-notebook-path');
this.contents.new_untitled(dir_path, {type: "notebook"}).then(
function (data) {
var url = utils.url_path_join(
that.base_url, 'notebooks',
@ -107,6 +107,9 @@ define([
}
});
});
if (evt !== undefined) {
evt.preventDefault();
}
};
return {'NewNotebookWidget': NewNotebookWidget};

View File

@ -169,6 +169,7 @@ define([
console.warn('Error during New file creation', e);
});
that.load_sessions();
e.preventDefault();
});
$('#new-folder').click(function(e) {
that.contents.new_untitled(that.notebook_path || '', {type: 'directory'})
@ -189,6 +190,7 @@ define([
console.warn('Error during New directory creation', e);
});
that.load_sessions();
e.preventDefault();
});
// Bind events for action buttons.
@ -373,8 +375,8 @@ define([
breadcrumb.append(root);
var path_parts = [];
this.notebook_path.split('/').forEach(function(path_part) {
path_parts.push(path_part)
var path = path_parts.join('/')
path_parts.push(path_part);
var path = path_parts.join('/');
var url = utils.url_path_join(
that.base_url,
'/tree',
@ -399,6 +401,7 @@ define([
NotebookList.prototype.update_location = function (path) {
this.notebook_path = path;
$('body').attr('data-notebook-path', path);
// Update the file tree list without reloading the page
this.load_list();
};