UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

182 lines (181 loc) 6.07 kB
/** * DevExtreme (esm/ui/load_indicator.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/ */ import { getWidth, getHeight } from "../core/utils/size"; import $ from "../core/renderer"; import { getNavigator } from "../core/utils/window"; var navigator = getNavigator(); import { animation } from "../core/utils/support"; import { current, isGeneric, isMaterialBased } from "./themes"; import { extend } from "../core/utils/extend"; import devices from "../core/devices"; import registerComponent from "../core/component_registrator"; import Widget from "./widget/ui.widget"; var LOADINDICATOR_CLASS = "dx-loadindicator"; var LOADINDICATOR_WRAPPER_CLASS = "dx-loadindicator-wrapper"; var LOADINDICATOR_CONTENT_CLASS = "dx-loadindicator-content"; var LOADINDICATOR_ICON_CLASS = "dx-loadindicator-icon"; var LOADINDICATOR_SEGMENT_CLASS = "dx-loadindicator-segment"; var LOADINDICATOR_SEGMENT_INNER_CLASS = "dx-loadindicator-segment-inner"; var LOADINDICATOR_IMAGE_CLASS = "dx-loadindicator-image"; var LoadIndicator = Widget.inherit({ _getDefaultOptions: function() { return extend(this.callBase(), { indicatorSrc: "", activeStateEnabled: false, hoverStateEnabled: false, _animatingSegmentCount: 1, _animatingSegmentInner: false }) }, _defaultOptionsRules: function() { var themeName = current(); return this.callBase().concat([{ device: function() { var realDevice = devices.real(); var obsoleteAndroid = "android" === realDevice.platform && !/chrome/i.test(navigator.userAgent); return obsoleteAndroid }, options: { viaImage: true } }, { device: function() { return isMaterialBased(themeName) }, options: { _animatingSegmentCount: 2, _animatingSegmentInner: true } }, { device: function() { return isGeneric(themeName) }, options: { _animatingSegmentCount: 7 } }]) }, _useTemplates: function() { return false }, _init: function() { this.callBase(); this.$element().addClass(LOADINDICATOR_CLASS) }, _initMarkup: function() { this.callBase(); this._renderWrapper(); this._renderIndicatorContent(); this._renderMarkup() }, _renderWrapper: function() { this._$wrapper = $("<div>").addClass(LOADINDICATOR_WRAPPER_CLASS); this.$element().append(this._$wrapper) }, _renderIndicatorContent: function() { this._$content = $("<div>").addClass(LOADINDICATOR_CONTENT_CLASS); this._$wrapper.append(this._$content) }, _renderMarkup: function() { var { viaImage: viaImage, indicatorSrc: indicatorSrc } = this.option(); if (animation() && !viaImage && !indicatorSrc) { this._renderMarkupForAnimation() } else { this._renderMarkupForImage() } }, _renderMarkupForAnimation: function() { var animatingSegmentInner = this.option("_animatingSegmentInner"); this._$indicator = $("<div>").addClass(LOADINDICATOR_ICON_CLASS); this._$content.append(this._$indicator); for (var i = this.option("_animatingSegmentCount"); i >= 0; --i) { var $segment = $("<div>").addClass(LOADINDICATOR_SEGMENT_CLASS).addClass(LOADINDICATOR_SEGMENT_CLASS + i); if (animatingSegmentInner) { $segment.append($("<div>").addClass(LOADINDICATOR_SEGMENT_INNER_CLASS)) } this._$indicator.append($segment) } }, _renderMarkupForImage: function() { var { indicatorSrc: indicatorSrc } = this.option(); if (indicatorSrc) { this._$wrapper.addClass(LOADINDICATOR_IMAGE_CLASS); this._$wrapper.css("backgroundImage", "url(" + indicatorSrc + ")") } else if (animation()) { this._renderMarkupForAnimation() } }, _renderDimensions: function() { this.callBase(); this._updateContentSizeForAnimation() }, _updateContentSizeForAnimation: function() { if (!this._$indicator) { return } var width = this.option("width"); var height = this.option("height"); if (width || height) { width = getWidth(this.$element()); height = getHeight(this.$element()); var minDimension = Math.min(height, width); this._$wrapper.css({ height: minDimension, width: minDimension, fontSize: minDimension }) } }, _clean: function() { this.callBase(); this._removeMarkupForAnimation(); this._removeMarkupForImage() }, _removeMarkupForAnimation: function() { if (!this._$indicator) { return } this._$indicator.remove(); delete this._$indicator }, _removeMarkupForImage: function() { this._$wrapper.css("backgroundImage", "none") }, _optionChanged: function(args) { switch (args.name) { case "_animatingSegmentCount": case "_animatingSegmentInner": case "indicatorSrc": this._invalidate(); break; default: this.callBase(args) } } }); registerComponent("dxLoadIndicator", LoadIndicator); export default LoadIndicator;