widget_bool.js
127 lines
| 4.5 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. | ||||
//---------------------------------------------------------------------------- | ||||
//============================================================================ | ||||
// BoolWidget | ||||
//============================================================================ | ||||
/** | ||||
* @module IPython | ||||
* @namespace IPython | ||||
**/ | ||||
Jonathan Frederic
|
r14259 | |||
Jonathan Frederic
|
r14537 | define(["notebook/js/widgets/widget"], function(widget_manager){ | ||
Jonathan Frederic
|
r14259 | |||
var BoolWidgetModel = IPython.WidgetModel.extend({}); | ||||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_model('BoolWidgetModel', BoolWidgetModel); | ||
Jonathan Frederic
|
r14259 | |||
Jonathan Frederic
|
r14564 | var CheckboxView = IPython.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14259 | |||
// Called when view is rendered. | ||||
render : function(){ | ||||
Jonathan Frederic
|
r14395 | this.$el | ||
Jonathan Frederic
|
r14295 | .addClass('widget-hbox-single'); | ||
this.$label = $('<div />') | ||||
Jonathan Frederic
|
r14297 | .addClass('widget-hlabel') | ||
Jonathan Frederic
|
r14295 | .appendTo(this.$el) | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14299 | var that = this; | ||
Jonathan Frederic
|
r14259 | this.$checkbox = $('<input />') | ||
.attr('type', 'checkbox') | ||||
Jonathan Frederic
|
r14299 | .click(function(el) { | ||
that.user_invoked_update = true; | ||||
that.model.set('value', that.$checkbox.prop('checked')); | ||||
Jonathan Frederic
|
r14482 | that.touch(); | ||
Jonathan Frederic
|
r14299 | that.user_invoked_update = false; | ||
}) | ||||
Jonathan Frederic
|
r14295 | .appendTo(this.$el); | ||
Jonathan Frederic
|
r14259 | |||
Jonathan Frederic
|
r14314 | this.$el_to_style = this.$checkbox; // Set default element to style | ||
Jonathan Frederic
|
r14259 | this.update(); // Set defaults. | ||
}, | ||||
update : function(){ | ||||
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
|
r14259 | if (!this.user_invoked_update) { | ||
this.$checkbox.prop('checked', this.model.get('value')); | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14304 | var disabled = this.model.get('disabled'); | ||
this.$checkbox.prop('disabled', disabled); | ||||
Jonathan Frederic
|
r14292 | var description = this.model.get('description'); | ||
Jonathan Frederic
|
r14466 | if (description.length === 0) { | ||
Jonathan Frederic
|
r14295 | this.$label.hide(); | ||
Jonathan Frederic
|
r14292 | } else { | ||
Jonathan Frederic
|
r14295 | this.$label.html(description); | ||
this.$label.show(); | ||||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14259 | } | ||
Jonathan Frederic
|
r14564 | return IPython.DOMWidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14259 | }, | ||
}); | ||||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('CheckboxView', CheckboxView); | ||
Jonathan Frederic
|
r14262 | |||
Jonathan Frederic
|
r14564 | var ToggleButtonView = IPython.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14262 | |||
// Called when view is rendered. | ||||
render : function(){ | ||||
this.$el | ||||
Jonathan Frederic
|
r14278 | .html(''); | ||
Jonathan Frederic
|
r14262 | this.$button = $('<button />') | ||
.addClass('btn') | ||||
.attr('type', 'button') | ||||
.attr('data-toggle', 'button') | ||||
.appendTo(this.$el); | ||||
Jonathan Frederic
|
r14314 | this.$el_to_style = this.$button; // Set default element to style | ||
Jonathan Frederic
|
r14262 | |||
this.update(); // Set defaults. | ||||
}, | ||||
update : function(){ | ||||
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
|
r14262 | if (!this.user_invoked_update) { | ||
if (this.model.get('value')) { | ||||
this.$button.addClass('active'); | ||||
} else { | ||||
this.$button.removeClass('active'); | ||||
} | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14304 | var disabled = this.model.get('disabled'); | ||
this.$button.prop('disabled', disabled); | ||||
Jonathan Frederic
|
r14292 | var description = this.model.get('description'); | ||
Jonathan Frederic
|
r14466 | if (description.length === 0) { | ||
Jonathan Frederic
|
r14292 | this.$button.html(' '); // Preserve button height | ||
} else { | ||||
this.$button.html(description); | ||||
} | ||||
Jonathan Frederic
|
r14262 | } | ||
Jonathan Frederic
|
r14564 | return IPython.DOMWidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14262 | }, | ||
events: {"click button" : "handleClick"}, | ||||
// Handles and validates user input. | ||||
handleClick: function(e) { | ||||
this.user_invoked_update = true; | ||||
this.model.set('value', ! $(e.target).hasClass('active')); | ||||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14262 | this.user_invoked_update = false; | ||
}, | ||||
}); | ||||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('ToggleButtonView', ToggleButtonView); | ||
Jonathan Frederic
|
r14262 | |||
Jonathan Frederic
|
r14259 | }); | ||