Show More
float_range.js
149 lines
| 5.3 KiB
| application/javascript
|
JavascriptLexer
|
r14285 | require(["notebook/js/widget"], function(){ | ||
|
r14263 | var FloatRangeWidgetModel = IPython.WidgetModel.extend({}); | ||
IPython.notebook.widget_manager.register_widget_model('FloatRangeWidgetModel', FloatRangeWidgetModel); | ||||
|
r14252 | |||
|
r14263 | var FloatSliderView = IPython.WidgetView.extend({ | ||
|
r14252 | |||
|
r14263 | // Called when view is rendered. | ||
render : function(){ | ||||
this.$el | ||||
|
r14278 | .html(''); | ||
|
r14292 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
.addClass('widget-label') | ||||
.hide(); | ||||
|
r14263 | this.$slider = $('<div />') | ||
|
r14268 | .slider({}) | ||
.addClass('slider'); | ||||
|
r14263 | |||
// Put the slider in a container | ||||
this.$slider_container = $('<div />') | ||||
|
r14268 | .css('padding-top', '4px') | ||
.css('padding-bottom', '4px') | ||||
.append(this.$slider); | ||||
|
r14263 | this.$el.append(this.$slider_container); | ||
// Set defaults. | ||||
this.update(); | ||||
}, | ||||
|
r14252 | |||
|
r14263 | // Handles: Backend -> Frontend Sync | ||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
// Slider related keys. | ||||
var _keys = ['value', 'step', 'max', 'min', 'disabled', 'orientation']; | ||||
for (var index in _keys) { | ||||
var key = _keys[index]; | ||||
if (this.model.get(key) != undefined) { | ||||
this.$slider.slider("option", key, this.model.get(key)); | ||||
} | ||||
|
r14252 | } | ||
|
r14292 | |||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
|
r14263 | }, | ||
// Handles: User input | ||||
events: { "slide" : "handleSliderChange" }, | ||||
handleSliderChange: function(e, ui) { | ||||
this.model.set('value', ui.value); | ||||
|
r14278 | this.model.update_other_views(this); | ||
|
r14263 | }, | ||
}); | ||||
|
r14252 | |||
|
r14263 | IPython.notebook.widget_manager.register_widget_view('FloatSliderView', FloatSliderView); | ||
|
r14252 | |||
|
r14263 | var FloatTextView = IPython.WidgetView.extend({ | ||
|
r14252 | |||
|
r14263 | // Called when view is rendered. | ||
render : function(){ | ||||
this.$el | ||||
|
r14278 | .html(''); | ||
|
r14292 | this.$label = $('<div />') | ||
.appendTo(this.$el) | ||||
.addClass('widget-label') | ||||
.hide(); | ||||
|
r14263 | this.$textbox = $('<input type="text" />') | ||
.addClass('input') | ||||
.appendTo(this.$el); | ||||
this.update(); // Set defaults. | ||||
}, | ||||
|
r14252 | |||
|
r14263 | // Handles: Backend -> Frontend Sync | ||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
var value = this.model.get('value'); | ||||
if (!this.changing && parseFloat(this.$textbox.val()) != value) { | ||||
this.$textbox.val(value); | ||||
} | ||||
if (this.model.get('disabled')) { | ||||
this.$textbox.attr('disabled','disabled'); | ||||
} else { | ||||
this.$textbox.removeAttr('disabled'); | ||||
} | ||||
|
r14292 | |||
var description = this.model.get('description'); | ||||
if (description.length == 0) { | ||||
this.$label.hide(); | ||||
} else { | ||||
this.$label.html(description); | ||||
this.$label.show(); | ||||
} | ||||
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
|
r14263 | }, | ||
|
r14253 | |||
|
r14263 | |||
events: {"keyup input" : "handleChanging", | ||||
"paste input" : "handleChanging", | ||||
"cut input" : "handleChanging", | ||||
"change input" : "handleChanged"}, // Fires only when control is validated or looses focus. | ||||
// Handles and validates user input. | ||||
handleChanging: function(e) { | ||||
|
r14253 | |||
|
r14263 | // Try to parse value as a float. | ||
var numericalValue = 0.0; | ||||
if (e.target.value != '') { | ||||
numericalValue = parseFloat(e.target.value); | ||||
} | ||||
// If parse failed, reset value to value stored in model. | ||||
if (isNaN(numericalValue)) { | ||||
e.target.value = this.model.get('value'); | ||||
} else if (!isNaN(numericalValue)) { | ||||
if (this.model.get('max') != undefined) { | ||||
numericalValue = Math.min(this.model.get('max'), numericalValue); | ||||
} | ||||
if (this.model.get('min') != undefined) { | ||||
numericalValue = Math.max(this.model.get('min'), numericalValue); | ||||
} | ||||
// Apply the value if it has changed. | ||||
if (numericalValue != this.model.get('value')) { | ||||
this.changing = true; | ||||
this.model.set('value', numericalValue); | ||||
|
r14278 | this.model.update_other_views(this); | ||
|
r14263 | this.changing = false; | ||
} | ||||
} | ||||
}, | ||||
// Applies validated input. | ||||
handleChanged: function(e) { | ||||
// Update the textbox | ||||
if (this.model.get('value') != e.target.value) { | ||||
e.target.value = this.model.get('value'); | ||||
|
r14252 | } | ||
} | ||||
|
r14263 | }); | ||
|
r14252 | |||
|
r14263 | IPython.notebook.widget_manager.register_widget_view('FloatTextView', FloatTextView); | ||
}); | ||||