selection.js
355 lines
| 12.9 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
|
r14374 | define(["notebook/js/widget"], function(widget_manager){ | ||
Jonathan Frederic
|
r14263 | var SelectionWidgetModel = IPython.WidgetModel.extend({}); | ||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_model('SelectionWidgetModel', SelectionWidgetModel); | ||
Jonathan Frederic
|
r14252 | |||
Jonathan Frederic
|
r14263 | var DropdownView = IPython.WidgetView.extend({ | ||
Jonathan Frederic
|
r14252 | |||
Jonathan Frederic
|
r14263 | // Called when view is rendered. | ||
render : function(){ | ||||
Jonathan Frederic
|
r14253 | |||
Jonathan Frederic
|
r14263 | this.$el | ||
Jonathan Frederic
|
r14295 | .addClass('widget-hbox-single') | ||
Jonathan Frederic
|
r14278 | .html(''); | ||
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') | ||||
.html(' ') | ||||
.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') | ||||
.html('<span class="caret"></span>') | ||||
.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
|
r14263 | // Handles: Backend -> Frontend Sync | ||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
Jonathan Frederic
|
r14359 | |||
var selected_item_text = this.model.get('value'); | ||||
Jonathan Frederic
|
r14369 | selected_item_text = selected_item_text.replace(/ /g, ' '); | ||
selected_item_text = selected_item_text.replace(/\n/g, '<br>\n'); | ||||
Jonathan Frederic
|
r14367 | if (selected_item_text.length == 0) { | ||
Jonathan Frederic
|
r14359 | this.$droplabel.html(' '); | ||
} else { | ||||
Jonathan Frederic
|
r14368 | this.$droplabel.html(selected_item_text); | ||
Jonathan Frederic
|
r14359 | } | ||
Jonathan Frederic
|
r14263 | |||
var items = this.model.get('values'); | ||||
this.$droplist.html(''); | ||||
for (var index in items) { | ||||
Jonathan Frederic
|
r14257 | var that = this; | ||
Jonathan Frederic
|
r14263 | var item_button = $('<a href="#"/>') | ||
.html(items[index]) | ||||
Jonathan Frederic
|
r14257 | .on('click', function(e){ | ||
Jonathan Frederic
|
r14292 | that.model.set('value', $(e.target).html(), this); | ||
Jonathan Frederic
|
r14278 | that.model.update_other_views(that); | ||
Jonathan Frederic
|
r14263 | }) | ||
this.$droplist.append($('<li />').append(item_button)) | ||||
Jonathan Frederic
|
r14252 | } | ||
Jonathan Frederic
|
r14263 | 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'); | ||||
Jonathan Frederic
|
r14252 | } else { | ||
Jonathan Frederic
|
r14263 | this.$buttongroup.removeAttr('disabled'); | ||
this.$droplabel.removeAttr('disabled'); | ||||
this.$dropbutton.removeAttr('disabled'); | ||||
this.$droplist.removeAttr('disabled'); | ||||
Jonathan Frederic
|
r14252 | } | ||
Jonathan Frederic
|
r14292 | |||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
Jonathan Frederic
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
}); | ||||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('DropdownView', DropdownView); | ||
Jonathan Frederic
|
r14263 | |||
var RadioButtonsView = IPython.WidgetView.extend({ | ||||
// Called when view is rendered. | ||||
render : function(){ | ||||
this.$el | ||||
Jonathan Frederic
|
r14295 | .addClass('widget-hbox') | ||
Jonathan Frederic
|
r14278 | .html(''); | ||
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
|
r14263 | // Handles: Backend -> Frontend Sync | ||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
// Add missing items to the DOM. | ||||
var items = this.model.get('values'); | ||||
Jonathan Frederic
|
r14305 | var disabled = this.model.get('disabled'); | ||
Jonathan Frederic
|
r14252 | for (var index in items) { | ||
Jonathan Frederic
|
r14263 | var item_query = ' :input[value="' + items[index] + '"]'; | ||
if (this.$el.find(item_query).length == 0) { | ||||
var $label = $('<label />') | ||||
.addClass('radio') | ||||
.html(items[index]) | ||||
Jonathan Frederic
|
r14295 | .appendTo(this.$container); | ||
Jonathan Frederic
|
r14263 | |||
var that = this; | ||||
$('<input />') | ||||
.attr('type', 'radio') | ||||
.addClass(this.model) | ||||
.val(items[index]) | ||||
.prependTo($label) | ||||
.on('click', function(e){ | ||||
that.model.set('value', $(e.target).val(), this); | ||||
Jonathan Frederic
|
r14279 | that.model.update_other_views(that); | ||
Jonathan Frederic
|
r14263 | }); | ||
} | ||||
Jonathan Frederic
|
r14305 | var $item_element = this.$container.find(item_query); | ||
Jonathan Frederic
|
r14263 | if (this.model.get('value') == items[index]) { | ||
Jonathan Frederic
|
r14305 | $item_element.prop('checked', true); | ||
Jonathan Frederic
|
r14263 | } else { | ||
Jonathan Frederic
|
r14305 | $item_element.prop('checked', false); | ||
Jonathan Frederic
|
r14252 | } | ||
Jonathan Frederic
|
r14305 | $item_element.prop('disabled', disabled); | ||
Jonathan Frederic
|
r14252 | } | ||
Jonathan Frederic
|
r14263 | // Remove items that no longer exist. | ||
Jonathan Frederic
|
r14295 | this.$container.find('input').each(function(i, obj) { | ||
Jonathan Frederic
|
r14263 | var value = $(obj).val(); | ||
var found = false; | ||||
for (var index in items) { | ||||
if (items[index] == value) { | ||||
found = true; | ||||
break; | ||||
} | ||||
} | ||||
if (!found) { | ||||
$(obj).parent().remove(); | ||||
} | ||||
}); | ||||
Jonathan Frederic
|
r14292 | |||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
Jonathan Frederic
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
}); | ||||
Jonathan Frederic
|
r14252 | |||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('RadioButtonsView', RadioButtonsView); | ||
Jonathan Frederic
|
r14258 | |||
Jonathan Frederic
|
r14263 | var ToggleButtonsView = IPython.WidgetView.extend({ | ||
Jonathan Frederic
|
r14258 | |||
Jonathan Frederic
|
r14263 | // Called when view is rendered. | ||
render : function(){ | ||||
this.$el | ||||
Jonathan Frederic
|
r14295 | .addClass('widget-hbox-single') | ||
Jonathan Frederic
|
r14278 | .html(''); | ||
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
|
r14263 | // Handles: Backend -> Frontend Sync | ||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
// Add missing items to the DOM. | ||||
var items = this.model.get('values'); | ||||
Jonathan Frederic
|
r14305 | var disabled = this.model.get('disabled'); | ||
Jonathan Frederic
|
r14258 | for (var index in items) { | ||
Jonathan Frederic
|
r14263 | var item_query = ' :contains("' + items[index] + '")'; | ||
if (this.$buttongroup.find(item_query).length == 0) { | ||||
var that = this; | ||||
$('<button />') | ||||
.attr('type', 'button') | ||||
.addClass('btn') | ||||
.html(items[index]) | ||||
.appendTo(this.$buttongroup) | ||||
.on('click', function(e){ | ||||
that.model.set('value', $(e.target).html(), this); | ||||
Jonathan Frederic
|
r14279 | that.model.update_other_views(that); | ||
Jonathan Frederic
|
r14263 | }); | ||
} | ||||
Jonathan Frederic
|
r14305 | var $item_element = this.$buttongroup.find(item_query); | ||
Jonathan Frederic
|
r14263 | if (this.model.get('value') == items[index]) { | ||
Jonathan Frederic
|
r14305 | $item_element.addClass('active'); | ||
Jonathan Frederic
|
r14263 | } else { | ||
Jonathan Frederic
|
r14305 | $item_element.removeClass('active'); | ||
Jonathan Frederic
|
r14258 | } | ||
Jonathan Frederic
|
r14305 | $item_element.prop('disabled', disabled); | ||
Jonathan Frederic
|
r14258 | } | ||
Jonathan Frederic
|
r14263 | // Remove items that no longer exist. | ||
this.$buttongroup.find('button').each(function(i, obj) { | ||||
var value = $(obj).html(); | ||||
var found = false; | ||||
for (var index in items) { | ||||
if (items[index] == value) { | ||||
found = true; | ||||
break; | ||||
} | ||||
} | ||||
if (!found) { | ||||
$(obj).remove(); | ||||
} | ||||
}); | ||||
Jonathan Frederic
|
r14292 | |||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
Jonathan Frederic
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14263 | }, | ||
}); | ||||
Jonathan Frederic
|
r14258 | |||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('ToggleButtonsView', ToggleButtonsView); | ||
Jonathan Frederic
|
r14375 | |||
var ListBoxView = IPython.WidgetView.extend({ | ||||
// Called when view is rendered. | ||||
render : function(){ | ||||
this.$el | ||||
.addClass('widget-hbox') | ||||
.html(''); | ||||
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(); | ||||
}, | ||||
// Handles: Backend -> Frontend Sync | ||||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
// Add missing items to the DOM. | ||||
var items = this.model.get('values'); | ||||
for (var index in items) { | ||||
var item_query = ' :contains("' + items[index] + '")'; | ||||
if (this.$listbox.find(item_query).length == 0) { | ||||
var that = this; | ||||
$('<option />') | ||||
.html(items[index]) | ||||
.attr('value', items[index]) | ||||
.appendTo(this.$listbox) | ||||
.on('click', function(e){ | ||||
that.model.set('value', $(e.target).html(), this); | ||||
that.model.update_other_views(that); | ||||
}); | ||||
} | ||||
} | ||||
// Select the correct element | ||||
this.$listbox.val(this.model.get('value')); | ||||
// 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) { | ||||
var value = $(obj).html(); | ||||
var found = false; | ||||
for (var index in items) { | ||||
if (items[index] == value) { | ||||
found = true; | ||||
break; | ||||
} | ||||
} | ||||
if (!found) { | ||||
$(obj).remove(); | ||||
} | ||||
}); | ||||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
return IPython.WidgetView.prototype.update.call(this); | ||||
}, | ||||
}); | ||||
widget_manager.register_widget_view('ListBoxView', ListBoxView); | ||||
Jonathan Frederic
|
r14263 | }); | ||