devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
214 lines (212 loc) • 7.95 kB
JavaScript
/**
* DevExtreme (cjs/ui/scroll_view/ui.scroll_view.native.swipe_down.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 _renderer = _interopRequireDefault(require("../../core/renderer"));
var _callbacks = _interopRequireDefault(require("../../core/utils/callbacks"));
var _translator = require("../../animation/translator");
var _index = require("../../events/utils/index");
var _uiScrollable = _interopRequireDefault(require("./ui.scrollable.native"));
var _load_indicator = _interopRequireDefault(require("../load_indicator"));
var _deferred = require("../../core/utils/deferred");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
const SCROLLVIEW_PULLDOWN_DOWN_LOADING_CLASS = "dx-scrollview-pull-down-loading";
const SCROLLVIEW_PULLDOWN_INDICATOR_CLASS = "dx-scrollview-pull-down-indicator";
const SCROLLVIEW_PULLDOWN_REFRESHING_CLASS = "dx-scrollview-pull-down-refreshing";
const PULLDOWN_ICON_CLASS = "dx-icon-pulldown";
const STATE_RELEASED = 0;
const STATE_READY = 1;
const STATE_REFRESHING = 2;
const STATE_TOUCHED = 4;
const STATE_PULLED = 5;
const SwipeDownNativeScrollViewStrategy = _uiScrollable.default.inherit({
_init: function(scrollView) {
this.callBase(scrollView);
this._$topPocket = scrollView._$topPocket;
this._$pullDown = scrollView._$pullDown;
this._$scrollViewContent = (0, _renderer.default)(scrollView.content());
this._$container = (0, _renderer.default)(scrollView.container());
this._initCallbacks();
this._location = 0
},
_initCallbacks: function() {
this.pullDownCallbacks = (0, _callbacks.default)();
this.releaseCallbacks = (0, _callbacks.default)();
this.reachBottomCallbacks = (0, _callbacks.default)()
},
render: function() {
this.callBase();
this._renderPullDown();
this._releaseState()
},
_renderPullDown: function() {
const $loadContainer = (0, _renderer.default)("<div>").addClass("dx-scrollview-pull-down-indicator");
const $loadIndicator = new _load_indicator.default((0, _renderer.default)("<div>")).$element();
this._$icon = (0, _renderer.default)("<div>").addClass("dx-icon-pulldown");
this._$pullDown.empty().append(this._$icon).append($loadContainer.append($loadIndicator))
},
_releaseState: function() {
this._state = 0;
this._releasePullDown();
this._updateDimensions()
},
_releasePullDown: function() {
this._$pullDown.css({
opacity: 0
})
},
_updateDimensions: function() {
this.callBase();
this._topPocketSize = this._$topPocket.get(0).clientHeight;
const contentEl = this._$scrollViewContent.get(0);
const containerEl = this._$container.get(0);
this._bottomBoundary = Math.max(contentEl.clientHeight - containerEl.clientHeight, 0)
},
_allowedDirections: function() {
const allowedDirections = this.callBase();
allowedDirections.vertical = allowedDirections.vertical || this._pullDownEnabled;
return allowedDirections
},
handleInit: function(e) {
this.callBase(e);
if (0 === this._state && 0 === this._location) {
this._startClientY = (0, _index.eventData)(e.originalEvent).y;
this._state = 4
}
},
handleMove: function(e) {
this.callBase(e);
this._deltaY = (0, _index.eventData)(e.originalEvent).y - this._startClientY;
if (4 === this._state) {
if (this._pullDownEnabled && this._deltaY > 0) {
this._state = 5
} else {
this._complete()
}
}
if (5 === this._state) {
e.preventDefault();
this._movePullDown()
}
},
_movePullDown: function() {
const pullDownHeight = this._getPullDownHeight();
const top = Math.min(3 * pullDownHeight, this._deltaY + this._getPullDownStartPosition());
const angle = 180 * top / pullDownHeight / 3;
this._$pullDown.css({
opacity: 1
}).toggleClass("dx-scrollview-pull-down-refreshing", top < pullDownHeight);
(0, _translator.move)(this._$pullDown, {
top: top
});
this._$icon.css({
transform: "rotate(" + angle + "deg)"
})
},
_isPullDown: function() {
return this._pullDownEnabled && 5 === this._state && this._deltaY >= this._getPullDownHeight() - this._getPullDownStartPosition()
},
_getPullDownHeight: function() {
return Math.round(.05 * (0, _size.getOuterHeight)(this._$element))
},
_getPullDownStartPosition: function() {
return -Math.round(1.5 * (0, _size.getOuterHeight)(this._$pullDown))
},
handleEnd: function() {
if (this._isPullDown()) {
this._pullDownRefreshing()
}
this._complete()
},
handleStop: function() {
this._complete()
},
_complete: function() {
if (4 === this._state || 5 === this._state) {
this._releaseState()
}
},
handleScroll: function(e) {
this.callBase(e);
if (2 === this._state) {
return
}
const currentLocation = this.location().top;
const scrollDelta = this._location - currentLocation;
this._location = currentLocation;
if (scrollDelta > 0 && this._isReachBottom()) {
this._reachBottom()
} else {
this._stateReleased()
}
},
_isReachBottom: function() {
return this._reachBottomEnabled && Math.round(this._bottomBoundary + Math.floor(this._location)) <= 1
},
_reachBottom: function() {
this.reachBottomCallbacks.fire()
},
_stateReleased: function() {
if (0 === this._state) {
return
}
this._$pullDown.removeClass("dx-scrollview-pull-down-loading");
this._releaseState()
},
_pullDownRefreshing: function() {
this._state = 2;
this._pullDownRefreshHandler()
},
_pullDownRefreshHandler: function() {
this._refreshPullDown();
this.pullDownCallbacks.fire()
},
_refreshPullDown: function() {
this._$pullDown.addClass("dx-scrollview-pull-down-loading");
(0, _translator.move)(this._$pullDown, {
top: this._getPullDownHeight()
})
},
pullDownEnable: function(enabled) {
this._$topPocket.toggle(enabled);
this._pullDownEnabled = enabled
},
reachBottomEnable: function(enabled) {
this._reachBottomEnabled = enabled
},
pendingRelease: function() {
this._state = 1
},
release: function() {
const deferred = new _deferred.Deferred;
this._updateDimensions();
clearTimeout(this._releaseTimeout);
this._releaseTimeout = setTimeout(function() {
this._stateReleased();
this.releaseCallbacks.fire();
this._updateAction();
deferred.resolve()
}.bind(this), 800);
return deferred.promise()
},
dispose: function() {
clearTimeout(this._pullDownRefreshTimeout);
clearTimeout(this._releaseTimeout);
this.callBase()
}
});
var _default = SwipeDownNativeScrollViewStrategy;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;