terminallist.js
121 lines
| 4.1 KiB
| application/javascript
|
JavascriptLexer
Thomas Kluyver
|
r18555 | // Copyright (c) IPython Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||||
define([ | ||||
'base/js/namespace', | ||||
'base/js/utils', | ||||
'jquery', | ||||
'tree/js/notebooklist', | ||||
], function(IPython, utils, $, notebooklist) { | ||||
"use strict"; | ||||
var TerminalList = function (selector, options) { | ||||
Jonathan Frederic
|
r19176 | /** | ||
* Constructor | ||||
* | ||||
* Parameters: | ||||
* selector: string | ||||
* options: dictionary | ||||
* Dictionary of keyword arguments. | ||||
* base_url: string | ||||
*/ | ||||
Thomas Kluyver
|
r18555 | this.base_url = options.base_url || utils.get_body_data("baseUrl"); | ||
Jonathan Frederic
|
r19992 | this.element_name = options.element_name || 'running'; | ||
Thomas Kluyver
|
r18555 | this.selector = selector; | ||
this.terminals = []; | ||||
if (this.selector !== undefined) { | ||||
this.element = $(selector); | ||||
this.style(); | ||||
this.bind_events(); | ||||
this.load_terminals(); | ||||
} | ||||
}; | ||||
TerminalList.prototype = Object.create(notebooklist.NotebookList.prototype); | ||||
TerminalList.prototype.bind_events = function () { | ||||
var that = this; | ||||
$('#refresh_' + this.element_name + '_list').click(function () { | ||||
that.load_terminals(); | ||||
}); | ||||
Jonathan Frederic
|
r20000 | $('#new-terminal').click($.proxy(this.new_terminal, this)); | ||
Thomas Kluyver
|
r18555 | }; | ||
Min RK
|
r18616 | TerminalList.prototype.new_terminal = function () { | ||
Min RK
|
r20325 | var w = window.open(undefined, IPython._target); | ||
Thomas Kluyver
|
r18688 | var base_url = this.base_url; | ||
Min RK
|
r18616 | var settings = { | ||
type : "POST", | ||||
Thomas Kluyver
|
r18688 | dataType: "json", | ||
Min RK
|
r18616 | success : function (data, status, xhr) { | ||
var name = data.name; | ||||
Thomas Kluyver
|
r18688 | w.location = utils.url_join_encode(base_url, 'terminals', name); | ||
Min RK
|
r18616 | }, | ||
Thomas Kluyver
|
r18690 | error : function(jqXHR, status, error){ | ||
w.close(); | ||||
utils.log_ajax_error(jqXHR, status, error); | ||||
}, | ||||
Min RK
|
r18616 | }; | ||
var url = utils.url_join_encode( | ||||
this.base_url, | ||||
'api/terminals' | ||||
); | ||||
$.ajax(url, settings); | ||||
Thomas Kluyver
|
r18559 | }; | ||
Min RK
|
r18616 | |||
Thomas Kluyver
|
r18555 | TerminalList.prototype.load_terminals = function() { | ||
var url = utils.url_join_encode(this.base_url, 'api/terminals'); | ||||
$.ajax(url, { | ||||
type: "GET", | ||||
cache: false, | ||||
dataType: "json", | ||||
success: $.proxy(this.terminals_loaded, this), | ||||
error : utils.log_ajax_error | ||||
}); | ||||
}; | ||||
TerminalList.prototype.terminals_loaded = function (data) { | ||||
this.terminals = data; | ||||
this.clear_list(); | ||||
Matthias Bussonnier
|
r19739 | var item, term; | ||
Thomas Kluyver
|
r18555 | for (var i=0; i < this.terminals.length; i++) { | ||
term = this.terminals[i]; | ||||
item = this.new_item(-1); | ||||
this.add_link(term.name, item); | ||||
this.add_shutdown_button(term.name, item); | ||||
} | ||||
$('#terminal_list_header').toggle(data.length === 0); | ||||
}; | ||||
TerminalList.prototype.add_link = function(name, item) { | ||||
item.data('term-name', name); | ||||
Thomas Kluyver
|
r18559 | item.find(".item_name").text("terminals/" + name); | ||
Thomas Kluyver
|
r18555 | item.find(".item_icon").addClass("fa fa-terminal"); | ||
var link = item.find("a.item_link") | ||||
.attr('href', utils.url_join_encode(this.base_url, "terminals", name)); | ||||
Matthias Bussonnier
|
r20223 | link.attr('target', IPython._target||'_blank'); | ||
Thomas Kluyver
|
r18555 | this.add_shutdown_button(name, item); | ||
}; | ||||
TerminalList.prototype.add_shutdown_button = function(name, item) { | ||||
var that = this; | ||||
Bussonnier Matthias
|
r19643 | var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-warning"). | ||
Thomas Kluyver
|
r18555 | click(function (e) { | ||
var settings = { | ||||
processData : false, | ||||
type : "DELETE", | ||||
dataType : "json", | ||||
success : function () { | ||||
that.load_terminals(); | ||||
}, | ||||
error : utils.log_ajax_error, | ||||
}; | ||||
var url = utils.url_join_encode(that.base_url, 'api/terminals', name); | ||||
$.ajax(url, settings); | ||||
return false; | ||||
}); | ||||
item.find(".item_buttons").text("").append(shutdown_button); | ||||
}; | ||||
return {TerminalList: TerminalList}; | ||||
}); | ||||