devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
340 lines (335 loc) • 16.6 kB
JavaScript
/**
* DevExtreme (cjs/ui/file_manager/ui.file_manager.notification.progress_panel.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
exports.default = void 0;
var _renderer = _interopRequireDefault(require("../../core/renderer"));
var _extend = require("../../core/utils/extend");
var _common = require("../../core/utils/common");
var _icon = require("../../core/utils/icon");
var _message = _interopRequireDefault(require("../../localization/message"));
var _ui = _interopRequireDefault(require("../widget/ui.widget"));
var _progress_bar = _interopRequireDefault(require("../progress_bar"));
var _button = _interopRequireDefault(require("../button"));
var _scroll_view = _interopRequireDefault(require("../scroll_view"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
_setPrototypeOf(subClass, superClass)
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
var FILE_MANAGER_PROGRESS_PANEL_CLASS = "dx-filemanager-progress-panel";
var FILE_MANAGER_PROGRESS_PANEL_CONTAINER_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-container");
var FILE_MANAGER_PROGRESS_PANEL_TITLE_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-title");
var FILE_MANAGER_PROGRESS_PANEL_TITLE_TEXT_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-title-text");
var FILE_MANAGER_PROGRESS_PANEL_CLOSE_BUTTON_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-close-button");
var FILE_MANAGER_PROGRESS_PANEL_INFOS_CONTAINER_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-infos-container");
var FILE_MANAGER_PROGRESS_PANEL_SEPARATOR_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-separator");
var FILE_MANAGER_PROGRESS_PANEL_INFO_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-info");
var FILE_MANAGER_PROGRESS_PANEL_COMMON_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-common");
var FILE_MANAGER_PROGRESS_PANEL_INFO_WITH_DETAILS_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-info-with-details");
var FILE_MANAGER_PROGRESS_PANEL_DETAILS_CLASS = "".concat(FILE_MANAGER_PROGRESS_PANEL_CLASS, "-details");
var FILE_MANAGER_PROGRESS_BOX_CLASS = "dx-filemanager-progress-box";
var FILE_MANAGER_PROGRESS_BOX_ERROR_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-error");
var FILE_MANAGER_PROGRESS_BOX_WITHOUT_CLOSE_BUTTON_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-without-close-button");
var FILE_MANAGER_PROGRESS_BOX_IMAGE_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-image");
var FILE_MANAGER_PROGRESS_BOX_WRAPPER_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-wrapper");
var FILE_MANAGER_PROGRESS_BOX_COMMON_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-common");
var FILE_MANAGER_PROGRESS_BOX_PROGRESS_BAR_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-progress-bar");
var FILE_MANAGER_PROGRESS_BOX_CLOSE_BUTTON_CLASS = "".concat(FILE_MANAGER_PROGRESS_BOX_CLASS, "-close-button");
var DX_CARD_CLASS = "dx-card";
var FileManagerProgressPanel = function(_Widget) {
_inheritsLoose(FileManagerProgressPanel, _Widget);
function FileManagerProgressPanel() {
return _Widget.apply(this, arguments) || this
}
var _proto = FileManagerProgressPanel.prototype;
_proto._initMarkup = function() {
var _this = this;
_Widget.prototype._initMarkup.call(this);
this._initActions();
this._operationCount = 0;
this.$element().addClass(FILE_MANAGER_PROGRESS_PANEL_CLASS);
var $scrollView = (0, _renderer.default)("<div>").appendTo(this.$element());
var $container = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_CONTAINER_CLASS).appendTo($scrollView);
this._scrollView = this._createComponent($scrollView, _scroll_view.default, {
scrollByContent: true,
scrollByThumb: true,
showScrollbar: "onScroll"
});
var $title = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_TITLE_CLASS).appendTo($container);
(0, _renderer.default)("<div>").text(_message.default.format("dxFileManager-notificationProgressPanelTitle")).addClass(FILE_MANAGER_PROGRESS_PANEL_TITLE_TEXT_CLASS).appendTo($title);
var $closeButton = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_CLOSE_BUTTON_CLASS).appendTo($title);
this._createComponent($closeButton, _button.default, {
icon: "close",
stylingMode: "text",
onClick: function() {
return _this._raisePanelClosed()
}
});
this._$infosContainer = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_INFOS_CONTAINER_CLASS).appendTo($container);
this._renderEmptyListText()
};
_proto._getDefaultOptions = function() {
return (0, _extend.extend)(_Widget.prototype._getDefaultOptions.call(this), {
onOperationClosed: null,
onOperationCanceled: null,
onOperationItemCanceled: null,
onPanelClosed: null
})
};
_proto._initActions = function() {
this._actions = {
onOperationClosed: this._createActionByOption("onOperationClosed"),
onOperationCanceled: this._createActionByOption("onOperationCanceled"),
onOperationItemCanceled: this._createActionByOption("onOperationItemCanceled"),
onPanelClosed: this._createActionByOption("onPanelClosed")
}
};
_proto._optionChanged = function(args) {
var name = args.name;
switch (name) {
case "test":
break;
case "onOperationClosed":
case "onOperationCanceled":
case "onOperationItemCanceled":
this._actions[name] = this._createActionByOption(name);
break;
default:
_Widget.prototype._optionChanged.call(this, args)
}
};
_proto.addOperation = function(commonText, showCloseButtonAlways, allowProgressAutoUpdate) {
var _this2 = this;
if (this._operationCount) {
(0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_SEPARATOR_CLASS).prependTo(this._$infosContainer)
} else {
this._$infosContainer.empty()
}
this._operationCount++;
var info = {
customCloseHandling: showCloseButtonAlways,
allowProgressAutoUpdate: (0, _common.ensureDefined)(allowProgressAutoUpdate, true)
};
var $info = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_INFO_CLASS).prependTo(this._$infosContainer);
info.$info = $info;
var $common = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_COMMON_CLASS).appendTo($info);
info.common = this._createProgressBox($common, {
commonText: commonText,
showCloseButton: true,
showCloseButtonAlways: showCloseButtonAlways,
onCloseButtonClick: function() {
return _this2._closeOperation(info)
}
});
return info
};
_proto.addOperationDetails = function(info, details, showCloseButton) {
var _this3 = this;
info.$info.addClass(FILE_MANAGER_PROGRESS_PANEL_INFO_WITH_DETAILS_CLASS);
var $details = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_PANEL_DETAILS_CLASS).appendTo(info.$info);
info.details = details.map((function(itemInfo, index) {
itemInfo.info = info;
return _this3._createDetailsItem($details, itemInfo, index, false, showCloseButton)
}))
};
_proto._createDetailsItem = function($container, item, itemIndex, skipProgressBox, showCloseButton) {
var _this4 = this;
var $detailsItem = (0, _renderer.default)("<div>").appendTo($container);
if (-1 !== itemIndex) {
$detailsItem.addClass(DX_CARD_CLASS)
}
return this._createProgressBox($detailsItem, {
commonText: item.commonText,
imageUrl: item.imageUrl,
skipProgressBox: skipProgressBox,
showCloseButton: showCloseButton,
showCloseButtonAlways: showCloseButton,
onCloseButtonClick: function() {
return _this4._cancelOperationItem(item, itemIndex)
}
})
};
_proto.completeOperationItem = function(operationInfo, itemIndex, commonProgress) {
if (operationInfo.allowProgressAutoUpdate) {
this.updateOperationItemProgress(operationInfo, itemIndex, 100, commonProgress)
}
this._setCloseButtonVisible(operationInfo.details[itemIndex], false)
};
_proto.updateOperationItemProgress = function(operationInfo, itemIndex, itemProgress, commonProgress) {
operationInfo.common.progressBar.option("value", commonProgress);
if (operationInfo.details) {
var detailsItem = operationInfo.details[itemIndex];
detailsItem.progressBar.option("value", itemProgress)
}
};
_proto.completeOperation = function(info, commonText, isError, statusText) {
info.completed = true;
info.common.$commonText.text(commonText);
if (isError) {
this._removeProgressBar(info.common)
} else if (info.allowProgressAutoUpdate) {
info.common.progressBar.option("value", 100)
}
if (statusText) {
this._setProgressBarText(info.common, statusText)
}
this._setCloseButtonVisible(info.common, true)
};
_proto.completeSingleOperationWithError = function(info, errorText) {
var _info$details;
var detailsItem = null === (_info$details = info.details) || void 0 === _info$details ? void 0 : _info$details[0];
info.completed = true;
this._renderOperationError(detailsItem || info.common, errorText);
this._setCloseButtonVisible(info.common, true);
if (detailsItem) {
this._setCloseButtonVisible(detailsItem, false)
}
};
_proto.addOperationDetailsError = function(info, index, errorText) {
var detailsItem = info.details[index];
this._renderOperationError(detailsItem, errorText);
this._setCloseButtonVisible(detailsItem, false)
};
_proto._renderError = function($container, $target, errorText) {
(0, _renderer.default)("<div>").text(errorText).addClass(FILE_MANAGER_PROGRESS_BOX_ERROR_CLASS).appendTo($container)
};
_proto._renderEmptyListText = function() {
this._$infosContainer.text(_message.default.format("dxFileManager-notificationProgressPanelEmptyListText"))
};
_proto._renderOperationError = function(info, errorText) {
this._removeProgressBar(info);
this._renderError(info.$wrapper, info.$commonText, errorText)
};
_proto._removeProgressBar = function(progressBox) {
if (progressBox.progressBar) {
progressBox.progressBar.dispose();
progressBox.progressBar.$element().remove();
progressBox.progressBar = null
}
};
_proto._createProgressBox = function($container, options) {
var _this5 = this;
$container.addClass(FILE_MANAGER_PROGRESS_BOX_CLASS);
if (!options.showCloseButtonAlways) {
$container.addClass(FILE_MANAGER_PROGRESS_BOX_WITHOUT_CLOSE_BUTTON_CLASS)
}
if (options.imageUrl) {
(0, _icon.getImageContainer)(options.imageUrl).addClass(FILE_MANAGER_PROGRESS_BOX_IMAGE_CLASS).appendTo($container)
}
var $wrapper = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_BOX_WRAPPER_CLASS).appendTo($container);
var $commonText = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_BOX_COMMON_CLASS).text(options.commonText).appendTo($wrapper);
var progressBar = null;
if (!options.skipProgressBox) {
var $progressBar = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_BOX_PROGRESS_BAR_CLASS).appendTo($wrapper);
progressBar = this._createComponent($progressBar, _progress_bar.default, {
min: 0,
max: 100,
width: "100%",
validationMessageMode: "always",
statusFormat: function(ratio, value) {
return _this5._getStatusString(ratio, value)
}
})
}
var closeButton = null;
if (options.showCloseButton) {
var $button = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_PROGRESS_BOX_CLOSE_BUTTON_CLASS).appendTo($container);
closeButton = this._createComponent($button, _button.default, {
icon: "dx-filemanager-i dx-filemanager-i-cancel",
stylingMode: "text",
visible: options.showCloseButtonAlways,
onClick: options.onCloseButtonClick
})
}
return {
$commonText: $commonText,
progressBar: progressBar,
$element: $container,
$wrapper: $wrapper,
closeButton: closeButton
}
};
_proto._setCloseButtonVisible = function(progressBox, visible) {
if (progressBox.closeButton) {
progressBox.$element.toggleClass(FILE_MANAGER_PROGRESS_BOX_WITHOUT_CLOSE_BUTTON_CLASS, !visible);
progressBox.closeButton.option("visible", visible)
}
};
_proto._setProgressBarText = function(progressBox, text) {
progressBox.progressBar.option("statusFormat", (function() {
return text
}))
};
_proto._closeOperation = function(info) {
var _this6 = this;
if (info.customCloseHandling && !info.completed) {
this._raiseOperationCanceled(info);
this._setCloseButtonVisible(info.common, false);
info.details.forEach((function(item) {
return _this6._displayClosedOperationItem(item)
}))
} else {
this._raiseOperationClosed(info);
info.$info.next(".".concat(FILE_MANAGER_PROGRESS_PANEL_SEPARATOR_CLASS)).remove();
info.$info.remove();
this._operationCount--;
if (!this._operationCount) {
this._renderEmptyListText()
}
}
};
_proto._cancelOperationItem = function(item, itemIndex) {
this._raiseOperationItemCanceled(item, itemIndex);
var itemInfo = item.info.details[itemIndex];
this._displayClosedOperationItem(itemInfo)
};
_proto._displayClosedOperationItem = function(itemInfo) {
this._setProgressBarText(itemInfo, _message.default.format("dxFileManager-notificationProgressPanelOperationCanceled"));
this._setCloseButtonVisible(itemInfo, false)
};
_proto._getStatusString = function(ratio, value) {
return 1 === ratio ? _message.default.format("Done") : Math.round(100 * ratio) + "%"
};
_proto._raiseOperationClosed = function(info) {
this._actions.onOperationClosed({
info: info
})
};
_proto._raiseOperationCanceled = function(info) {
this._actions.onOperationCanceled({
info: info
})
};
_proto._raiseOperationItemCanceled = function(item, itemIndex) {
this._actions.onOperationItemCanceled({
item: item,
itemIndex: itemIndex
})
};
_proto._raisePanelClosed = function() {
this._actions.onPanelClosed()
};
return FileManagerProgressPanel
}(_ui.default);
var _default = FileManagerProgressPanel;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;