devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
146 lines (145 loc) • 5 kB
JavaScript
/**
* DevExtreme (esm/__internal/events/m_swipe.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import registerEmitter from "../../common/core/events/core/emitter_registrator";
import GestureEmitter from "../../common/core/events/gesture/emitter.gesture";
import {
eventData
} from "../../common/core/events/utils/index";
import {
getHeight,
getWidth
} from "../../core/utils/size";
const SWIPE_START_EVENT = "dxswipestart";
const SWIPE_EVENT = "dxswipe";
const SWIPE_END_EVENT = "dxswipeend";
const HorizontalStrategy = {
defaultItemSizeFunc() {
return getWidth(this.getElement())
},
getBounds() {
return [this._maxLeftOffset, this._maxRightOffset]
},
calcOffsetRatio(e) {
const endEventData = eventData(e);
return (endEventData.x - (this._savedEventData && this._savedEventData.x || 0)) / this._itemSizeFunc().call(this, e)
},
isFastSwipe(e) {
const endEventData = eventData(e);
return this.FAST_SWIPE_SPEED_LIMIT * Math.abs(endEventData.x - this._tickData.x) >= endEventData.time - this._tickData.time
}
};
const VerticalStrategy = {
defaultItemSizeFunc() {
return getHeight(this.getElement())
},
getBounds() {
return [this._maxTopOffset, this._maxBottomOffset]
},
calcOffsetRatio(e) {
const endEventData = eventData(e);
return (endEventData.y - (this._savedEventData && this._savedEventData.y || 0)) / this._itemSizeFunc().call(this, e)
},
isFastSwipe(e) {
const endEventData = eventData(e);
return this.FAST_SWIPE_SPEED_LIMIT * Math.abs(endEventData.y - this._tickData.y) >= endEventData.time - this._tickData.time
}
};
const STRATEGIES = {
horizontal: HorizontalStrategy,
vertical: VerticalStrategy
};
const SwipeEmitter = GestureEmitter.inherit({
TICK_INTERVAL: 300,
FAST_SWIPE_SPEED_LIMIT: 10,
ctor(element) {
this.callBase(element);
this.direction = "horizontal";
this.elastic = true
},
_getStrategy() {
return STRATEGIES[this.direction]
},
_defaultItemSizeFunc() {
return this._getStrategy().defaultItemSizeFunc.call(this)
},
_itemSizeFunc() {
return this.itemSizeFunc || this._defaultItemSizeFunc
},
_init(e) {
this._tickData = eventData(e)
},
_start(e) {
this._savedEventData = eventData(e);
e = this._fireEvent("dxswipestart", e);
if (!e.cancel) {
this._maxLeftOffset = e.maxLeftOffset;
this._maxRightOffset = e.maxRightOffset;
this._maxTopOffset = e.maxTopOffset;
this._maxBottomOffset = e.maxBottomOffset
}
},
_move(e) {
const strategy = this._getStrategy();
const moveEventData = eventData(e);
let offset = strategy.calcOffsetRatio.call(this, e);
offset = this._fitOffset(offset, this.elastic);
if (moveEventData.time - this._tickData.time > this.TICK_INTERVAL) {
this._tickData = moveEventData
}
this._fireEvent("dxswipe", e, {
offset: offset
});
if (false !== e.cancelable) {
e.preventDefault()
}
},
_end(e) {
const strategy = this._getStrategy();
const offsetRatio = strategy.calcOffsetRatio.call(this, e);
const isFast = strategy.isFastSwipe.call(this, e);
let startOffset = offsetRatio;
let targetOffset = this._calcTargetOffset(offsetRatio, isFast);
startOffset = this._fitOffset(startOffset, this.elastic);
targetOffset = this._fitOffset(targetOffset, false);
this._fireEvent("dxswipeend", e, {
offset: startOffset,
targetOffset: targetOffset
})
},
_fitOffset(offset, elastic) {
const strategy = this._getStrategy();
const bounds = strategy.getBounds.call(this);
if (offset < -bounds[0]) {
return elastic ? (-2 * bounds[0] + offset) / 3 : -bounds[0]
}
if (offset > bounds[1]) {
return elastic ? (2 * bounds[1] + offset) / 3 : bounds[1]
}
return offset
},
_calcTargetOffset(offsetRatio, isFast) {
let result;
if (isFast) {
result = Math.ceil(Math.abs(offsetRatio));
if (offsetRatio < 0) {
result = -result
}
} else {
result = Math.round(offsetRatio)
}
return result
}
});
registerEmitter({
emitter: SwipeEmitter,
events: ["dxswipestart", "dxswipe", "dxswipeend"]
});
export {
SWIPE_END_EVENT as end, SWIPE_START_EVENT as start, SWIPE_EVENT as swipe
};