widgetmanager.js
189 lines
| 7.9 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r14224 | //---------------------------------------------------------------------------- | ||
// Copyright (C) 2013 The IPython Development Team | ||||
// | ||||
// Distributed under the terms of the BSD License. The full license is in | ||||
// the file COPYING, distributed as part of this software. | ||||
//---------------------------------------------------------------------------- | ||||
//============================================================================ | ||||
// WidgetModel, WidgetView, and WidgetManager | ||||
//============================================================================ | ||||
/** | ||||
* Base Widget classes | ||||
* @module IPython | ||||
* @namespace IPython | ||||
* @submodule widget | ||||
*/ | ||||
Jonathan Frederic
|
r14457 | (function () { | ||
"use strict"; | ||||
// Use require.js 'define' method so that require.js is intelligent enough to | ||||
// syncronously load everything within this file when it is being 'required' | ||||
// elsewhere. | ||||
Jonathan Frederic
|
r14483 | define(["underscore", | ||
"backbone", | ||||
Jonathan Frederic
|
r14641 | ], function (Underscore, Backbone) { | ||
Jonathan Frederic
|
r14624 | |||
Jonathan Frederic
|
r14457 | //-------------------------------------------------------------------- | ||
// WidgetManager class | ||||
//-------------------------------------------------------------------- | ||||
Jonathan Frederic
|
r14624 | var WidgetManager = function (comm_manager) { | ||
// Public constructor | ||||
WidgetManager._managers.push(this); | ||||
Jonathan Frederic
|
r14342 | |||
Jonathan Frederic
|
r14624 | // Attach a comm manager to the | ||
Jonathan Frederic
|
r14457 | this.comm_manager = comm_manager; | ||
Jason Grout
|
r14486 | // Register already-registered widget model types with the comm manager. | ||
Jonathan Frederic
|
r14624 | for (var name in WidgetManager._model_types) { | ||
if (WidgetManager._model_types.hasOwnProperty(name)) { | ||||
this.comm_manager.register_target(name, $.proxy(this._handle_comm_open, this)); | ||||
} | ||||
Jonathan Frederic
|
r14342 | } | ||
Jonathan Frederic
|
r14457 | }; | ||
Jonathan Frederic
|
r14342 | |||
Jonathan Frederic
|
r14624 | //-------------------------------------------------------------------- | ||
// Class level | ||||
//-------------------------------------------------------------------- | ||||
WidgetManager._model_types = {}; /* Dictionary of model type names (target_name) and model types. */ | ||||
WidgetManager._view_types = {}; /* Dictionary of view names and view types. */ | ||||
WidgetManager._models = {}; /* Dictionary of model ids and model instances */ | ||||
WidgetManager._managers = []; /* List of widget managers */ | ||||
WidgetManager.register_widget_model = function (model_name, model_type) { | ||||
// Registers a widget model by name. | ||||
WidgetManager._model_types[model_name] = model_type; | ||||
Jonathan Frederic
|
r14342 | |||
Jonathan Frederic
|
r14457 | // Register the widget with the comm manager. Make sure to pass this object's context | ||
// in so `this` works in the call back. | ||||
Jonathan Frederic
|
r14624 | for (var i = 0; i < WidgetManager._managers.length; i++) { | ||
var instance = WidgetManager._managers[i]; | ||||
if (instance.comm_manager !== null) { | ||||
instance.comm_manager.register_target(model_name, $.proxy(instance._handle_comm_open, instance)); | ||||
} | ||||
Jonathan Frederic
|
r14457 | } | ||
}; | ||||
Jonathan Frederic
|
r14342 | |||
Jonathan Frederic
|
r14624 | WidgetManager.register_widget_view = function (view_name, view_type) { | ||
// Registers a widget view by name. | ||||
WidgetManager._view_types[view_name] = view_type; | ||||
Jonathan Frederic
|
r14457 | }; | ||
Jonathan Frederic
|
r14512 | |||
Jonathan Frederic
|
r14624 | //-------------------------------------------------------------------- | ||
// Instance level | ||||
//-------------------------------------------------------------------- | ||||
Jason Grout
|
r14620 | WidgetManager.prototype.display_view = function(msg, model) { | ||
var cell = this.get_msg_cell(msg.parent_header.msg_id); | ||||
Jonathan Frederic
|
r14559 | if (cell === null) { | ||
console.log("Could not determine where the display" + | ||||
" message was from. Widget will not be displayed"); | ||||
} else { | ||||
Jason Grout
|
r14617 | var view = this.create_view(model, {cell: cell}); | ||
Jason Grout
|
r14620 | if (view === undefined) { | ||
console.error("View creation failed", model); | ||||
} | ||||
if (cell.widget_subarea !== undefined | ||||
Jonathan Frederic
|
r14559 | && cell.widget_subarea !== null) { | ||
cell.widget_area.show(); | ||||
cell.widget_subarea.append(view.$el); | ||||
} | ||||
Jonathan Frederic
|
r14506 | } | ||
Jonathan Frederic
|
r14559 | }, | ||
Jonathan Frederic
|
r14555 | WidgetManager.prototype.create_view = function(model, options) { | ||
var view_name = model.get('view_name'); | ||||
Jonathan Frederic
|
r14624 | var ViewType = WidgetManager._view_types[view_name]; | ||
Jason Grout
|
r14486 | if (ViewType !== undefined && ViewType !== null) { | ||
Jonathan Frederic
|
r14565 | var parameters = {model: model, options: options}; | ||
var view = new ViewType(parameters); | ||||
Jason Grout
|
r14486 | view.render(); | ||
Jonathan Frederic
|
r14601 | IPython.keyboard_manager.register_events(view.$el); | ||
Jonathan Frederic
|
r14512 | model.views.push(view); | ||
model.on('destroy', view.remove, view); | ||||
Jason Grout
|
r14486 | return view; | ||
} | ||||
}, | ||||
Jonathan Frederic
|
r14263 | |||
Jonathan Frederic
|
r14457 | WidgetManager.prototype.get_msg_cell = function (msg_id) { | ||
Jonathan Frederic
|
r14534 | var cell = null; | ||
Jason Grout
|
r14486 | // First, check to see if the msg was triggered by cell execution. | ||
Jonathan Frederic
|
r14457 | if (IPython.notebook !== undefined && IPython.notebook !== null) { | ||
Jason Grout
|
r14486 | cell = IPython.notebook.get_msg_cell(msg_id); | ||
} | ||||
Jonathan Frederic
|
r14534 | if (cell !== null) { | ||
return cell | ||||
} | ||||
Jason Grout
|
r14486 | // Second, check to see if a get_cell callback was defined | ||
// for the message. get_cell callbacks are registered for | ||||
// widget messages, so this block is actually checking to see if the | ||||
// message was triggered by a widget. | ||||
Jonathan Frederic
|
r14624 | var kernel = this.comm_manager.kernel; | ||
Jason Grout
|
r14486 | if (kernel !== undefined && kernel !== null) { | ||
var callbacks = kernel.get_callbacks_for_msg(msg_id); | ||||
if (callbacks !== undefined && | ||||
callbacks.iopub !== undefined && | ||||
callbacks.iopub.get_cell !== undefined) { | ||||
return callbacks.iopub.get_cell(); | ||||
} | ||||
Jonathan Frederic
|
r14457 | } | ||
Jason Grout
|
r14486 | |||
// Not triggered by a cell or widget (no get_cell callback | ||||
// exists). | ||||
return null; | ||||
Jonathan Frederic
|
r14457 | }; | ||
Jonathan Frederic
|
r14469 | |||
Jonathan Frederic
|
r14534 | WidgetManager.prototype.callbacks = function (view) { | ||
// callback handlers specific a view | ||||
var callbacks = {}; | ||||
Jason Grout
|
r14617 | var cell = view.options.cell; | ||
Jonathan Frederic
|
r14534 | if (cell !== null) { | ||
// Try to get output handlers | ||||
var handle_output = null; | ||||
var handle_clear_output = null; | ||||
if (cell.output_area !== undefined && cell.output_area !== null) { | ||||
handle_output = $.proxy(cell.output_area.handle_output, cell.output_area); | ||||
handle_clear_output = $.proxy(cell.output_area.handle_clear_output, cell.output_area); | ||||
} | ||||
// Create callback dict using what is known | ||||
var that = this; | ||||
callbacks = { | ||||
iopub : { | ||||
output : handle_output, | ||||
clear_output : handle_clear_output, | ||||
// Special function only registered by widget messages. | ||||
// Allows us to get the cell for a message so we know | ||||
// where to add widgets if the code requires it. | ||||
get_cell : function () { | ||||
return cell; | ||||
}, | ||||
}, | ||||
}; | ||||
} | ||||
return callbacks; | ||||
}; | ||||
Jonathan Frederic
|
r14512 | WidgetManager.prototype.get_model = function (model_id) { | ||
Jonathan Frederic
|
r14624 | var model = WidgetManager._models[model_id]; | ||
Jonathan Frederic
|
r14512 | if (model !== undefined && model.id == model_id) { | ||
Jonathan Frederic
|
r14469 | return model; | ||
} | ||||
return null; | ||||
}; | ||||
Jason Grout
|
r14486 | WidgetManager.prototype._handle_comm_open = function (comm, msg) { | ||
Jonathan Frederic
|
r14624 | var model_id = comm.comm_id; | ||
Jonathan Frederic
|
r14457 | var widget_type_name = msg.content.target_name; | ||
Jonathan Frederic
|
r14624 | var widget_model = new WidgetManager._model_types[widget_type_name](this, model_id, comm); | ||
WidgetManager._models[model_id] = widget_model; | ||||
Jonathan Frederic
|
r14457 | }; | ||
IPython.WidgetManager = WidgetManager; | ||||
Jonathan Frederic
|
r14624 | return IPython.WidgetManager; | ||
Jonathan Frederic
|
r14457 | }); | ||
Jason Grout
|
r14486 | }()); | ||