##// END OF EJS Templates
Merge pull request #7791 from parente/empty-running-table-fix-7789...
Merge pull request #7791 from parente/empty-running-table-fix-7789 Fix empty running table background

File last commit:

r20447:7c862c76
r20484:02da130c merge
Show More
kernellist.js
76 lines | 2.2 KiB | application/javascript | JavascriptLexer
// Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
define([
'base/js/namespace',
'jquery',
'tree/js/notebooklist',
], function(IPython, $, notebooklist) {
"use strict";
var KernelList = function (selector, options) {
/**
* Constructor
*
* Parameters:
* selector: string
* options: dictionary
* Dictionary of keyword arguments.
* session_list: SessionList instance
* base_url: string
* notebook_path: string
*/
notebooklist.NotebookList.call(this, selector, $.extend({
element_name: 'running'},
options));
};
KernelList.prototype = Object.create(notebooklist.NotebookList.prototype);
KernelList.prototype.add_duplicate_button = function () {
/**
* do nothing
*/
};
KernelList.prototype.sessions_loaded = function (d) {
this.sessions = d;
this.clear_list();
var item, path;
for (path in d) {
if (!d.hasOwnProperty(path)) {
// nothing is safe in javascript
continue;
}
item = this.new_item(-1);
this.add_link({
name: path,
path: path,
type: 'notebook',
}, item);
}
$('#running_list_placeholder').toggle($.isEmptyObject(d));
};
KernelList.prototype.add_link = function (model, item) {
notebooklist.NotebookList.prototype.add_link.apply(this, [model, item])
var running_indicator = item.find(".item_buttons")
.text('');
var that = this;
var shutdown_button = $('<button/>')
.addClass('btn btn-warning btn-xs')
.text('Shutdown')
.click(function() {
var path = $(this).parent().parent().parent().data('path');
that.shutdown_notebook(path);
})
.appendTo(running_indicator);
};
// Backwards compatability.
IPython.KernelList = KernelList;
return {'KernelList': KernelList};
});