bool.js
103 lines
| 3.4 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
|
r14292 | .addClass('widget-label') | ||
Jonathan Frederic
|
r14295 | .appendTo(this.$el) | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14259 | this.$checkbox = $('<input />') | ||
.attr('type', 'checkbox') | ||||
Jonathan Frederic
|
r14295 | .appendTo(this.$el); | ||
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 | |||
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 | }, | ||
events: {"change input" : "handleChanged"}, | ||||
// Handles and validates user input. | ||||
handleChanged: function(e) { | ||||
this.user_invoked_update = true; | ||||
this.model.set('value', $(e.target).prop('checked')); | ||||
Jonathan Frederic
|
r14278 | this.model.update_other_views(this); | ||
Jonathan Frederic
|
r14259 | this.user_invoked_update = false; | ||
}, | ||||
}); | ||||
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); | ||||
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 | |||
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 | }); | ||