bool.js
109 lines
| 3.8 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r14259 | |||
Jonathan Frederic
|
r14285 | require(["notebook/js/widget"], function(){ | ||
Jonathan Frederic
|
r14259 | |||
var BoolWidgetModel = IPython.WidgetModel.extend({}); | ||||
IPython.notebook.widget_manager.register_widget_model('BoolWidgetModel', BoolWidgetModel); | ||||
var CheckboxView = IPython.WidgetView.extend({ | ||||
// Called when view is rendered. | ||||
render : function(){ | ||||
Jonathan Frederic
|
r14295 | this.$el = $('<div />') | ||
.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')); | ||||
that.model.update_other_views(that); | ||||
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. | ||
}, | ||||
// Handles: Backend -> Frontend Sync | ||||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
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'); | ||
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
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14259 | }, | ||
}); | ||||
IPython.notebook.widget_manager.register_widget_view('CheckboxView', CheckboxView); | ||||
Jonathan Frederic
|
r14262 | |||
var ToggleButtonView = IPython.WidgetView.extend({ | ||||
// 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. | ||||
}, | ||||
// Handles: Backend -> Frontend Sync | ||||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
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'); | ||
if (description.length == 0) { | ||||
this.$button.html(' '); // Preserve button height | ||||
} else { | ||||
this.$button.html(description); | ||||
} | ||||
Jonathan Frederic
|
r14262 | } | ||
Jonathan Frederic
|
r14279 | return IPython.WidgetView.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
|
r14278 | this.model.update_other_views(this); | ||
Jonathan Frederic
|
r14262 | this.user_invoked_update = false; | ||
}, | ||||
}); | ||||
IPython.notebook.widget_manager.register_widget_view('ToggleButtonView', ToggleButtonView); | ||||
Jonathan Frederic
|
r14259 | }); | ||