main.js
115 lines
| 3.2 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r17189 | // Copyright (c) IPython Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||||
Jonathan Frederic
|
r17193 | require([ | ||
Jonathan Frederic
|
r17189 | 'base/js/namespace', | ||
Jonathan Frederic
|
r17200 | 'jquery', | ||
Jonathan Frederic
|
r17195 | 'base/js/events', | ||
Jonathan Frederic
|
r17189 | 'base/js/page', | ||
'base/js/utils', | ||||
'tree/js/notebooklist', | ||||
'tree/js/clusterlist', | ||||
'tree/js/sessionlist', | ||||
'tree/js/kernellist', | ||||
'auth/js/loginwidget', | ||||
MinRK
|
r17323 | // only loaded, not used: | ||
MinRK
|
r17312 | 'jqueryui', | ||
'bootstrap', | ||||
Jason Grout
|
r17319 | 'custom/custom', | ||
Jonathan Frederic
|
r17189 | ], function( | ||
IPython, | ||||
$, | ||||
Jonathan Frederic
|
r17202 | events, | ||
page, | ||||
Jonathan Frederic
|
r17198 | utils, | ||
Jonathan Frederic
|
r17202 | notebooklist, | ||
clusterlist, | ||||
sesssionlist, | ||||
kernellist, | ||||
loginwidget){ | ||||
Brian E. Granger
|
r4488 | |||
Jonathan Frederic
|
r17202 | page = new page.Page(); | ||
jon
|
r17210 | var common_options = { | ||
Jonathan Frederic
|
r17198 | base_url: utils.get_body_data("baseUrl"), | ||
notebook_path: utils.get_body_data("notebookPath"), | ||||
Jonathan Frederic
|
r17189 | }; | ||
jon
|
r17210 | session_list = new sesssionlist.SesssionList($.extend({ | ||
events: events}, | ||||
common_options)); | ||||
notebook_list = new notebooklist.NotebookList('#notebook_list', $.extend({ | ||||
session_list: session_list}, | ||||
common_options)); | ||||
cluster_list = new clusterlist.ClusterList('#cluster_list', common_options); | ||||
kernel_list = new kernellist.KernelList('#running_list', $.extend({ | ||||
session_list: session_list}, | ||||
common_options)); | ||||
login_widget = new loginwidget.LoginWidget('#login_widget', common_options); | ||||
Zachary Sailer
|
r13016 | |||
Matthias BUSSONNIER
|
r17445 | $('#new_notebook').click(function (e) { | ||
Jonathan Frederic
|
r17189 | notebook_list.new_notebook(); | ||
Zachary Sailer
|
r13016 | }); | ||
Jonathan Frederic
|
r17202 | |||
Matthias BUSSONNIER
|
r6844 | var interval_id=0; | ||
// auto refresh every xx secondes, no need to be fast, | ||||
// update is done at least when page get focus | ||||
var time_refresh = 60; // in sec | ||||
var enable_autorefresh = function(){ | ||||
//refresh immediately , then start interval | ||||
Jeffrey Bush
|
r17651 | session_list.load_sessions(); | ||
cluster_list.load_list(); | ||||
Matthias BUSSONNIER
|
r6844 | if (!interval_id){ | ||
interval_id = setInterval(function(){ | ||||
Jeffrey Bush
|
r17651 | session_list.load_sessions(); | ||
cluster_list.load_list(); | ||||
Matthias BUSSONNIER
|
r6844 | }, time_refresh*1000); | ||
} | ||||
Jonathan Frederic
|
r17189 | }; | ||
Matthias BUSSONNIER
|
r6844 | |||
var disable_autorefresh = function(){ | ||||
clearInterval(interval_id); | ||||
interval_id = 0; | ||||
Jonathan Frederic
|
r17189 | }; | ||
Matthias BUSSONNIER
|
r6844 | |||
// stop autorefresh when page lose focus | ||||
$(window).blur(function() { | ||||
disable_autorefresh(); | ||||
Jonathan Frederic
|
r17189 | }); | ||
Matthias BUSSONNIER
|
r6844 | |||
//re-enable when page get focus back | ||||
$(window).focus(function() { | ||||
enable_autorefresh(); | ||||
}); | ||||
// finally start it, it will refresh immediately | ||||
enable_autorefresh(); | ||||
Jonathan Frederic
|
r17189 | page.show(); | ||
Jason Grout
|
r17319 | |||
// For backwards compatability. | ||||
IPython.page = page; | ||||
IPython.notebook_list = notebook_list; | ||||
IPython.cluster_list = cluster_list; | ||||
IPython.session_list = session_list; | ||||
IPython.kernel_list = kernel_list; | ||||
IPython.login_widget = login_widget; | ||||
Jonathan Frederic
|
r17189 | events.trigger('app_initialized.DashboardApp'); | ||
Matthias BUSSONNIER
|
r6838 | // bound the upload method to the on change of the file select list | ||
$("#alternate_upload").change(function (event){ | ||||
Jonathan Frederic
|
r17189 | notebook_list.handleFilesUpload(event,'form'); | ||
Matthias BUSSONNIER
|
r6838 | }); | ||
MinRK
|
r10927 | |||
// set hash on tab click | ||||
$("#tabs").find("a").click(function() { | ||||
window.location.hash = $(this).attr("href"); | ||||
Jonathan Frederic
|
r17189 | }); | ||
MinRK
|
r10927 | |||
// load tab if url hash | ||||
if (window.location.hash) { | ||||
$("#tabs").find("a[href=" + window.location.hash + "]").click(); | ||||
} | ||||
Brian E. Granger
|
r4488 | }); | ||