devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
622 lines (617 loc) • 24.9 kB
JavaScript
/**
* DevExtreme (cjs/ui/file_manager/ui.file_manager.toolbar.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 _type = require("../../core/utils/type");
var _common = require("../../core/utils/common");
var _message = _interopRequireDefault(require("../../localization/message"));
var _uiFile_manager = require("./ui.file_manager.common");
var _ui = _interopRequireDefault(require("../widget/ui.widget"));
var _toolbar = _interopRequireDefault(require("../toolbar"));
require("../drop_down_button");
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_TOOLBAR_CLASS = "dx-filemanager-toolbar";
var FILE_MANAGER_GENERAL_TOOLBAR_CLASS = "dx-filemanager-general-toolbar";
var FILE_MANAGER_FILE_TOOLBAR_CLASS = "dx-filemanager-file-toolbar";
var FILE_MANAGER_TOOLBAR_SEPARATOR_ITEM_CLASS = FILE_MANAGER_TOOLBAR_CLASS + "-separator-item";
var FILE_MANAGER_TOOLBAR_VIEWMODE_ITEM_CLASS = FILE_MANAGER_TOOLBAR_CLASS + "-viewmode-item";
var FILE_MANAGER_TOOLBAR_HAS_LARGE_ICON_CLASS = FILE_MANAGER_TOOLBAR_CLASS + "-has-large-icon";
var FILE_MANAGER_VIEW_SWITCHER_POPUP_CLASS = "dx-filemanager-view-switcher-popup";
var DEFAULT_ITEM_CONFIGS = {
showNavPane: {
location: "before"
},
create: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
upload: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
refresh: {
location: "after",
showText: "inMenu",
cssClass: FILE_MANAGER_TOOLBAR_HAS_LARGE_ICON_CLASS,
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
switchView: {
location: "after"
},
download: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
move: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
copy: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
rename: {
location: "before",
compactMode: {
showText: "inMenu",
locateInMenu: "auto"
}
},
delete: {
location: "before",
compactMode: {
showText: "inMenu"
}
},
clearSelection: {
location: "after",
locateInMenu: "never",
compactMode: {
showText: "inMenu"
}
},
separator: {
location: "before"
}
};
var DEFAULT_ITEM_ALLOWED_PROPERTIES = ["visible", "location", "locateInMenu", "disabled", "showText"];
var DEFAULT_ITEM_ALLOWED_OPTION_PROPERTIES = ["accessKey", "elementAttr", "height", "hint", "icon", "stylingMode", "tabIndex", "text", "width"];
var ALWAYS_VISIBLE_TOOLBAR_ITEMS = ["separator", "switchView"];
var REFRESH_ICON_MAP = {
default: "dx-filemanager-i dx-filemanager-i-refresh",
progress: "dx-filemanager-i dx-filemanager-i-progress",
success: "dx-filemanager-i dx-filemanager-i-done",
error: "dx-filemanager-i dx-filemanager-i-danger"
};
var REFRESH_ITEM_PROGRESS_MESSAGE_DELAY = 500;
var FileManagerToolbar = function(_Widget) {
_inheritsLoose(FileManagerToolbar, _Widget);
function FileManagerToolbar() {
return _Widget.apply(this, arguments) || this
}
var _proto = FileManagerToolbar.prototype;
_proto._initMarkup = function() {
this._commandManager = this.option("commandManager");
this._createItemClickedAction();
this._generalToolbarVisible = true;
this._$viewSwitcherPopup = (0, _renderer.default)("<div>").addClass(FILE_MANAGER_VIEW_SWITCHER_POPUP_CLASS);
this._generalToolbar = this._createToolbar(this.option("generalItems"));
this._fileToolbar = this._createToolbar(this.option("fileItems"), true);
this._$viewSwitcherPopup.appendTo(this.$element());
this.$element().addClass(FILE_MANAGER_TOOLBAR_CLASS + " " + FILE_MANAGER_GENERAL_TOOLBAR_CLASS)
};
_proto._render = function() {
_Widget.prototype._render.call(this);
var toolbar = this._getVisibleToolbar();
this._checkCompactMode(toolbar)
};
_proto._dimensionChanged = function(dimension) {
if (!dimension || "height" !== dimension) {
var toolbar = this._getVisibleToolbar();
this._checkCompactMode(toolbar)
}
};
_proto._getVisibleToolbar = function() {
return this._generalToolbarVisible ? this._generalToolbar : this._fileToolbar
};
_proto._createToolbar = function(items, hidden) {
var _this = this;
var toolbarItems = this._getPreparedItems(items);
var $toolbar = (0, _renderer.default)("<div>").appendTo(this.$element());
var result = this._createComponent($toolbar, _toolbar.default, {
items: toolbarItems,
visible: !hidden,
onItemClick: function(args) {
return _this._raiseItemClicked(args)
}
});
result.compactMode = false;
return result
};
_proto._getPreparedItems = function(items) {
var _this2 = this;
items = items.map((function(item) {
var extendedItem = item;
if ((0, _type.isString)(item)) {
extendedItem = {
name: item
}
}
var commandName = extendedItem.name;
var preparedItem = _this2._configureItemByCommandName(commandName, extendedItem);
preparedItem.originalItemData = item;
if ("separator" !== commandName) {
_this2._setItemVisibleAvailable(preparedItem)
}
return preparedItem
}));
this._updateSeparatorsVisibility(items);
return items
};
_proto._updateSeparatorsVisibility = function(items, toolbar) {
var _this3 = this;
var hasModifications = false;
var menuItems = this._getMenuItems(toolbar);
var hasItemsBefore = {
before: false,
center: false,
after: false
};
var itemGroups = {
before: this._getItemsInGroup(items, menuItems, "before"),
center: this._getItemsInGroup(items, menuItems, "center"),
after: this._getItemsInGroup(items, menuItems, "after")
};
items.forEach((function(item, i) {
var itemLocation = item.location;
if ("separator" === item.name) {
var isSeparatorVisible = hasItemsBefore[itemLocation] && _this3._groupHasItemsAfter(itemGroups[itemLocation]);
if (item.visible !== isSeparatorVisible) {
hasModifications = true;
item.visible = isSeparatorVisible
}
hasItemsBefore[itemLocation] = false
} else {
if (!_this3._isItemInMenu(menuItems, item)) {
hasItemsBefore[itemLocation] = hasItemsBefore[itemLocation] || item.visible
}
itemGroups[itemLocation].shift()
}
}));
if (toolbar && hasModifications) {
toolbar.repaint()
}
return hasModifications
};
_proto._getMenuItems = function(toolbar) {
var result = toolbar ? toolbar._getMenuItems() : [];
return result.map((function(menuItem) {
return menuItem.originalItemData
}))
};
_proto._isItemInMenu = function(menuItems, item) {
return !!menuItems.length && "never" !== (0, _common.ensureDefined)(item.locateInMenu, "never") && -1 !== menuItems.indexOf(item.originalItemData)
};
_proto._getItemsInGroup = function(items, menuItems, groupName) {
var _this4 = this;
return items.filter((function(item) {
return item.location === groupName && !_this4._isItemInMenu(menuItems, item)
}))
};
_proto._groupHasItemsAfter = function(items) {
for (var i = 0; i < items.length; i++) {
if ("separator" !== items[i].name && items[i].visible) {
return true
}
}
return false
};
_proto._configureItemByCommandName = function(commandName, item) {
var _result$options;
var result = {};
var command = this._commandManager.getCommandByName(commandName);
if (command) {
result = this._createCommandItem(command)
}
switch (commandName) {
case "separator":
result = this._createSeparatorItem();
break;
case "switchView":
result = this._createViewModeItem()
}
if (this._isDefaultItem(commandName)) {
var defaultConfig = DEFAULT_ITEM_CONFIGS[commandName];
(0, _extend.extend)(true, result, defaultConfig);
var resultCssClass = result.cssClass || "";
(0, _uiFile_manager.extendAttributes)(result, item, DEFAULT_ITEM_ALLOWED_PROPERTIES);
if ((0, _type.isDefined)(item.options)) {
(0, _uiFile_manager.extendAttributes)(result.options, item.options, DEFAULT_ITEM_ALLOWED_OPTION_PROPERTIES)
}(0, _uiFile_manager.extendAttributes)(result.options, item, ["text", "icon"]);
if (item.cssClass) {
resultCssClass = "".concat(resultCssClass, " ").concat(item.cssClass)
}
if (resultCssClass) {
result.cssClass = resultCssClass
}
if (!(0, _type.isDefined)(item.visible)) {
result._autoHide = true
}
if ("dxButton" === result.widget) {
if ("inMenu" === result.showText && !(0, _type.isDefined)(result.options.hint)) {
result.options.hint = result.options.text
}
if (result.compactMode && !(0, _type.isDefined)(result.options.hint)) {
this._configureHintForCompactMode(result)
}
}
} else {
(0, _extend.extend)(true, result, item);
if (!result.widget) {
result.widget = "dxButton"
}
if ("dxButton" === result.widget && !result.compactMode && !result.showText && result.options && result.options.icon && result.options.text) {
result.compactMode = {
showText: "inMenu"
}
}
}
if (commandName && !result.name) {
(0, _extend.extend)(result, {
name: commandName
})
}
result.location = (0, _common.ensureDefined)(result.location, "before");
if (!(0, _type.isDefined)(null === (_result$options = result.options) || void 0 === _result$options ? void 0 : _result$options.stylingMode)) {
if ("dxButton" === result.widget) {
(0, _extend.extend)(true, result, {
options: {
stylingMode: "text"
}
})
}
if ("dxSelectBox" === result.widget) {
(0, _extend.extend)(true, result, {
options: {
stylingMode: "filled"
}
})
}
}
return result
};
_proto._isDefaultItem = function(commandName) {
return !!DEFAULT_ITEM_CONFIGS[commandName]
};
_proto._createCommandItem = function(command) {
var _this5 = this;
return {
widget: "dxButton",
options: {
text: command.text,
hint: command.hint,
commandText: command.text,
icon: command.icon,
stylingMode: "text",
onClick: function(e) {
return _this5._executeCommand(command)
}
}
}
};
_proto._createSeparatorItem = function() {
return {
template: function(data, index, element) {
(0, _renderer.default)(element).addClass(FILE_MANAGER_TOOLBAR_SEPARATOR_ITEM_CLASS)
}
}
};
_proto._createViewModeItem = function() {
var _this6 = this;
var commandItems = ["details", "thumbnails"].map((function(name) {
var _this6$_commandManage = _this6._commandManager.getCommandByName(name),
text = _this6$_commandManage.text,
icon = _this6$_commandManage.icon;
return {
name: name,
text: text,
icon: icon
}
}));
var selectedIndex = "thumbnails" === this.option("itemViewMode") ? 1 : 0;
return {
cssClass: FILE_MANAGER_TOOLBAR_VIEWMODE_ITEM_CLASS,
widget: "dxDropDownButton",
options: {
items: commandItems,
keyExpr: "name",
selectedItemKey: this.option("itemViewMode"),
displayExpr: " ",
hint: commandItems[selectedIndex].text,
stylingMode: "text",
showArrowIcon: false,
useSelectMode: true,
dropDownOptions: {
container: this._$viewSwitcherPopup
},
onItemClick: function(e) {
return _this6._executeCommand(e.itemData.name)
}
}
}
};
_proto._configureHintForCompactMode = function(item) {
item.options.hint = "";
item.compactMode.options = item.compactMode.options || {};
item.compactMode.options.hint = item.options.text
};
_proto._checkCompactMode = function(toolbar) {
if (toolbar.compactMode) {
this._toggleCompactMode(toolbar, false)
}
var useCompactMode = this._toolbarHasItemsOverflow(toolbar);
if (toolbar.compactMode !== useCompactMode) {
if (!toolbar.compactMode) {
this._toggleCompactMode(toolbar, useCompactMode)
}
toolbar.compactMode = useCompactMode
} else if (toolbar.compactMode) {
this._toggleCompactMode(toolbar, true)
}
};
_proto._toolbarHasItemsOverflow = function(toolbar) {
var toolbarWidth = toolbar.$element().width();
var itemsWidth = toolbar._getItemsWidth();
return toolbarWidth < itemsWidth
};
_proto._toggleCompactMode = function(toolbar, useCompactMode) {
var _this7 = this;
var hasModifications = false;
var items = toolbar.option("items");
items.forEach((function(item) {
if (item.compactMode) {
var optionsSource = null;
if (useCompactMode) {
item.saved = _this7._getCompactModeOptions(item, item._available);
optionsSource = item.compactMode
} else {
optionsSource = item.saved
}
var options = _this7._getCompactModeOptions(optionsSource, item._available);
(0, _extend.extend)(true, item, options);
hasModifications = true
}
}));
hasModifications = this._updateSeparatorsVisibility(items) || hasModifications;
if (hasModifications) {
toolbar.repaint()
}
this._updateSeparatorsVisibility(items, toolbar)
};
_proto._getCompactModeOptions = function(_ref, available) {
var showText = _ref.showText,
locateInMenu = _ref.locateInMenu,
options = _ref.options;
return {
visible: available,
showText: (0, _common.ensureDefined)(showText, "always"),
locateInMenu: (0, _common.ensureDefined)(locateInMenu, "never"),
options: {
hint: null === options || void 0 === options ? void 0 : options.hint
}
}
};
_proto._ensureAvailableCommandsVisible = function(toolbar, fileItems) {
var _this8 = this;
var hasModifications = false;
var items = toolbar.option("items");
items.forEach((function(item) {
if ("separator" !== item.name) {
var itemVisible = item._available;
_this8._setItemVisibleAvailable(item, fileItems);
if (item._available !== itemVisible) {
hasModifications = true
}
}
}));
hasModifications = this._updateSeparatorsVisibility(items) || hasModifications;
if (hasModifications) {
toolbar.repaint()
}
this._updateSeparatorsVisibility(items, toolbar)
};
_proto._setItemVisibleAvailable = function(item, fileItems) {
var _item$originalItemDat;
var originalVisible = null === (_item$originalItemDat = item.originalItemData) || void 0 === _item$originalItemDat ? void 0 : _item$originalItemDat.visible;
item._available = this._isToolbarItemAvailable(item, fileItems);
item.visible = (0, _type.isDefined)(originalVisible) ? originalVisible : item._available
};
_proto._fileToolbarHasEffectiveItems = function(fileItems) {
var _this9 = this;
var items = this._fileToolbar.option("items");
return items.some((function(item) {
return _this9._isFileToolbarItemAvailable(item, fileItems)
}))
};
_proto._executeCommand = function(command) {
this._commandManager.executeCommand(command)
};
_proto._isToolbarItemAvailable = function(toolbarItem, fileItems) {
if (!this._isDefaultItem(toolbarItem.name) || !toolbarItem._autoHide) {
return (0, _common.ensureDefined)(toolbarItem.visible, true)
}
if ("refresh" === toolbarItem.name) {
return this._generalToolbarVisible || !!this._isRefreshVisibleInFileToolbar
}
if (ALWAYS_VISIBLE_TOOLBAR_ITEMS.indexOf(toolbarItem.name) > -1) {
return true
}
return this._commandManager.isCommandAvailable(toolbarItem.name, fileItems)
};
_proto._isFileToolbarItemAvailable = function(_ref2, fileItems) {
var name = _ref2.name,
visible = _ref2.visible;
return !this._isDefaultItem(name) && (0, _common.ensureDefined)(visible, true) || "clearSelection" !== name && "refresh" !== name && this._commandManager.isCommandAvailable(name, fileItems)
};
_proto._updateItemInToolbar = function(toolbar, commandName, options) {
toolbar.beginUpdate();
var items = toolbar.option("items");
for (var i = 0; i < items.length; i++) {
var item = items[i];
if (item.name === commandName) {
toolbar.option("items[".concat(i, "]"), options);
break
}
}
toolbar.endUpdate()
};
_proto._raiseItemClicked = function(args) {
var changedArgs = (0, _extend.extend)(true, {}, args);
changedArgs.itemData = args.itemData.originalItemData;
this._itemClickedAction(changedArgs)
};
_proto._createItemClickedAction = function() {
this._itemClickedAction = this._createActionByOption("onItemClick")
};
_proto._getDefaultOptions = function() {
return (0, _extend.extend)(_Widget.prototype._getDefaultOptions.call(this), {
commandManager: null,
generalItems: [],
fileItems: [],
itemViewMode: "details",
onItemClick: null
})
};
_proto._optionChanged = function(args) {
var name = args.name;
switch (name) {
case "commandManager":
case "itemViewMode":
case "generalItems":
case "fileItems":
this.repaint();
break;
case "onItemClick":
this._itemClickedAction = this._createActionByOption(name);
break;
default:
_Widget.prototype._optionChanged.call(this, args)
}
};
_proto.updateRefreshItem = function(message, status) {
var generalToolbarOptions = null;
var text = _message.default.format("dxFileManager-commandRefresh");
var showText = "inMenu";
this._isRefreshVisibleInFileToolbar = false;
if ("default" === status) {
generalToolbarOptions = {
options: {
icon: REFRESH_ICON_MAP.default
}
}
} else {
generalToolbarOptions = {
options: {
icon: REFRESH_ICON_MAP[status]
}
};
this._isRefreshVisibleInFileToolbar = true;
text = message;
showText = "always"
}
var fileToolbarOptions = (0, _extend.extend)({}, generalToolbarOptions, {
visible: this._isRefreshVisibleInFileToolbar
});
this._applyRefreshItemOptions(generalToolbarOptions, fileToolbarOptions);
this._refreshItemTextTimeout = this._updateRefreshItemText("progress" === status, text, showText)
};
_proto._updateRefreshItemText = function(isDeferredUpdate, text, showText) {
var _this10 = this;
var options = {
showText: showText,
options: {
text: text
}
};
if (isDeferredUpdate) {
return setTimeout((function() {
_this10._applyRefreshItemOptions(options);
_this10._refreshItemTextTimeout = void 0
}), REFRESH_ITEM_PROGRESS_MESSAGE_DELAY)
} else {
if (this._refreshItemTextTimeout) {
clearTimeout(this._refreshItemTextTimeout)
}
this._applyRefreshItemOptions(options);
return
}
};
_proto._applyRefreshItemOptions = function(generalToolbarOptions, fileToolbarOptions) {
if (!fileToolbarOptions) {
fileToolbarOptions = (0, _extend.extend)({}, generalToolbarOptions)
}
this._updateItemInToolbar(this._generalToolbar, "refresh", generalToolbarOptions);
this._updateItemInToolbar(this._fileToolbar, "refresh", fileToolbarOptions)
};
_proto.update = function(fileItems) {
fileItems = (0, _common.ensureDefined)(fileItems, []);
var showGeneralToolbar = 0 === fileItems.length || !this._fileToolbarHasEffectiveItems(fileItems);
if (this._generalToolbarVisible !== showGeneralToolbar) {
this._generalToolbar.option("visible", showGeneralToolbar);
this._fileToolbar.option("visible", !showGeneralToolbar);
this._generalToolbarVisible = showGeneralToolbar;
this.$element().toggleClass(FILE_MANAGER_GENERAL_TOOLBAR_CLASS, showGeneralToolbar);
this.$element().toggleClass(FILE_MANAGER_FILE_TOOLBAR_CLASS, !showGeneralToolbar)
}
var toolbar = this._getVisibleToolbar();
this._ensureAvailableCommandsVisible(toolbar, fileItems);
this._checkCompactMode(toolbar)
};
return FileManagerToolbar
}(_ui.default);
var _default = FileManagerToolbar;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;