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