widget_selection.js
376 lines
| 14.7 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r14366 | //---------------------------------------------------------------------------- | ||
// 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. | ||||
//---------------------------------------------------------------------------- | ||||
//============================================================================ | ||||
// SelectionWidget | ||||
//============================================================================ | ||||
/** | ||||
* @module IPython | ||||
* @namespace IPython | ||||
**/ | ||||
Jonathan Frederic
|
r14627 | define(["notebook/js/widgets/widget"], function(WidgetManager){ | ||
Jonathan Frederic
|
r14609 | |||
Jonathan Frederic
|
r14564 | var DropdownView = IPython.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14263 | render : function(){ | ||
MinRK
|
r14792 | // Called when view is rendered. | ||
Jonathan Frederic
|
r14263 | this.$el | ||
Jonathan Frederic
|
r14663 | .addClass('widget-hbox-single'); | ||
Jonathan Frederic
|
r14292 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
Jonathan Frederic
|
r14297 | .addClass('widget-hlabel') | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14263 | this.$buttongroup = $('<div />') | ||
Jonathan Frederic
|
r14365 | .addClass('widget_item') | ||
.addClass('btn-group') | ||||
.appendTo(this.$el); | ||||
Jonathan Frederic
|
r14314 | this.$el_to_style = this.$buttongroup; // Set default element to style | ||
Jonathan Frederic
|
r14263 | this.$droplabel = $('<button />') | ||
Jonathan Frederic
|
r14365 | .addClass('btn') | ||
.addClass('widget-combo-btn') | ||||
Jonathan Frederic
|
r14663 | .text(' ') | ||
Jonathan Frederic
|
r14365 | .appendTo(this.$buttongroup); | ||
Jonathan Frederic
|
r14263 | this.$dropbutton = $('<button />') | ||
Jonathan Frederic
|
r14365 | .addClass('btn') | ||
.addClass('dropdown-toggle') | ||||
.addClass('widget-combo-carrot-btn') | ||||
.attr('data-toggle', 'dropdown') | ||||
Jonathan Frederic
|
r14663 | .append($('<span />').addClass("caret")) | ||
Jonathan Frederic
|
r14365 | .appendTo(this.$buttongroup); | ||
Jonathan Frederic
|
r14263 | this.$droplist = $('<ul />') | ||
Jonathan Frederic
|
r14365 | .addClass('dropdown-menu') | ||
.appendTo(this.$buttongroup); | ||||
Jonathan Frederic
|
r14263 | |||
// Set defaults. | ||||
this.update(); | ||||
}, | ||||
Jonathan Frederic
|
r14257 | |||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r14568 | // Update the contents of this view | ||
// | ||||
// Called when the model is changed. The model may have been | ||||
// changed by another view or by a state update from the back-end. | ||||
Jonathan Frederic
|
r14359 | |||
Jonathan Frederic
|
r14570 | if (options === undefined || options.updated_view != this) { | ||
Jonathan Frederic
|
r14698 | var selected_item_text = this.model.get('_value'); | ||
Jonathan Frederic
|
r14570 | if (selected_item_text.length === 0) { | ||
Jonathan Frederic
|
r14663 | this.$droplabel.text(' '); | ||
Jonathan Frederic
|
r14570 | } else { | ||
Jonathan Frederic
|
r14663 | this.$droplabel.text(selected_item_text); | ||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14709 | var items = this.model.get('labels'); | ||
Jonathan Frederic
|
r14616 | var $replace_droplist = $('<ul />') | ||
.addClass('dropdown-menu'); | ||||
Jonathan Frederic
|
r14686 | var that = this; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, i) { | ||
Jonathan Frederic
|
r14570 | var item_button = $('<a href="#"/>') | ||
Jonathan Frederic
|
r14664 | .text(item) | ||
Jonathan Frederic
|
r14686 | .on('click', $.proxy(that.handle_click, that)); | ||
Jonathan Frederic
|
r14616 | $replace_droplist.append($('<li />').append(item_button)); | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14616 | this.$droplist.replaceWith($replace_droplist); | ||
this.$droplist.remove(); | ||||
this.$droplist = $replace_droplist; | ||||
Jonathan Frederic
|
r14570 | |||
if (this.model.get('disabled')) { | ||||
this.$buttongroup.attr('disabled','disabled'); | ||||
this.$droplabel.attr('disabled','disabled'); | ||||
this.$dropbutton.attr('disabled','disabled'); | ||||
this.$droplist.attr('disabled','disabled'); | ||||
} else { | ||||
this.$buttongroup.removeAttr('disabled'); | ||||
this.$droplabel.removeAttr('disabled'); | ||||
this.$dropbutton.removeAttr('disabled'); | ||||
this.$droplist.removeAttr('disabled'); | ||||
} | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14570 | var description = this.model.get('description'); | ||
if (description.length === 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
Jonathan Frederic
|
r14663 | this.$label.text(description); | ||
Jonathan Frederic
|
r14570 | this.$label.show(); | ||
} | ||||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14583 | return DropdownView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
Jonathan Frederic
|
r14466 | |||
handle_click: function (e) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a value is clicked. | ||
Jonathan Frederic
|
r14569 | |||
// Calling model.set will trigger all of the other views of the | ||||
// model to update. | ||||
Jonathan Frederic
|
r14698 | this.model.set('_value', $(e.target).text(), {updated_view: this}); | ||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14466 | }, | ||
Jonathan Frederic
|
r14263 | |||
}); | ||||
Jonathan Frederic
|
r14627 | WidgetManager.register_widget_view('DropdownView', DropdownView); | ||
Jonathan Frederic
|
r14263 | |||
Jonathan Frederic
|
r14609 | |||
var RadioButtonsView = IPython.DOMWidgetView.extend({ | ||||
Jonathan Frederic
|
r14263 | render : function(){ | ||
Jonathan Frederic
|
r14609 | // Called when view is rendered. | ||
Jonathan Frederic
|
r14263 | this.$el | ||
Jonathan Frederic
|
r14576 | .addClass('widget-hbox'); | ||
Jonathan Frederic
|
r14292 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
Jonathan Frederic
|
r14297 | .addClass('widget-hlabel') | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14295 | this.$container = $('<div />') | ||
.appendTo(this.$el) | ||||
.addClass('widget-container') | ||||
.addClass('vbox'); | ||||
Jonathan Frederic
|
r14314 | this.$el_to_style = this.$container; // Set default element to style | ||
Jonathan Frederic
|
r14263 | this.update(); | ||
}, | ||||
Jonathan Frederic
|
r14252 | |||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r14568 | // Update the contents of this view | ||
// | ||||
// Called when the model is changed. The model may have been | ||||
// changed by another view or by a state update from the back-end. | ||||
Jonathan Frederic
|
r14570 | if (options === undefined || options.updated_view != this) { | ||
// Add missing items to the DOM. | ||||
Jonathan Frederic
|
r14709 | var items = this.model.get('labels'); | ||
Jonathan Frederic
|
r14570 | var disabled = this.model.get('disabled'); | ||
Jonathan Frederic
|
r14686 | var that = this; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
var item_query = ' :input[value="' + item + '"]'; | ||||
Jonathan Frederic
|
r14686 | if (that.$el.find(item_query).length === 0) { | ||
Jonathan Frederic
|
r14570 | var $label = $('<label />') | ||
.addClass('radio') | ||||
Jonathan Frederic
|
r14664 | .text(item) | ||
Jonathan Frederic
|
r14686 | .appendTo(that.$container); | ||
Jonathan Frederic
|
r14570 | |||
$('<input />') | ||||
.attr('type', 'radio') | ||||
Jonathan Frederic
|
r14686 | .addClass(that.model) | ||
Jonathan Frederic
|
r14664 | .val(item) | ||
Jonathan Frederic
|
r14570 | .prependTo($label) | ||
Jonathan Frederic
|
r14686 | .on('click', $.proxy(that.handle_click, that)); | ||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14687 | var $item_element = that.$container.find(item_query); | ||
Jonathan Frederic
|
r14698 | if (that.model.get('_value') == item) { | ||
Jonathan Frederic
|
r14570 | $item_element.prop('checked', true); | ||
} else { | ||||
$item_element.prop('checked', false); | ||||
Jonathan Frederic
|
r14263 | } | ||
Jonathan Frederic
|
r14570 | $item_element.prop('disabled', disabled); | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14263 | |||
Jonathan Frederic
|
r14570 | // Remove items that no longer exist. | ||
this.$container.find('input').each(function(i, obj) { | ||||
var value = $(obj).val(); | ||||
var found = false; | ||||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
if (item == value) { | ||||
Jonathan Frederic
|
r14570 | found = true; | ||
Jonathan Frederic
|
r14678 | return false; | ||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14570 | |||
if (!found) { | ||||
$(obj).parent().remove(); | ||||
} | ||||
}); | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14570 | var description = this.model.get('description'); | ||
if (description.length === 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
Jonathan Frederic
|
r14663 | this.$label.text(description); | ||
Jonathan Frederic
|
r14570 | this.$label.show(); | ||
} | ||||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14583 | return RadioButtonsView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
Jonathan Frederic
|
r14466 | |||
handle_click: function (e) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a value is clicked. | ||
Jonathan Frederic
|
r14569 | |||
// Calling model.set will trigger all of the other views of the | ||||
// model to update. | ||||
Jonathan Frederic
|
r14698 | this.model.set('_value', $(e.target).val(), {updated_view: this}); | ||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14466 | }, | ||
Jonathan Frederic
|
r14263 | }); | ||
Jonathan Frederic
|
r14627 | WidgetManager.register_widget_view('RadioButtonsView', RadioButtonsView); | ||
Jonathan Frederic
|
r14258 | |||
Jonathan Frederic
|
r14609 | var ToggleButtonsView = IPython.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14263 | render : function(){ | ||
Jonathan Frederic
|
r14609 | // Called when view is rendered. | ||
Jonathan Frederic
|
r14263 | this.$el | ||
Jonathan Frederic
|
r14576 | .addClass('widget-hbox-single'); | ||
Jonathan Frederic
|
r14292 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
Jonathan Frederic
|
r14297 | .addClass('widget-hlabel') | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14263 | this.$buttongroup = $('<div />') | ||
.addClass('btn-group') | ||||
.attr('data-toggle', 'buttons-radio') | ||||
.appendTo(this.$el); | ||||
Jonathan Frederic
|
r14314 | this.$el_to_style = this.$buttongroup; // Set default element to style | ||
Jonathan Frederic
|
r14263 | this.update(); | ||
}, | ||||
Jonathan Frederic
|
r14258 | |||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r14568 | // Update the contents of this view | ||
// | ||||
// Called when the model is changed. The model may have been | ||||
// changed by another view or by a state update from the back-end. | ||||
Jonathan Frederic
|
r14570 | if (options === undefined || options.updated_view != this) { | ||
// Add missing items to the DOM. | ||||
Jonathan Frederic
|
r14709 | var items = this.model.get('labels'); | ||
Jonathan Frederic
|
r14570 | var disabled = this.model.get('disabled'); | ||
Jonathan Frederic
|
r14686 | var that = this; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
var item_query = ' :contains("' + item + '")'; | ||||
Jonathan Frederic
|
r14686 | if (that.$buttongroup.find(item_query).length === 0) { | ||
Jonathan Frederic
|
r14570 | $('<button />') | ||
.attr('type', 'button') | ||||
.addClass('btn') | ||||
Jonathan Frederic
|
r14664 | .text(item) | ||
Jonathan Frederic
|
r14686 | .appendTo(that.$buttongroup) | ||
.on('click', $.proxy(that.handle_click, that)); | ||||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14687 | var $item_element = that.$buttongroup.find(item_query); | ||
Jonathan Frederic
|
r14698 | if (that.model.get('_value') == item) { | ||
Jonathan Frederic
|
r14570 | $item_element.addClass('active'); | ||
} else { | ||||
$item_element.removeClass('active'); | ||||
Jonathan Frederic
|
r14263 | } | ||
Jonathan Frederic
|
r14664 | $item_element.prop('disabled', disabled); | ||
}); | ||||
Jonathan Frederic
|
r14263 | |||
Jonathan Frederic
|
r14570 | // Remove items that no longer exist. | ||
this.$buttongroup.find('button').each(function(i, obj) { | ||||
Jonathan Frederic
|
r14663 | var value = $(obj).text(); | ||
Jonathan Frederic
|
r14570 | var found = false; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
if (item == value) { | ||||
Jonathan Frederic
|
r14570 | found = true; | ||
Jonathan Frederic
|
r14678 | return false; | ||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14570 | if (!found) { | ||
$(obj).remove(); | ||||
} | ||||
}); | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14570 | var description = this.model.get('description'); | ||
if (description.length === 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
Jonathan Frederic
|
r14663 | this.$label.text(description); | ||
Jonathan Frederic
|
r14570 | this.$label.show(); | ||
} | ||||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14583 | return ToggleButtonsView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
Jonathan Frederic
|
r14466 | |||
handle_click: function (e) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a value is clicked. | ||
Jonathan Frederic
|
r14569 | |||
// Calling model.set will trigger all of the other views of the | ||||
// model to update. | ||||
Jonathan Frederic
|
r14698 | this.model.set('_value', $(e.target).text(), {updated_view: this}); | ||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14609 | }, | ||
Jonathan Frederic
|
r14263 | }); | ||
Jonathan Frederic
|
r14627 | WidgetManager.register_widget_view('ToggleButtonsView', ToggleButtonsView); | ||
Jonathan Frederic
|
r14375 | |||
Jonathan Frederic
|
r14609 | |||
Jonathan Frederic
|
r14834 | var SelectView = IPython.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14375 | render : function(){ | ||
Jonathan Frederic
|
r14609 | // Called when view is rendered. | ||
Jonathan Frederic
|
r14375 | this.$el | ||
Jonathan Frederic
|
r14576 | .addClass('widget-hbox'); | ||
Jonathan Frederic
|
r14375 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
.addClass('widget-hlabel') | ||||
.hide(); | ||||
this.$listbox = $('<select />') | ||||
.addClass('widget-listbox') | ||||
.attr('size', 6) | ||||
.appendTo(this.$el); | ||||
this.$el_to_style = this.$listbox; // Set default element to style | ||||
this.update(); | ||||
}, | ||||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r14568 | // Update the contents of this view | ||
// | ||||
// Called when the model is changed. The model may have been | ||||
// changed by another view or by a state update from the back-end. | ||||
Jonathan Frederic
|
r14570 | if (options === undefined || options.updated_view != this) { | ||
// Add missing items to the DOM. | ||||
Jonathan Frederic
|
r14709 | var items = this.model.get('labels'); | ||
Jonathan Frederic
|
r14686 | var that = this; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
var item_query = ' :contains("' + item + '")'; | ||||
Jonathan Frederic
|
r14686 | if (that.$listbox.find(item_query).length === 0) { | ||
Jonathan Frederic
|
r14570 | $('<option />') | ||
Jonathan Frederic
|
r14664 | .text(item) | ||
Jonathan Frederic
|
r14698 | .attr('_value', item) | ||
Jonathan Frederic
|
r14686 | .appendTo(that.$listbox) | ||
.on('click', $.proxy(that.handle_click, that)); | ||||
Jonathan Frederic
|
r14664 | } | ||
}); | ||||
Jonathan Frederic
|
r14570 | |||
// Select the correct element | ||||
Jonathan Frederic
|
r14698 | this.$listbox.val(this.model.get('_value')); | ||
Jonathan Frederic
|
r14375 | |||
Jonathan Frederic
|
r14570 | // Disable listbox if needed | ||
var disabled = this.model.get('disabled'); | ||||
this.$listbox.prop('disabled', disabled); | ||||
// Remove items that no longer exist. | ||||
this.$listbox.find('option').each(function(i, obj) { | ||||
Jonathan Frederic
|
r14663 | var value = $(obj).text(); | ||
Jonathan Frederic
|
r14570 | var found = false; | ||
Jonathan Frederic
|
r14664 | _.each(items, function(item, index) { | ||
if (item == value) { | ||||
Jonathan Frederic
|
r14570 | found = true; | ||
Jonathan Frederic
|
r14678 | return false; | ||
Jonathan Frederic
|
r14570 | } | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14570 | |||
if (!found) { | ||||
$(obj).remove(); | ||||
} | ||||
}); | ||||
Jonathan Frederic
|
r14375 | |||
Jonathan Frederic
|
r14570 | var description = this.model.get('description'); | ||
if (description.length === 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
Jonathan Frederic
|
r14663 | this.$label.text(description); | ||
Jonathan Frederic
|
r14570 | this.$label.show(); | ||
} | ||||
Jonathan Frederic
|
r14375 | } | ||
Jonathan Frederic
|
r14834 | return SelectView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14375 | }, | ||
Jonathan Frederic
|
r14466 | |||
handle_click: function (e) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a value is clicked. | ||
Jonathan Frederic
|
r14569 | |||
// Calling model.set will trigger all of the other views of the | ||||
// model to update. | ||||
Jonathan Frederic
|
r14698 | this.model.set('_value', $(e.target).text(), {updated_view: this}); | ||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14609 | }, | ||
Jonathan Frederic
|
r14375 | }); | ||
Jonathan Frederic
|
r14834 | WidgetManager.register_widget_view('SelectView', SelectView); | ||
Jonathan Frederic
|
r14263 | }); | ||