##// END OF EJS Templates
simplify NotebookList.duplicate with recent changes...
Min RK -
Show More
@@ -1,515 +1,498 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 'base/js/namespace',
5 'base/js/namespace',
6 'jquery',
6 'jquery',
7 'base/js/utils',
7 'base/js/utils',
8 'base/js/dialog',
8 'base/js/dialog',
9 ], function(IPython, $, utils, dialog) {
9 ], function(IPython, $, utils, dialog) {
10 "use strict";
10 "use strict";
11
11
12 var NotebookList = function (selector, options) {
12 var NotebookList = function (selector, options) {
13 // Constructor
13 // Constructor
14 //
14 //
15 // Parameters:
15 // Parameters:
16 // selector: string
16 // selector: string
17 // options: dictionary
17 // options: dictionary
18 // Dictionary of keyword arguments.
18 // Dictionary of keyword arguments.
19 // session_list: SessionList instance
19 // session_list: SessionList instance
20 // element_name: string
20 // element_name: string
21 // base_url: string
21 // base_url: string
22 // notebook_path: string
22 // notebook_path: string
23 // contents: Contents instance
23 // contents: Contents instance
24 var that = this;
24 var that = this;
25 this.session_list = options.session_list;
25 this.session_list = options.session_list;
26 // allow code re-use by just changing element_name in kernellist.js
26 // allow code re-use by just changing element_name in kernellist.js
27 this.element_name = options.element_name || 'notebook';
27 this.element_name = options.element_name || 'notebook';
28 this.selector = selector;
28 this.selector = selector;
29 if (this.selector !== undefined) {
29 if (this.selector !== undefined) {
30 this.element = $(selector);
30 this.element = $(selector);
31 this.style();
31 this.style();
32 this.bind_events();
32 this.bind_events();
33 }
33 }
34 this.notebooks_list = [];
34 this.notebooks_list = [];
35 this.sessions = {};
35 this.sessions = {};
36 this.base_url = options.base_url || utils.get_body_data("baseUrl");
36 this.base_url = options.base_url || utils.get_body_data("baseUrl");
37 this.notebook_path = options.notebook_path || utils.get_body_data("notebookPath");
37 this.notebook_path = options.notebook_path || utils.get_body_data("notebookPath");
38 this.contents = options.contents;
38 this.contents = options.contents;
39 if (this.session_list && this.session_list.events) {
39 if (this.session_list && this.session_list.events) {
40 this.session_list.events.on('sessions_loaded.Dashboard',
40 this.session_list.events.on('sessions_loaded.Dashboard',
41 function(e, d) { that.sessions_loaded(d); });
41 function(e, d) { that.sessions_loaded(d); });
42 }
42 }
43 };
43 };
44
44
45 NotebookList.prototype.style = function () {
45 NotebookList.prototype.style = function () {
46 var prefix = '#' + this.element_name;
46 var prefix = '#' + this.element_name;
47 $(prefix + '_toolbar').addClass('list_toolbar');
47 $(prefix + '_toolbar').addClass('list_toolbar');
48 $(prefix + '_list_info').addClass('toolbar_info');
48 $(prefix + '_list_info').addClass('toolbar_info');
49 $(prefix + '_buttons').addClass('toolbar_buttons');
49 $(prefix + '_buttons').addClass('toolbar_buttons');
50 $(prefix + '_list_header').addClass('list_header');
50 $(prefix + '_list_header').addClass('list_header');
51 this.element.addClass("list_container");
51 this.element.addClass("list_container");
52 };
52 };
53
53
54
54
55 NotebookList.prototype.bind_events = function () {
55 NotebookList.prototype.bind_events = function () {
56 var that = this;
56 var that = this;
57 $('#refresh_' + this.element_name + '_list').click(function () {
57 $('#refresh_' + this.element_name + '_list').click(function () {
58 that.load_sessions();
58 that.load_sessions();
59 });
59 });
60 this.element.bind('dragover', function () {
60 this.element.bind('dragover', function () {
61 return false;
61 return false;
62 });
62 });
63 this.element.bind('drop', function(event){
63 this.element.bind('drop', function(event){
64 that.handleFilesUpload(event,'drop');
64 that.handleFilesUpload(event,'drop');
65 return false;
65 return false;
66 });
66 });
67 };
67 };
68
68
69 NotebookList.prototype.handleFilesUpload = function(event, dropOrForm) {
69 NotebookList.prototype.handleFilesUpload = function(event, dropOrForm) {
70 var that = this;
70 var that = this;
71 var files;
71 var files;
72 if(dropOrForm =='drop'){
72 if(dropOrForm =='drop'){
73 files = event.originalEvent.dataTransfer.files;
73 files = event.originalEvent.dataTransfer.files;
74 } else
74 } else
75 {
75 {
76 files = event.originalEvent.target.files;
76 files = event.originalEvent.target.files;
77 }
77 }
78 for (var i = 0; i < files.length; i++) {
78 for (var i = 0; i < files.length; i++) {
79 var f = files[i];
79 var f = files[i];
80 var name_and_ext = utils.splitext(f.name);
80 var name_and_ext = utils.splitext(f.name);
81 var file_ext = name_and_ext[1];
81 var file_ext = name_and_ext[1];
82
82
83 var reader = new FileReader();
83 var reader = new FileReader();
84 if (file_ext === '.ipynb') {
84 if (file_ext === '.ipynb') {
85 reader.readAsText(f);
85 reader.readAsText(f);
86 } else {
86 } else {
87 // read non-notebook files as binary
87 // read non-notebook files as binary
88 reader.readAsArrayBuffer(f);
88 reader.readAsArrayBuffer(f);
89 }
89 }
90 var item = that.new_item(0);
90 var item = that.new_item(0);
91 item.addClass('new-file');
91 item.addClass('new-file');
92 that.add_name_input(f.name, item, file_ext == '.ipynb' ? 'notebook' : 'file');
92 that.add_name_input(f.name, item, file_ext == '.ipynb' ? 'notebook' : 'file');
93 // Store the list item in the reader so we can use it later
93 // Store the list item in the reader so we can use it later
94 // to know which item it belongs to.
94 // to know which item it belongs to.
95 $(reader).data('item', item);
95 $(reader).data('item', item);
96 reader.onload = function (event) {
96 reader.onload = function (event) {
97 var item = $(event.target).data('item');
97 var item = $(event.target).data('item');
98 that.add_file_data(event.target.result, item);
98 that.add_file_data(event.target.result, item);
99 that.add_upload_button(item);
99 that.add_upload_button(item);
100 };
100 };
101 reader.onerror = function (event) {
101 reader.onerror = function (event) {
102 var item = $(event.target).data('item');
102 var item = $(event.target).data('item');
103 var name = item.data('name');
103 var name = item.data('name');
104 item.remove();
104 item.remove();
105 dialog.modal({
105 dialog.modal({
106 title : 'Failed to read file',
106 title : 'Failed to read file',
107 body : "Failed to read file '" + name + "'",
107 body : "Failed to read file '" + name + "'",
108 buttons : {'OK' : { 'class' : 'btn-primary' }}
108 buttons : {'OK' : { 'class' : 'btn-primary' }}
109 });
109 });
110 };
110 };
111 }
111 }
112 // Replace the file input form wth a clone of itself. This is required to
112 // Replace the file input form wth a clone of itself. This is required to
113 // reset the form. Otherwise, if you upload a file, delete it and try to
113 // reset the form. Otherwise, if you upload a file, delete it and try to
114 // upload it again, the changed event won't fire.
114 // upload it again, the changed event won't fire.
115 var form = $('input.fileinput');
115 var form = $('input.fileinput');
116 form.replaceWith(form.clone(true));
116 form.replaceWith(form.clone(true));
117 return false;
117 return false;
118 };
118 };
119
119
120 NotebookList.prototype.clear_list = function (remove_uploads) {
120 NotebookList.prototype.clear_list = function (remove_uploads) {
121 // Clears the navigation tree.
121 // Clears the navigation tree.
122 //
122 //
123 // Parameters
123 // Parameters
124 // remove_uploads: bool=False
124 // remove_uploads: bool=False
125 // Should upload prompts also be removed from the tree.
125 // Should upload prompts also be removed from the tree.
126 if (remove_uploads) {
126 if (remove_uploads) {
127 this.element.children('.list_item').remove();
127 this.element.children('.list_item').remove();
128 } else {
128 } else {
129 this.element.children('.list_item:not(.new-file)').remove();
129 this.element.children('.list_item:not(.new-file)').remove();
130 }
130 }
131 };
131 };
132
132
133 NotebookList.prototype.load_sessions = function(){
133 NotebookList.prototype.load_sessions = function(){
134 this.session_list.load_sessions();
134 this.session_list.load_sessions();
135 };
135 };
136
136
137
137
138 NotebookList.prototype.sessions_loaded = function(data){
138 NotebookList.prototype.sessions_loaded = function(data){
139 this.sessions = data;
139 this.sessions = data;
140 this.load_list();
140 this.load_list();
141 };
141 };
142
142
143 NotebookList.prototype.load_list = function () {
143 NotebookList.prototype.load_list = function () {
144 var that = this;
144 var that = this;
145 this.contents.list_contents(that.notebook_path).then(
145 this.contents.list_contents(that.notebook_path).then(
146 $.proxy(this.draw_notebook_list, this),
146 $.proxy(this.draw_notebook_list, this),
147 function(error) {
147 function(error) {
148 that.draw_notebook_list({content: []}, "Server error: " + error.message);
148 that.draw_notebook_list({content: []}, "Server error: " + error.message);
149 }
149 }
150 );
150 );
151 };
151 };
152
152
153 /**
153 /**
154 * Draw the list of notebooks
154 * Draw the list of notebooks
155 * @method draw_notebook_list
155 * @method draw_notebook_list
156 * @param {Array} list An array of dictionaries representing files or
156 * @param {Array} list An array of dictionaries representing files or
157 * directories.
157 * directories.
158 * @param {String} error_msg An error message
158 * @param {String} error_msg An error message
159 */
159 */
160 NotebookList.prototype.draw_notebook_list = function (list, error_msg) {
160 NotebookList.prototype.draw_notebook_list = function (list, error_msg) {
161 var message = error_msg || 'Notebook list empty.';
161 var message = error_msg || 'Notebook list empty.';
162 var item = null;
162 var item = null;
163 var model = null;
163 var model = null;
164 var len = list.content.length;
164 var len = list.content.length;
165 this.clear_list();
165 this.clear_list();
166 var n_uploads = this.element.children('.list_item').length;
166 var n_uploads = this.element.children('.list_item').length;
167 if (len === 0) {
167 if (len === 0) {
168 item = this.new_item(0);
168 item = this.new_item(0);
169 var span12 = item.children().first();
169 var span12 = item.children().first();
170 span12.empty();
170 span12.empty();
171 span12.append($('<div style="margin:auto;text-align:center;color:grey"/>').text(message));
171 span12.append($('<div style="margin:auto;text-align:center;color:grey"/>').text(message));
172 }
172 }
173 var path = this.notebook_path;
173 var path = this.notebook_path;
174 var offset = n_uploads;
174 var offset = n_uploads;
175 if (path !== '') {
175 if (path !== '') {
176 item = this.new_item(offset);
176 item = this.new_item(offset);
177 model = {
177 model = {
178 type: 'directory',
178 type: 'directory',
179 name: '..',
179 name: '..',
180 path: utils.url_path_split(path)[0],
180 path: utils.url_path_split(path)[0],
181 };
181 };
182 this.add_link(model, item);
182 this.add_link(model, item);
183 offset += 1;
183 offset += 1;
184 }
184 }
185 for (var i=0; i<len; i++) {
185 for (var i=0; i<len; i++) {
186 model = list.content[i];
186 model = list.content[i];
187 item = this.new_item(i+offset);
187 item = this.new_item(i+offset);
188 this.add_link(model, item);
188 this.add_link(model, item);
189 }
189 }
190 };
190 };
191
191
192
192
193 NotebookList.prototype.new_item = function (index) {
193 NotebookList.prototype.new_item = function (index) {
194 var item = $('<div/>').addClass("list_item").addClass("row");
194 var item = $('<div/>').addClass("list_item").addClass("row");
195 // item.addClass('list_item ui-widget ui-widget-content ui-helper-clearfix');
195 // item.addClass('list_item ui-widget ui-widget-content ui-helper-clearfix');
196 // item.css('border-top-style','none');
196 // item.css('border-top-style','none');
197 item.append($("<div/>").addClass("col-md-12").append(
197 item.append($("<div/>").addClass("col-md-12").append(
198 $('<i/>').addClass('item_icon')
198 $('<i/>').addClass('item_icon')
199 ).append(
199 ).append(
200 $("<a/>").addClass("item_link").append(
200 $("<a/>").addClass("item_link").append(
201 $("<span/>").addClass("item_name")
201 $("<span/>").addClass("item_name")
202 )
202 )
203 ).append(
203 ).append(
204 $('<div/>').addClass("item_buttons btn-group pull-right")
204 $('<div/>').addClass("item_buttons btn-group pull-right")
205 ));
205 ));
206
206
207 if (index === -1) {
207 if (index === -1) {
208 this.element.append(item);
208 this.element.append(item);
209 } else {
209 } else {
210 this.element.children().eq(index).after(item);
210 this.element.children().eq(index).after(item);
211 }
211 }
212 return item;
212 return item;
213 };
213 };
214
214
215
215
216 NotebookList.icons = {
216 NotebookList.icons = {
217 directory: 'folder_icon',
217 directory: 'folder_icon',
218 notebook: 'notebook_icon',
218 notebook: 'notebook_icon',
219 file: 'file_icon',
219 file: 'file_icon',
220 };
220 };
221
221
222 NotebookList.uri_prefixes = {
222 NotebookList.uri_prefixes = {
223 directory: 'tree',
223 directory: 'tree',
224 notebook: 'notebooks',
224 notebook: 'notebooks',
225 file: 'files',
225 file: 'files',
226 };
226 };
227
227
228
228
229 NotebookList.prototype.add_link = function (model, item) {
229 NotebookList.prototype.add_link = function (model, item) {
230 var path = model.path,
230 var path = model.path,
231 name = model.name;
231 name = model.name;
232 item.data('name', name);
232 item.data('name', name);
233 item.data('path', path);
233 item.data('path', path);
234 item.find(".item_name").text(name);
234 item.find(".item_name").text(name);
235 var icon = NotebookList.icons[model.type];
235 var icon = NotebookList.icons[model.type];
236 var uri_prefix = NotebookList.uri_prefixes[model.type];
236 var uri_prefix = NotebookList.uri_prefixes[model.type];
237 item.find(".item_icon").addClass(icon).addClass('icon-fixed-width');
237 item.find(".item_icon").addClass(icon).addClass('icon-fixed-width');
238 var link = item.find("a.item_link")
238 var link = item.find("a.item_link")
239 .attr('href',
239 .attr('href',
240 utils.url_join_encode(
240 utils.url_join_encode(
241 this.base_url,
241 this.base_url,
242 uri_prefix,
242 uri_prefix,
243 path
243 path
244 )
244 )
245 );
245 );
246 // directory nav doesn't open new tabs
246 // directory nav doesn't open new tabs
247 // files, notebooks do
247 // files, notebooks do
248 if (model.type !== "directory") {
248 if (model.type !== "directory") {
249 link.attr('target','_blank');
249 link.attr('target','_blank');
250 }
250 }
251 if (model.type !== 'directory') {
251 if (model.type !== 'directory') {
252 this.add_duplicate_button(item);
252 this.add_duplicate_button(item);
253 }
253 }
254 if (model.type == 'file') {
254 if (model.type == 'file') {
255 this.add_delete_button(item);
255 this.add_delete_button(item);
256 } else if (model.type == 'notebook') {
256 } else if (model.type == 'notebook') {
257 if (this.sessions[path] === undefined){
257 if (this.sessions[path] === undefined){
258 this.add_delete_button(item);
258 this.add_delete_button(item);
259 } else {
259 } else {
260 this.add_shutdown_button(item, this.sessions[path]);
260 this.add_shutdown_button(item, this.sessions[path]);
261 }
261 }
262 }
262 }
263 };
263 };
264
264
265
265
266 NotebookList.prototype.add_name_input = function (name, item, icon_type) {
266 NotebookList.prototype.add_name_input = function (name, item, icon_type) {
267 item.data('name', name);
267 item.data('name', name);
268 item.find(".item_icon").addClass(NotebookList.icons[icon_type]).addClass('icon-fixed-width');
268 item.find(".item_icon").addClass(NotebookList.icons[icon_type]).addClass('icon-fixed-width');
269 item.find(".item_name").empty().append(
269 item.find(".item_name").empty().append(
270 $('<input/>')
270 $('<input/>')
271 .addClass("filename_input")
271 .addClass("filename_input")
272 .attr('value', name)
272 .attr('value', name)
273 .attr('size', '30')
273 .attr('size', '30')
274 .attr('type', 'text')
274 .attr('type', 'text')
275 .keyup(function(event){
275 .keyup(function(event){
276 if(event.keyCode == 13){item.find('.upload_button').click();}
276 if(event.keyCode == 13){item.find('.upload_button').click();}
277 else if(event.keyCode == 27){item.remove();}
277 else if(event.keyCode == 27){item.remove();}
278 })
278 })
279 );
279 );
280 };
280 };
281
281
282
282
283 NotebookList.prototype.add_file_data = function (data, item) {
283 NotebookList.prototype.add_file_data = function (data, item) {
284 item.data('filedata', data);
284 item.data('filedata', data);
285 };
285 };
286
286
287
287
288 NotebookList.prototype.add_shutdown_button = function (item, session) {
288 NotebookList.prototype.add_shutdown_button = function (item, session) {
289 var that = this;
289 var that = this;
290 var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-danger").
290 var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-danger").
291 click(function (e) {
291 click(function (e) {
292 var settings = {
292 var settings = {
293 processData : false,
293 processData : false,
294 cache : false,
294 cache : false,
295 type : "DELETE",
295 type : "DELETE",
296 dataType : "json",
296 dataType : "json",
297 success : function () {
297 success : function () {
298 that.load_sessions();
298 that.load_sessions();
299 },
299 },
300 error : utils.log_ajax_error,
300 error : utils.log_ajax_error,
301 };
301 };
302 var url = utils.url_join_encode(
302 var url = utils.url_join_encode(
303 that.base_url,
303 that.base_url,
304 'api/sessions',
304 'api/sessions',
305 session
305 session
306 );
306 );
307 $.ajax(url, settings);
307 $.ajax(url, settings);
308 return false;
308 return false;
309 });
309 });
310 // var new_buttons = item.find('a'); // shutdown_button;
311 item.find(".item_buttons").append(shutdown_button);
310 item.find(".item_buttons").append(shutdown_button);
312 };
311 };
313
312
314 NotebookList.prototype.add_duplicate_button = function (item) {
313 NotebookList.prototype.add_duplicate_button = function (item) {
315 var notebooklist = this;
314 var notebooklist = this;
316 var duplicate_button = $("<button/>").text("Duplicate").addClass("btn btn-default btn-xs").
315 var duplicate_button = $("<button/>").text("Duplicate").addClass("btn btn-default btn-xs").
317 click(function (e) {
316 click(function (e) {
318 // $(this) is the button that was clicked.
317 // $(this) is the button that was clicked.
319 var that = $(this);
318 var that = $(this);
320 // We use the nbname and notebook_id from the parent notebook_item element's
319 var name = item.data('name');
321 // data because the outer scopes values change as we iterate through the loop.
320 var path = item.data('path');
322 var parent_item = that.parents('div.list_item');
323 var name = parent_item.data('name');
324 var path = parent_item.data('path');
325 var message = 'Are you sure you want to duplicate ' + name + '?';
321 var message = 'Are you sure you want to duplicate ' + name + '?';
326 var copy_from = {copy_from : path};
322 var copy_from = {copy_from : path};
327 IPython.dialog.modal({
323 IPython.dialog.modal({
328 title : "Duplicate " + name,
324 title : "Duplicate " + name,
329 body : message,
325 body : message,
330 buttons : {
326 buttons : {
331 Duplicate : {
327 Duplicate : {
332 class: "btn-primary",
328 class: "btn-primary",
333 click: function() {
329 click: function() {
334 var settings = {
330 notebooklist.contents.copy(path, notebooklist.notebook_path).then(function () {
335 processData : false,
331 notebooklist.load_list();
336 cache : false,
332 });
337 type : "POST",
338 dataType : "json",
339 data : JSON.stringify(copy_from),
340 success : function () {
341 notebooklist.load_list();
342 }
343 };
344 var url = utils.url_join_encode(
345 notebooklist.base_url,
346 'api/contents',
347 notebooklist.notebook_path
348 );
349 $.ajax(url, settings);
350 }
333 }
351 },
334 },
352 Cancel : {}
335 Cancel : {}
353 }
336 }
354 });
337 });
355 return false;
338 return false;
356 });
339 });
357 item.find(".item_buttons").append(duplicate_button);
340 item.find(".item_buttons").append(duplicate_button);
358 };
341 };
359
342
360 NotebookList.prototype.add_delete_button = function (item) {
343 NotebookList.prototype.add_delete_button = function (item) {
361 var notebooklist = this;
344 var notebooklist = this;
362 var delete_button = $("<button/>").text("Delete").addClass("btn btn-default btn-xs").
345 var delete_button = $("<button/>").text("Delete").addClass("btn btn-default btn-xs").
363 click(function (e) {
346 click(function (e) {
364 // $(this) is the button that was clicked.
347 // $(this) is the button that was clicked.
365 var that = $(this);
348 var that = $(this);
366 // We use the filename from the parent list_item element's
349 // We use the filename from the parent list_item element's
367 // data because the outer scope's values change as we iterate through the loop.
350 // data because the outer scope's values change as we iterate through the loop.
368 var parent_item = that.parents('div.list_item');
351 var parent_item = that.parents('div.list_item');
369 var name = parent_item.data('name');
352 var name = parent_item.data('name');
370 var path = parent_item.data('path');
353 var path = parent_item.data('path');
371 var message = 'Are you sure you want to permanently delete the file: ' + name + '?';
354 var message = 'Are you sure you want to permanently delete the file: ' + name + '?';
372 dialog.modal({
355 dialog.modal({
373 title : "Delete file",
356 title : "Delete file",
374 body : message,
357 body : message,
375 buttons : {
358 buttons : {
376 Delete : {
359 Delete : {
377 class: "btn-danger",
360 class: "btn-danger",
378 click: function() {
361 click: function() {
379 notebooklist.contents.delete(path).then(
362 notebooklist.contents.delete(path).then(
380 function() {
363 function() {
381 notebooklist.notebook_deleted(path);
364 notebooklist.notebook_deleted(path);
382 }
365 }
383 );
366 );
384 }
367 }
385 },
368 },
386 Cancel : {}
369 Cancel : {}
387 }
370 }
388 });
371 });
389 return false;
372 return false;
390 });
373 });
391 item.find(".item_buttons").append(delete_button);
374 item.find(".item_buttons").append(delete_button);
392 };
375 };
393
376
394 NotebookList.prototype.notebook_deleted = function(path) {
377 NotebookList.prototype.notebook_deleted = function(path) {
395 // Remove the deleted notebook.
378 // Remove the deleted notebook.
396 $( ":data(path)" ).each(function() {
379 $( ":data(path)" ).each(function() {
397 var element = $(this);
380 var element = $(this);
398 if (element.data("path") == path) {
381 if (element.data("path") == path) {
399 element.remove();
382 element.remove();
400 }
383 }
401 });
384 });
402 };
385 };
403
386
404
387
405 NotebookList.prototype.add_upload_button = function (item) {
388 NotebookList.prototype.add_upload_button = function (item) {
406 var that = this;
389 var that = this;
407 var upload_button = $('<button/>').text("Upload")
390 var upload_button = $('<button/>').text("Upload")
408 .addClass('btn btn-primary btn-xs upload_button')
391 .addClass('btn btn-primary btn-xs upload_button')
409 .click(function (e) {
392 .click(function (e) {
410 var filename = item.find('.item_name > input').val();
393 var filename = item.find('.item_name > input').val();
411 var path = utils.url_path_join(that.notebook_path, filename);
394 var path = utils.url_path_join(that.notebook_path, filename);
412 var filedata = item.data('filedata');
395 var filedata = item.data('filedata');
413 var format = 'text';
396 var format = 'text';
414 if (filename.length === 0 || filename[0] === '.') {
397 if (filename.length === 0 || filename[0] === '.') {
415 dialog.modal({
398 dialog.modal({
416 title : 'Invalid file name',
399 title : 'Invalid file name',
417 body : "File names must be at least one character and not start with a dot",
400 body : "File names must be at least one character and not start with a dot",
418 buttons : {'OK' : { 'class' : 'btn-primary' }}
401 buttons : {'OK' : { 'class' : 'btn-primary' }}
419 });
402 });
420 return false;
403 return false;
421 }
404 }
422 if (filedata instanceof ArrayBuffer) {
405 if (filedata instanceof ArrayBuffer) {
423 // base64-encode binary file data
406 // base64-encode binary file data
424 var bytes = '';
407 var bytes = '';
425 var buf = new Uint8Array(filedata);
408 var buf = new Uint8Array(filedata);
426 var nbytes = buf.byteLength;
409 var nbytes = buf.byteLength;
427 for (var i=0; i<nbytes; i++) {
410 for (var i=0; i<nbytes; i++) {
428 bytes += String.fromCharCode(buf[i]);
411 bytes += String.fromCharCode(buf[i]);
429 }
412 }
430 filedata = btoa(bytes);
413 filedata = btoa(bytes);
431 format = 'base64';
414 format = 'base64';
432 }
415 }
433 var model = {};
416 var model = {};
434
417
435 var name_and_ext = utils.splitext(filename);
418 var name_and_ext = utils.splitext(filename);
436 var file_ext = name_and_ext[1];
419 var file_ext = name_and_ext[1];
437 var content_type;
420 var content_type;
438 if (file_ext === '.ipynb') {
421 if (file_ext === '.ipynb') {
439 model.type = 'notebook';
422 model.type = 'notebook';
440 model.format = 'json';
423 model.format = 'json';
441 try {
424 try {
442 model.content = JSON.parse(filedata);
425 model.content = JSON.parse(filedata);
443 } catch (e) {
426 } catch (e) {
444 dialog.modal({
427 dialog.modal({
445 title : 'Cannot upload invalid Notebook',
428 title : 'Cannot upload invalid Notebook',
446 body : "The error was: " + e,
429 body : "The error was: " + e,
447 buttons : {'OK' : {
430 buttons : {'OK' : {
448 'class' : 'btn-primary',
431 'class' : 'btn-primary',
449 click: function () {
432 click: function () {
450 item.remove();
433 item.remove();
451 }
434 }
452 }}
435 }}
453 });
436 });
454 return false;
437 return false;
455 }
438 }
456 content_type = 'application/json';
439 content_type = 'application/json';
457 } else {
440 } else {
458 model.type = 'file';
441 model.type = 'file';
459 model.format = format;
442 model.format = format;
460 model.content = filedata;
443 model.content = filedata;
461 content_type = 'application/octet-stream';
444 content_type = 'application/octet-stream';
462 }
445 }
463 filedata = item.data('filedata');
446 filedata = item.data('filedata');
464
447
465 var on_success = function () {
448 var on_success = function () {
466 item.removeClass('new-file');
449 item.removeClass('new-file');
467 that.add_link(model, item);
450 that.add_link(model, item);
468 that.add_delete_button(item);
451 that.add_delete_button(item);
469 that.session_list.load_sessions();
452 that.session_list.load_sessions();
470 };
453 };
471
454
472 var exists = false;
455 var exists = false;
473 $.each(that.element.find('.list_item:not(.new-file)'), function(k,v){
456 $.each(that.element.find('.list_item:not(.new-file)'), function(k,v){
474 if ($(v).data('name') === filename) { exists = true; return false; }
457 if ($(v).data('name') === filename) { exists = true; return false; }
475 });
458 });
476
459
477 if (exists) {
460 if (exists) {
478 dialog.modal({
461 dialog.modal({
479 title : "Replace file",
462 title : "Replace file",
480 body : 'There is already a file named ' + filename + ', do you want to replace it?',
463 body : 'There is already a file named ' + filename + ', do you want to replace it?',
481 buttons : {
464 buttons : {
482 Overwrite : {
465 Overwrite : {
483 class: "btn-danger",
466 class: "btn-danger",
484 click: function () {
467 click: function () {
485 that.contents.save(path, model).then(on_success);
468 that.contents.save(path, model).then(on_success);
486 }
469 }
487 },
470 },
488 Cancel : {
471 Cancel : {
489 click: function() { item.remove(); }
472 click: function() { item.remove(); }
490 }
473 }
491 }
474 }
492 });
475 });
493 } else {
476 } else {
494 that.contents.save(path, model).then(on_success);
477 that.contents.save(path, model).then(on_success);
495 }
478 }
496
479
497 return false;
480 return false;
498 });
481 });
499 var cancel_button = $('<button/>').text("Cancel")
482 var cancel_button = $('<button/>').text("Cancel")
500 .addClass("btn btn-default btn-xs")
483 .addClass("btn btn-default btn-xs")
501 .click(function (e) {
484 .click(function (e) {
502 item.remove();
485 item.remove();
503 return false;
486 return false;
504 });
487 });
505 item.find(".item_buttons").empty()
488 item.find(".item_buttons").empty()
506 .append(upload_button)
489 .append(upload_button)
507 .append(cancel_button);
490 .append(cancel_button);
508 };
491 };
509
492
510
493
511 // Backwards compatability.
494 // Backwards compatability.
512 IPython.NotebookList = NotebookList;
495 IPython.NotebookList = NotebookList;
513
496
514 return {'NotebookList': NotebookList};
497 return {'NotebookList': NotebookList};
515 });
498 });
General Comments 0
You need to be logged in to leave comments. Login now