##// END OF EJS Templates
Add the "Duplicate" button in the main dashboard...
David Neto -
Show More
@@ -1,467 +1,514
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 var path_name = utils.url_path_join(path, name);
251 var path_name = utils.url_path_join(path, name);
252 if (model.type == 'file') {
252 if (model.type == 'file') {
253 this.add_delete_button(item);
253 this.add_delete_button(item);
254 } else if (model.type == 'notebook') {
254 } else if (model.type == 'notebook') {
255 if(this.sessions[path_name] === undefined){
255 if(this.sessions[path_name] === undefined){
256 this.add_delete_button(item);
256 this.add_delete_button(item);
257 this.add_duplicate_button(item);
257 } else {
258 } else {
258 this.add_shutdown_button(item, this.sessions[path_name]);
259 this.add_shutdown_button(item, this.sessions[path_name]);
259 }
260 }
260 }
261 }
261 };
262 };
262
263
263
264
264 NotebookList.prototype.add_name_input = function (name, item, icon_type) {
265 NotebookList.prototype.add_name_input = function (name, item, icon_type) {
265 item.data('name', name);
266 item.data('name', name);
266 item.find(".item_icon").addClass(NotebookList.icons[icon_type]).addClass('icon-fixed-width');
267 item.find(".item_icon").addClass(NotebookList.icons[icon_type]).addClass('icon-fixed-width');
267 item.find(".item_name").empty().append(
268 item.find(".item_name").empty().append(
268 $('<input/>')
269 $('<input/>')
269 .addClass("filename_input")
270 .addClass("filename_input")
270 .attr('value', name)
271 .attr('value', name)
271 .attr('size', '30')
272 .attr('size', '30')
272 .attr('type', 'text')
273 .attr('type', 'text')
273 .keyup(function(event){
274 .keyup(function(event){
274 if(event.keyCode == 13){item.find('.upload_button').click();}
275 if(event.keyCode == 13){item.find('.upload_button').click();}
275 else if(event.keyCode == 27){item.remove();}
276 else if(event.keyCode == 27){item.remove();}
276 })
277 })
277 );
278 );
278 };
279 };
279
280
280
281
281 NotebookList.prototype.add_file_data = function (data, item) {
282 NotebookList.prototype.add_file_data = function (data, item) {
282 item.data('filedata', data);
283 item.data('filedata', data);
283 };
284 };
284
285
285
286
286 NotebookList.prototype.add_shutdown_button = function (item, session) {
287 NotebookList.prototype.add_shutdown_button = function (item, session) {
287 var that = this;
288 var that = this;
288 var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-danger").
289 var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-danger").
289 click(function (e) {
290 click(function (e) {
290 var settings = {
291 var settings = {
291 processData : false,
292 processData : false,
292 cache : false,
293 cache : false,
293 type : "DELETE",
294 type : "DELETE",
294 dataType : "json",
295 dataType : "json",
295 success : function () {
296 success : function () {
296 that.load_sessions();
297 that.load_sessions();
297 },
298 },
298 error : utils.log_ajax_error,
299 error : utils.log_ajax_error,
299 };
300 };
300 var url = utils.url_join_encode(
301 var url = utils.url_join_encode(
301 that.base_url,
302 that.base_url,
302 'api/sessions',
303 'api/sessions',
303 session
304 session
304 );
305 );
305 $.ajax(url, settings);
306 $.ajax(url, settings);
306 return false;
307 return false;
307 });
308 });
308 // var new_buttons = item.find('a'); // shutdown_button;
309 // var new_buttons = item.find('a'); // shutdown_button;
309 item.find(".item_buttons").text("").append(shutdown_button);
310 item.find(".item_buttons").append(shutdown_button);
311 };
312
313 NotebookList.prototype.add_duplicate_button = function (item) {
314 var new_buttons = $('<span/>').addClass("btn-group pull-right");
315 var notebooklist = this;
316 var duplicate_button = $("<button/>").text("Duplicate").addClass("btn btn-defaultbtn-xs").
317 click(function (e) {
318 // $(this) is the button that was clicked.
319 var that = $(this);
320 // We use the nbname and notebook_id from the parent notebook_item element's
321 // data because the outer scopes values change as we iterate through the loop.
322 var parent_item = that.parents('div.list_item');
323 var nbname = parent_item.data('nbname');
324 var message = 'Are you sure you want to duplicate the notebook: ' + nbname + '?';
325 var copy_from = {'copy_from' : nbname}
326 IPython.dialog.modal({
327 title : "Duplicate notebook",
328 body : message,
329 buttons : {
330 Duplicate : {
331 class: "btn-primary",
332 click: function() {
333 var settings = {
334 processData : false,
335 cache : false,
336 type : "POST",
337 dataType : "json",
338 data : JSON.stringify(copy_from),
339 success : function (data, status, xhr) {
340 notebooklist.load_list();
341 }
342 };
343 var url = utils.url_join_encode(
344 notebooklist.base_url,
345 'api/notebooks',
346 notebooklist.notebook_path
347 );
348 $.ajax(url, settings);
349 }
350 },
351 Cancel : {}
352 }
353 });
354 return false;
355 });
356 item.find(".item_buttons").append(duplicate_button);
310 };
357 };
311
358
312 NotebookList.prototype.add_delete_button = function (item) {
359 NotebookList.prototype.add_delete_button = function (item) {
313 var notebooklist = this;
360 var notebooklist = this;
314 var delete_button = $("<button/>").text("Delete").addClass("btn btn-default btn-xs").
361 var delete_button = $("<button/>").text("Delete").addClass("btn btn-default btn-xs").
315 click(function (e) {
362 click(function (e) {
316 // $(this) is the button that was clicked.
363 // $(this) is the button that was clicked.
317 var that = $(this);
364 var that = $(this);
318 // We use the filename from the parent list_item element's
365 // We use the filename from the parent list_item element's
319 // data because the outer scope's values change as we iterate through the loop.
366 // data because the outer scope's values change as we iterate through the loop.
320 var parent_item = that.parents('div.list_item');
367 var parent_item = that.parents('div.list_item');
321 var name = parent_item.data('name');
368 var name = parent_item.data('name');
322 var path = parent_item.data('path');
369 var path = parent_item.data('path');
323 var message = 'Are you sure you want to permanently delete the file: ' + name + '?';
370 var message = 'Are you sure you want to permanently delete the file: ' + name + '?';
324 dialog.modal({
371 dialog.modal({
325 title : "Delete file",
372 title : "Delete file",
326 body : message,
373 body : message,
327 buttons : {
374 buttons : {
328 Delete : {
375 Delete : {
329 class: "btn-danger",
376 class: "btn-danger",
330 click: function() {
377 click: function() {
331 notebooklist.contents.delete(path).then(
378 notebooklist.contents.delete(path).then(
332 function() {
379 function() {
333 notebooklist.notebook_deleted(path);
380 notebooklist.notebook_deleted(path);
334 }
381 }
335 );
382 );
336 }
383 }
337 },
384 },
338 Cancel : {}
385 Cancel : {}
339 }
386 }
340 });
387 });
341 return false;
388 return false;
342 });
389 });
343 item.find(".item_buttons").text("").append(delete_button);
390 item.find(".item_buttons").append(delete_button);
344 };
391 };
345
392
346 NotebookList.prototype.notebook_deleted = function(path) {
393 NotebookList.prototype.notebook_deleted = function(path) {
347 // Remove the deleted notebook.
394 // Remove the deleted notebook.
348 $( ":data(path)" ).each(function() {
395 $( ":data(path)" ).each(function() {
349 var element = $(this);
396 var element = $(this);
350 if (element.data("path") == path) {
397 if (element.data("path") == path) {
351 element.remove();
398 element.remove();
352 }
399 }
353 });
400 });
354 };
401 };
355
402
356
403
357 NotebookList.prototype.add_upload_button = function (item) {
404 NotebookList.prototype.add_upload_button = function (item) {
358 var that = this;
405 var that = this;
359 var upload_button = $('<button/>').text("Upload")
406 var upload_button = $('<button/>').text("Upload")
360 .addClass('btn btn-primary btn-xs upload_button')
407 .addClass('btn btn-primary btn-xs upload_button')
361 .click(function (e) {
408 .click(function (e) {
362 var filename = item.find('.item_name > input').val();
409 var filename = item.find('.item_name > input').val();
363 var path = utils.url_path_join(that.notebook_path, filename);
410 var path = utils.url_path_join(that.notebook_path, filename);
364 var filedata = item.data('filedata');
411 var filedata = item.data('filedata');
365 var format = 'text';
412 var format = 'text';
366 if (filename.length === 0 || filename[0] === '.') {
413 if (filename.length === 0 || filename[0] === '.') {
367 dialog.modal({
414 dialog.modal({
368 title : 'Invalid file name',
415 title : 'Invalid file name',
369 body : "File names must be at least one character and not start with a dot",
416 body : "File names must be at least one character and not start with a dot",
370 buttons : {'OK' : { 'class' : 'btn-primary' }}
417 buttons : {'OK' : { 'class' : 'btn-primary' }}
371 });
418 });
372 return false;
419 return false;
373 }
420 }
374 if (filedata instanceof ArrayBuffer) {
421 if (filedata instanceof ArrayBuffer) {
375 // base64-encode binary file data
422 // base64-encode binary file data
376 var bytes = '';
423 var bytes = '';
377 var buf = new Uint8Array(filedata);
424 var buf = new Uint8Array(filedata);
378 var nbytes = buf.byteLength;
425 var nbytes = buf.byteLength;
379 for (var i=0; i<nbytes; i++) {
426 for (var i=0; i<nbytes; i++) {
380 bytes += String.fromCharCode(buf[i]);
427 bytes += String.fromCharCode(buf[i]);
381 }
428 }
382 filedata = btoa(bytes);
429 filedata = btoa(bytes);
383 format = 'base64';
430 format = 'base64';
384 }
431 }
385 var model = {};
432 var model = {};
386
433
387 var name_and_ext = utils.splitext(filename);
434 var name_and_ext = utils.splitext(filename);
388 var file_ext = name_and_ext[1];
435 var file_ext = name_and_ext[1];
389 var content_type;
436 var content_type;
390 if (file_ext === '.ipynb') {
437 if (file_ext === '.ipynb') {
391 model.type = 'notebook';
438 model.type = 'notebook';
392 model.format = 'json';
439 model.format = 'json';
393 try {
440 try {
394 model.content = JSON.parse(filedata);
441 model.content = JSON.parse(filedata);
395 } catch (e) {
442 } catch (e) {
396 dialog.modal({
443 dialog.modal({
397 title : 'Cannot upload invalid Notebook',
444 title : 'Cannot upload invalid Notebook',
398 body : "The error was: " + e,
445 body : "The error was: " + e,
399 buttons : {'OK' : {
446 buttons : {'OK' : {
400 'class' : 'btn-primary',
447 'class' : 'btn-primary',
401 click: function () {
448 click: function () {
402 item.remove();
449 item.remove();
403 }
450 }
404 }}
451 }}
405 });
452 });
406 return false;
453 return false;
407 }
454 }
408 content_type = 'application/json';
455 content_type = 'application/json';
409 } else {
456 } else {
410 model.type = 'file';
457 model.type = 'file';
411 model.format = format;
458 model.format = format;
412 model.content = filedata;
459 model.content = filedata;
413 content_type = 'application/octet-stream';
460 content_type = 'application/octet-stream';
414 }
461 }
415 filedata = item.data('filedata');
462 filedata = item.data('filedata');
416
463
417 var on_success = function () {
464 var on_success = function () {
418 item.removeClass('new-file');
465 item.removeClass('new-file');
419 that.add_link(model, item);
466 that.add_link(model, item);
420 that.add_delete_button(item);
467 that.add_delete_button(item);
421 that.session_list.load_sessions();
468 that.session_list.load_sessions();
422 };
469 };
423
470
424 var exists = false;
471 var exists = false;
425 $.each(that.element.find('.list_item:not(.new-file)'), function(k,v){
472 $.each(that.element.find('.list_item:not(.new-file)'), function(k,v){
426 if ($(v).data('name') === filename) { exists = true; return false; }
473 if ($(v).data('name') === filename) { exists = true; return false; }
427 });
474 });
428
475
429 if (exists) {
476 if (exists) {
430 dialog.modal({
477 dialog.modal({
431 title : "Replace file",
478 title : "Replace file",
432 body : 'There is already a file named ' + filename + ', do you want to replace it?',
479 body : 'There is already a file named ' + filename + ', do you want to replace it?',
433 buttons : {
480 buttons : {
434 Overwrite : {
481 Overwrite : {
435 class: "btn-danger",
482 class: "btn-danger",
436 click: function () {
483 click: function () {
437 that.contents.save(path, model).then(on_success);
484 that.contents.save(path, model).then(on_success);
438 }
485 }
439 },
486 },
440 Cancel : {
487 Cancel : {
441 click: function() { item.remove(); }
488 click: function() { item.remove(); }
442 }
489 }
443 }
490 }
444 });
491 });
445 } else {
492 } else {
446 that.contents.save(path, model).then(on_success);
493 that.contents.save(path, model).then(on_success);
447 }
494 }
448
495
449 return false;
496 return false;
450 });
497 });
451 var cancel_button = $('<button/>').text("Cancel")
498 var cancel_button = $('<button/>').text("Cancel")
452 .addClass("btn btn-default btn-xs")
499 .addClass("btn btn-default btn-xs")
453 .click(function (e) {
500 .click(function (e) {
454 item.remove();
501 item.remove();
455 return false;
502 return false;
456 });
503 });
457 item.find(".item_buttons").empty()
504 item.find(".item_buttons").empty()
458 .append(upload_button)
505 .append(upload_button)
459 .append(cancel_button);
506 .append(cancel_button);
460 };
507 };
461
508
462
509
463 // Backwards compatability.
510 // Backwards compatability.
464 IPython.NotebookList = NotebookList;
511 IPython.NotebookList = NotebookList;
465
512
466 return {'NotebookList': NotebookList};
513 return {'NotebookList': NotebookList};
467 });
514 });
General Comments 0
You need to be logged in to leave comments. Login now