widget_bool.js
158 lines
| 5.2 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r17198 | // Copyright (c) IPython Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||||
Jonathan Frederic
|
r14366 | |||
Jonathan Frederic
|
r17198 | define([ | ||
"widgets/js/widget", | ||||
Jonathan Frederic
|
r17216 | "jquery", | ||
MinRK
|
r17312 | "bootstrap", | ||
Jonathan Frederic
|
r17216 | ], function(widget, $){ | ||
Jonathan Frederic
|
r14366 | |||
Jonathan Frederic
|
r17198 | var CheckboxView = widget.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14259 | render : function(){ | ||
Jonathan Frederic
|
r19176 | /** | ||
* Called when view is rendered. | ||||
*/ | ||||
Jonathan Frederic
|
r14395 | this.$el | ||
Jason Grout
|
r18120 | .addClass('widget-hbox widget-checkbox'); | ||
Jonathan Frederic
|
r14295 | this.$label = $('<div />') | ||
Jonathan Frederic
|
r17929 | .addClass('widget-label') | ||
Jonathan Frederic
|
r14295 | .appendTo(this.$el) | ||
Jonathan Frederic
|
r14292 | .hide(); | ||
Jonathan Frederic
|
r14259 | this.$checkbox = $('<input />') | ||
.attr('type', 'checkbox') | ||||
Jonathan Frederic
|
r14595 | .appendTo(this.$el) | ||
.click($.proxy(this.handle_click, this)); | ||||
Jonathan Frederic
|
r14259 | |||
this.update(); // Set defaults. | ||||
}, | ||||
Jonathan Frederic
|
r14595 | |||
Jonathan Frederic
|
r17723 | update_attr: function(name, value) { | ||
Jonathan Frederic
|
r19176 | /** | ||
* Set a css attr of the widget view. | ||||
*/ | ||||
Jonathan Frederic
|
r19366 | if (name == 'padding' || name == 'margin') { | ||
this.$el.css(name, value); | ||||
} else { | ||||
this.$checkbox.css(name, value); | ||||
} | ||||
Jonathan Frederic
|
r17723 | }, | ||
Jonathan Frederic
|
r14595 | handle_click: function() { | ||
Jonathan Frederic
|
r19176 | /** | ||
* Handles when the checkbox is clicked. | ||||
* | ||||
* Calling model.set will trigger all of the other views of the | ||||
* model to update. | ||||
*/ | ||||
Jonathan Frederic
|
r14595 | var value = this.model.get('value'); | ||
this.model.set('value', ! value, {updated_view: this}); | ||||
this.touch(); | ||||
}, | ||||
Jonathan Frederic
|
r14259 | |||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r19176 | /** | ||
* 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
|
r14595 | this.$checkbox.prop('checked', this.model.get('value')); | ||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14595 | if (options === undefined || options.updated_view != this) { | ||
Jonathan Frederic
|
r14304 | var disabled = this.model.get('disabled'); | ||
this.$checkbox.prop('disabled', disabled); | ||||
Jonathan Frederic
|
r14292 | var description = this.model.get('description'); | ||
MinRK
|
r15330 | if (description.trim().length === 0) { | ||
Jonathan Frederic
|
r14295 | this.$label.hide(); | ||
Jonathan Frederic
|
r14292 | } else { | ||
Nicholas Bollweg (Nick)
|
r19196 | this.typeset(this.$label, description); | ||
Jonathan Frederic
|
r14295 | this.$label.show(); | ||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14259 | } | ||
Jonathan Frederic
|
r14834 | return CheckboxView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14259 | }, | ||
}); | ||||
Jonathan Frederic
|
r14262 | |||
Jonathan Frederic
|
r14609 | |||
Jonathan Frederic
|
r17198 | var ToggleButtonView = widget.DOMWidgetView.extend({ | ||
Jonathan Frederic
|
r14595 | render : function() { | ||
Jonathan Frederic
|
r19176 | /** | ||
* Called when view is rendered. | ||||
*/ | ||||
Jonathan Frederic
|
r14595 | var that = this; | ||
Jonathan Frederic
|
r14571 | this.setElement($('<button />') | ||
Jonathan Frederic
|
r16913 | .addClass('btn btn-default') | ||
Jonathan Frederic
|
r14262 | .attr('type', 'button') | ||
Jonathan Frederic
|
r14595 | .on('click', function (e) { | ||
e.preventDefault(); | ||||
that.handle_click(); | ||||
})); | ||||
Sylvain Corlay
|
r18824 | this.$el.attr("data-toggle", "tooltip"); | ||
Jonathan Frederic
|
r17728 | this.model.on('change:button_style', function(model, value) { | ||
this.update_button_style(); | ||||
}, this); | ||||
this.update_button_style(''); | ||||
Jonathan Frederic
|
r14262 | this.update(); // Set defaults. | ||
}, | ||||
Jonathan Frederic
|
r17728 | |||
update_button_style: function(previous_trait_value) { | ||||
var class_map = { | ||||
primary: ['btn-primary'], | ||||
success: ['btn-success'], | ||||
info: ['btn-info'], | ||||
warning: ['btn-warning'], | ||||
danger: ['btn-danger'] | ||||
}; | ||||
this.update_mapped_classes(class_map, 'button_style', previous_trait_value); | ||||
}, | ||||
Jonathan Frederic
|
r14262 | |||
Jonathan Frederic
|
r14570 | update : function(options){ | ||
Jonathan Frederic
|
r19176 | /** | ||
* 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
|
r14583 | if (this.model.get('value')) { | ||
this.$el.addClass('active'); | ||||
} else { | ||||
this.$el.removeClass('active'); | ||||
} | ||||
Jonathan Frederic
|
r14292 | |||
Jonathan Frederic
|
r14583 | if (options === undefined || options.updated_view != this) { | ||
Jonathan Frederic
|
r14595 | |||
Jonathan Frederic
|
r14304 | var disabled = this.model.get('disabled'); | ||
Jonathan Frederic
|
r14571 | this.$el.prop('disabled', disabled); | ||
Jonathan Frederic
|
r14304 | |||
Jonathan Frederic
|
r14292 | var description = this.model.get('description'); | ||
Sylvain Corlay
|
r18824 | this.$el.attr("title", this.model.get("tooltip")); | ||
MinRK
|
r15330 | if (description.trim().length === 0) { | ||
MinRK
|
r15329 | this.$el.html(" "); // Preserve button height | ||
Jonathan Frederic
|
r14292 | } else { | ||
Jonathan Frederic
|
r14663 | this.$el.text(description); | ||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14262 | } | ||
Jonathan Frederic
|
r14583 | return ToggleButtonView.__super__.update.apply(this); | ||
Jonathan Frederic
|
r14262 | }, | ||
Jonathan Frederic
|
r14595 | handle_click: function(e) { | ||
Jonathan Frederic
|
r19176 | /** | ||
* Handles and validates user input. | ||||
* | ||||
* Calling model.set will trigger all of the other views of the | ||||
* model to update. | ||||
*/ | ||||
Jonathan Frederic
|
r14595 | var value = this.model.get('value'); | ||
this.model.set('value', ! value, {updated_view: this}); | ||||
Jonathan Frederic
|
r14482 | this.touch(); | ||
Jonathan Frederic
|
r14262 | }, | ||
}); | ||||
Jonathan Frederic
|
r17198 | |||
return { | ||||
'CheckboxView': CheckboxView, | ||||
'ToggleButtonView': ToggleButtonView, | ||||
}; | ||||
Jonathan Frederic
|
r14259 | }); | ||