devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
541 lines (539 loc) • 21.3 kB
JavaScript
/**
* DevExtreme (cjs/ui/slider/ui.slider.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
exports.default = void 0;
var _size = require("../../core/utils/size");
var _component_registrator = _interopRequireDefault(require("../../core/component_registrator"));
var _devices = _interopRequireDefault(require("../../core/devices"));
var _renderer = _interopRequireDefault(require("../../core/renderer"));
var _common = require("../../core/utils/common");
var _deferred = require("../../core/utils/deferred");
var _extend = require("../../core/utils/extend");
var _click = require("../../events/click");
var _emitter = require("../../events/core/emitter.feedback");
var _events_engine = _interopRequireDefault(require("../../events/core/events_engine"));
var _swipeable = _interopRequireDefault(require("../../events/gesture/swipeable"));
var _pointer = _interopRequireDefault(require("../../events/pointer"));
var _index = require("../../events/utils/index");
var _number = _interopRequireDefault(require("../../localization/number"));
var _themes = require("../themes");
var _track_bar = _interopRequireDefault(require("../track_bar"));
var _utils = require("../widget/utils.ink_ripple");
var _ui = _interopRequireDefault(require("./ui.slider_handle"));
var _math = require("../../core/utils/math");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
const SLIDER_CLASS = "dx-slider";
const SLIDER_WRAPPER_CLASS = "dx-slider-wrapper";
const SLIDER_HANDLE_SELECTOR = ".dx-slider-handle";
const SLIDER_BAR_CLASS = "dx-slider-bar";
const SLIDER_RANGE_CLASS = "dx-slider-range";
const SLIDER_RANGE_VISIBLE_CLASS = "dx-slider-range-visible";
const SLIDER_LABEL_CLASS = "dx-slider-label";
const SLIDER_LABEL_POSITION_CLASS_PREFIX = "dx-slider-label-position-";
const SLIDER_TOOLTIP_POSITION_CLASS_PREFIX = "dx-slider-tooltip-position-";
const INVALID_MESSAGE_VISIBLE_CLASS = "dx-invalid-message-visible";
const SLIDER_VALIDATION_NAMESPACE = "Validation";
const Slider = _track_bar.default.inherit({
_activeStateUnit: ".dx-slider-handle",
_supportedKeys: function() {
const isRTL = this.option("rtlEnabled");
const roundedValue = (offset, isLeftDirection) => {
offset = this._valueStep(offset);
const step = this.option("step");
const value = this.option("value");
const currentPosition = value - this.option("min");
const remainder = (0, _math.getRemainderByDivision)(currentPosition, step, this._getValueExponentLength());
let result = isLeftDirection ? value - offset + (remainder ? step - remainder : 0) : value + offset - remainder;
const min = this.option("min");
const max = this.option("max");
if (result < min) {
result = min
} else if (result > max) {
result = max
}
return this._roundToExponentLength(result)
};
const moveHandleRight = offset => {
this.option("value", roundedValue(offset, isRTL))
};
const moveHandleLeft = offset => {
this.option("value", roundedValue(offset, !isRTL))
};
return (0, _extend.extend)(this.callBase(), {
leftArrow: function(e) {
this._processKeyboardEvent(e);
moveHandleLeft(this.option("step"))
},
rightArrow: function(e) {
this._processKeyboardEvent(e);
moveHandleRight(this.option("step"))
},
pageUp: function(e) {
this._processKeyboardEvent(e);
moveHandleRight(this.option("step") * this.option("keyStep"))
},
pageDown: function(e) {
this._processKeyboardEvent(e);
moveHandleLeft(this.option("step") * this.option("keyStep"))
},
home: function(e) {
this._processKeyboardEvent(e);
const min = this.option("min");
this.option("value", min)
},
end: function(e) {
this._processKeyboardEvent(e);
const max = this.option("max");
this.option("value", max)
}
})
},
_processKeyboardEvent: function(e) {
e.preventDefault();
e.stopPropagation();
this._saveValueChangeEvent(e)
},
_getDefaultOptions: function() {
return (0, _extend.extend)(this.callBase(), {
value: 50,
hoverStateEnabled: true,
activeStateEnabled: true,
step: 1,
showRange: true,
tooltip: {
enabled: false,
format: function(value) {
return value
},
position: "top",
showMode: "onHover"
},
label: {
visible: false,
position: "bottom",
format: function(value) {
return value
}
},
keyStep: 1,
useInkRipple: false,
validationMessageOffset: (0, _themes.isMaterial)() ? {
h: 18,
v: 0
} : {
h: 7,
v: 4
},
focusStateEnabled: true,
valueChangeMode: "onHandleMove"
})
},
_toggleValidationMessage: function(visible) {
if (!this.option("isValid")) {
this.$element().toggleClass("dx-invalid-message-visible", visible)
}
},
_defaultOptionsRules: function() {
return this.callBase().concat([{
device: function() {
return "desktop" === _devices.default.real().deviceType && !_devices.default.isSimulator()
},
options: {
focusStateEnabled: true
}
}, {
device: function() {
const themeName = (0, _themes.current)();
return (0, _themes.isMaterial)(themeName)
},
options: {
useInkRipple: true
}
}])
},
_initMarkup: function() {
this.$element().addClass("dx-slider");
this._renderSubmitElement();
this.option("useInkRipple") && this._renderInkRipple();
this.callBase();
this._renderLabels();
this._renderStartHandler();
this._renderAriaMinAndMax()
},
_attachFocusEvents: function() {
this.callBase();
const namespace = this.NAME + "Validation";
const focusInEvent = (0, _index.addNamespace)("focusin", namespace);
const focusOutEvent = (0, _index.addNamespace)("focusout", namespace);
const $focusTarget = this._focusTarget();
_events_engine.default.on($focusTarget, focusInEvent, this._toggleValidationMessage.bind(this, true));
_events_engine.default.on($focusTarget, focusOutEvent, this._toggleValidationMessage.bind(this, false))
},
_detachFocusEvents: function() {
this.callBase();
const $focusTarget = this._focusTarget();
this._toggleValidationMessage(false);
_events_engine.default.off($focusTarget, this.NAME + "Validation")
},
_render: function() {
this.callBase();
this._repaintHandle()
},
_renderSubmitElement: function() {
this._$submitElement = (0, _renderer.default)("<input>").attr("type", "hidden").appendTo(this.$element())
},
_getSubmitElement: function() {
return this._$submitElement
},
_renderInkRipple: function() {
this._inkRipple = (0, _utils.render)({
waveSizeCoefficient: .7,
isCentered: true,
wavesNumber: 2,
useHoldAnimation: false
})
},
_renderInkWave: function(element, dxEvent, doRender, waveIndex) {
if (!this._inkRipple) {
return
}
const config = {
element: element,
event: dxEvent,
wave: waveIndex
};
if (doRender) {
this._inkRipple.showWave(config)
} else {
this._inkRipple.hideWave(config)
}
},
_visibilityChanged: function() {
this.repaint()
},
_renderWrapper: function() {
this.callBase();
this._$wrapper.addClass("dx-slider-wrapper");
this._createComponent(this._$wrapper, _swipeable.default, {
rtlEnabled: false,
elastic: false,
immediate: true,
immediateTimeout: 0,
onStart: this._swipeStartHandler.bind(this),
onUpdated: this._swipeUpdateHandler.bind(this),
onEnd: this._swipeEndHandler.bind(this),
itemSizeFunc: this._itemWidthFunc.bind(this)
})
},
_renderContainer: function() {
this.callBase();
this._$bar.addClass("dx-slider-bar")
},
_renderRange: function() {
this.callBase();
this._$range.addClass("dx-slider-range");
this._renderHandle();
this._renderRangeVisibility()
},
_renderRangeVisibility: function() {
this._$range.toggleClass("dx-slider-range-visible", Boolean(this.option("showRange")))
},
_renderHandle: function() {
this._$handle = this._renderHandleImpl(this.option("value"), this._$handle)
},
_renderHandleImpl: function(value, $element) {
const $handle = $element || (0, _renderer.default)("<div>").appendTo(this._$range);
const tooltip = this.option("tooltip");
this.$element().toggleClass("dx-slider-tooltip-position-bottom", tooltip.enabled && "bottom" === tooltip.position).toggleClass("dx-slider-tooltip-position-top", tooltip.enabled && "top" === tooltip.position);
this._createComponent($handle, _ui.default, {
value: value,
tooltip: tooltip
});
return $handle
},
_renderAriaMinAndMax: function() {
this.setAria({
valuemin: this.option("min"),
valuemax: this.option("max")
}, this._$handle)
},
_toggleActiveState: function($element, value) {
this.callBase($element, value);
this._renderInkWave($element, null, !!value, 1)
},
_toggleFocusClass: function(isFocused, $element) {
this.callBase(isFocused, $element);
if (this._disposed) {
return
}
const $focusTarget = (0, _renderer.default)($element || this._focusTarget());
this._renderInkWave($focusTarget, null, isFocused, 0)
},
_renderLabels: function() {
this.$element().removeClass("dx-slider-label-position-bottom").removeClass("dx-slider-label-position-top");
if (this.option("label.visible")) {
const min = this.option("min");
const max = this.option("max");
const position = this.option("label.position");
const labelFormat = this.option("label.format");
if (!this._$minLabel) {
this._$minLabel = (0, _renderer.default)("<div>").addClass("dx-slider-label").appendTo(this._$wrapper)
}
this._$minLabel.text(_number.default.format(min, labelFormat));
if (!this._$maxLabel) {
this._$maxLabel = (0, _renderer.default)("<div>").addClass("dx-slider-label").appendTo(this._$wrapper)
}
this._$maxLabel.text(_number.default.format(max, labelFormat));
this.$element().addClass("dx-slider-label-position-" + position)
} else {
if (this._$minLabel) {
this._$minLabel.remove();
delete this._$minLabel
}
if (this._$maxLabel) {
this._$maxLabel.remove();
delete this._$maxLabel
}
}
},
_renderStartHandler: function() {
const pointerDownEventName = (0, _index.addNamespace)(_pointer.default.down, this.NAME);
const clickEventName = (0, _index.addNamespace)(_click.name, this.NAME);
const startAction = this._createAction(this._startHandler.bind(this));
const $element = this.$element();
_events_engine.default.off($element, pointerDownEventName);
_events_engine.default.on($element, pointerDownEventName, e => {
if ((0, _index.isMouseEvent)(e)) {
startAction({
event: e
})
}
});
_events_engine.default.off($element, clickEventName);
_events_engine.default.on($element, clickEventName, e => {
const $handle = this._activeHandle();
if ($handle) {
_events_engine.default.trigger($handle, "focusin");
_events_engine.default.trigger($handle, "focus")
}
startAction({
event: e
});
if ("onHandleRelease" === this.option("valueChangeMode")) {
this.option("value", this._getActualValue());
this._actualValue = void 0
}
})
},
_itemWidthFunc: function() {
return this._itemWidthRatio
},
_swipeStartHandler: function(e) {
const rtlEnabled = this.option("rtlEnabled");
if ((0, _index.isTouchEvent)(e.event)) {
this._createAction(this._startHandler.bind(this))({
event: e.event
})
}
this._feedbackDeferred = new _deferred.Deferred;
(0, _emitter.lock)(this._feedbackDeferred);
this._toggleActiveState(this._activeHandle(), this.option("activeStateEnabled"));
this._startOffset = this._currentRatio;
const startOffset = this._startOffset * this._swipePixelRatio();
const endOffset = (1 - this._startOffset) * this._swipePixelRatio();
e.event.maxLeftOffset = rtlEnabled ? endOffset : startOffset;
e.event.maxRightOffset = rtlEnabled ? startOffset : endOffset;
this._itemWidthRatio = (0, _size.getWidth)(this.$element()) / this._swipePixelRatio();
this._needPreventAnimation = true
},
_swipeEndHandler: function(e) {
if (this._isSingleValuePossible()) {
return
}
this._feedbackDeferred.resolve();
this._toggleActiveState(this._activeHandle(), false);
const offsetDirection = this.option("rtlEnabled") ? -1 : 1;
const ratio = this._startOffset + offsetDirection * e.event.targetOffset / this._swipePixelRatio();
delete this._needPreventAnimation;
this._saveValueChangeEvent(e.event);
this._changeValueOnSwipe(ratio);
if ("onHandleRelease" === this.option("valueChangeMode")) {
this.option("value", this._getActualValue())
}
this._actualValue = void 0;
delete this._startOffset;
this._renderValue()
},
_activeHandle: function() {
return this._$handle
},
_swipeUpdateHandler: function(e) {
if (this._isSingleValuePossible()) {
return
}
this._saveValueChangeEvent(e.event);
this._updateHandlePosition(e)
},
_updateHandlePosition: function(e) {
const offsetDirection = this.option("rtlEnabled") ? -1 : 1;
const newRatio = Math.min(this._startOffset + offsetDirection * e.event.offset / this._swipePixelRatio(), 1);
(0, _size.setWidth)(this._$range, 100 * newRatio + "%");
_ui.default.getInstance(this._activeHandle()).fitTooltipPosition;
this._changeValueOnSwipe(newRatio)
},
_swipePixelRatio: function() {
const min = this.option("min");
const max = this.option("max");
const step = this._valueStep(this.option("step"));
return (max - min) / step
},
_valueStep: function(step) {
if (!step || isNaN(step)) {
step = 1
}
return step
},
_getValueExponentLength: function() {
const {
step: step,
min: min
} = this.option();
return Math.max((0, _math.getExponentLength)(step), (0, _math.getExponentLength)(min))
},
_roundToExponentLength: function(value) {
const valueExponentLength = this._getValueExponentLength();
return (0, _math.roundFloatPart)(value, valueExponentLength)
},
_changeValueOnSwipe: function(ratio) {
const min = this.option("min");
const max = this.option("max");
const step = this._valueStep(this.option("step"));
const newChange = ratio * (max - min);
let newValue = min + newChange;
if (step < 0) {
return
}
if (newValue === max || newValue === min) {
this._setValueOnSwipe(newValue)
} else {
const stepCount = Math.round((newValue - min) / step);
newValue = this._roundToExponentLength(stepCount * step + min);
this._setValueOnSwipe(Math.max(Math.min(newValue, max), min))
}
},
_setValueOnSwipe: function(value) {
this._actualValue = value;
if ("onHandleRelease" === this.option("valueChangeMode")) {
_ui.default.getInstance(this._activeHandle()).option("value", value)
} else {
this.option("value", value);
this._saveValueChangeEvent(void 0)
}
},
_getActualValue: function() {
var _this$_actualValue;
return null !== (_this$_actualValue = this._actualValue) && void 0 !== _this$_actualValue ? _this$_actualValue : this.option("value")
},
_isSingleValuePossible: function() {
const {
min: min,
max: max
} = this.option();
return min === max
},
_startHandler: function(args) {
if (this._isSingleValuePossible()) {
return
}
const e = args.event;
this._currentRatio = ((0, _index.eventData)(e).x - this._$bar.offset().left) / (0, _size.getWidth)(this._$bar);
if (this.option("rtlEnabled")) {
this._currentRatio = 1 - this._currentRatio
}
this._saveValueChangeEvent(e);
this._changeValueOnSwipe(this._currentRatio)
},
_renderValue: function() {
this.callBase();
const value = this._getActualValue();
this._getSubmitElement().val((0, _common.applyServerDecimalSeparator)(value));
_ui.default.getInstance(this._activeHandle()).option("value", value)
},
_setRangeStyles: function(options) {
options && this._$range.css(options)
},
_callHandlerMethod: function(name, args) {
_ui.default.getInstance(this._$handle)[name](args)
},
_repaintHandle: function() {
this._callHandlerMethod("repaint")
},
_fitTooltip: function() {
this._callHandlerMethod("updateTooltipPosition")
},
_optionChanged: function(args) {
switch (args.name) {
case "visible":
this.callBase(args);
this._renderHandle();
this._repaintHandle();
break;
case "min":
case "max":
this._renderValue();
this.callBase(args);
this._renderLabels();
this._renderAriaMinAndMax();
this._fitTooltip();
break;
case "step":
this._renderValue();
break;
case "keyStep":
break;
case "showRange":
this._renderRangeVisibility();
break;
case "tooltip":
this._renderHandle();
break;
case "label":
this._renderLabels();
break;
case "useInkRipple":
this._invalidate();
break;
case "valueChangeMode":
break;
default:
this.callBase(args)
}
},
_refresh: function() {
this._toggleRTLDirection(this.option("rtlEnabled"));
this._renderDimensions();
this._renderValue();
this._renderHandle();
this._repaintHandle()
},
_clean: function() {
delete this._inkRipple;
delete this._actualValue;
this.callBase()
}
});
(0, _component_registrator.default)("dxSlider", Slider);
var _default = Slider;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;