UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

535 lines (530 loc) • 22.8 kB
/** * DevExtreme (cjs/ui/file_manager/ui.file_manager.items_list.thumbnails.list_box.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 _extend = require("../../core/utils/extend"); var _type = require("../../core/utils/type"); var _deferred = require("../../core/utils/deferred"); var _hold = _interopRequireDefault(require("../../events/hold")); var _index = require("../../events/utils/index"); var _events_engine = _interopRequireDefault(require("../../events/core/events_engine")); var _bindable_template = require("../../core/templates/bindable_template"); var _scroll_view = _interopRequireDefault(require("../scroll_view")); var _uiCollection_widget = _interopRequireDefault(require("../collection/ui.collection_widget.edit")); var _selection = _interopRequireDefault(require("../selection/selection")); 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 ? Object.setPrototypeOf.bind() : function(o, p) { o.__proto__ = p; return o }; return _setPrototypeOf(o, p) } const FILE_MANAGER_THUMBNAILS_VIEW_PORT_CLASS = "dx-filemanager-thumbnails-view-port"; const FILE_MANAGER_THUMBNAILS_ITEM_LIST_CONTAINER_CLASS = "dx-filemanager-thumbnails-container"; const FILE_MANAGER_THUMBNAILS_ITEM_CLASS = "dx-filemanager-thumbnails-item"; const FILE_MANAGER_THUMBNAILS_ITEM_NAME_CLASS = "dx-filemanager-thumbnails-item-name"; const FILE_MANAGER_THUMBNAILS_ITEM_SPACER_CLASS = "dx-filemanager-thumbnails-item-spacer"; const FILE_MANAGER_THUMBNAILS_ITEM_DATA_KEY = "dxFileManagerItemData"; const FILE_MANAGER_THUMBNAILS_LIST_BOX_NAMESPACE = "dxFileManagerThumbnailsListBox"; const FILE_MANAGER_THUMBNAILS_LIST_BOX_HOLD_EVENT_NAME = (0, _index.addNamespace)(_hold.default.name, "dxFileManagerThumbnailsListBox"); let FileManagerThumbnailListBox = function(_CollectionWidget) { _inheritsLoose(FileManagerThumbnailListBox, _CollectionWidget); function FileManagerThumbnailListBox() { return _CollectionWidget.apply(this, arguments) || this } var _proto = FileManagerThumbnailListBox.prototype; _proto._initMarkup = function() { this._initActions(); this._lockFocusedItemProcessing = false; this.$element().addClass("dx-filemanager-thumbnails-view-port"); this._renderScrollView(); this._renderItemsContainer(); this._createScrollViewControl(); _CollectionWidget.prototype._initMarkup.call(this); this.onFocusedItemChanged = this._onFocusedItemChanged.bind(this); this._layoutUtils = new ListBoxLayoutUtils(this._scrollView, this.$element(), this._$itemContainer, this.itemElements().first()); this._syncFocusedItemKey() }; _proto._initActions = function() { this._actions = { onItemEnterKeyPressed: this._createActionByOption("onItemEnterKeyPressed"), onFocusedItemChanged: this._createActionByOption("onFocusedItemChanged") } }; _proto._initTemplates = function() { _CollectionWidget.prototype._initTemplates.call(this); this._itemThumbnailTemplate = this.option("itemThumbnailTemplate"); this._getTooltipText = this.option("getTooltipText"); this._templateManager.addDefaultTemplates({ item: new _bindable_template.BindableTemplate(function($container, data, itemModel) { const $itemElement = this._getDefaultItemTemplate(itemModel, $container); $container.append($itemElement) }.bind(this), ["fileItem"], this.option("integrationOptions.watchMethod")) }) }; _proto._createScrollViewControl = function() { if (!this._scrollView) { this._scrollView = this._createComponent(this._$scrollView, _scroll_view.default, { scrollByContent: true, scrollByThumb: true, useKeyboard: false, showScrollbar: "onHover" }) } }; _proto._renderScrollView = function() { if (!this._$scrollView) { this._$scrollView = (0, _renderer.default)("<div>").appendTo(this.$element()) } }; _proto.getScrollable = function() { return this._scrollView }; _proto._renderItemsContainer = function() { if (!this._$itemContainer) { this._$itemContainer = (0, _renderer.default)("<div>").addClass("dx-filemanager-thumbnails-container").appendTo(this._$scrollView) } }; _proto._render = function() { _CollectionWidget.prototype._render.call(this); this._detachEventHandlers(); this._attachEventHandlers() }; _proto._clean = function() { this._detachEventHandlers(); _CollectionWidget.prototype._clean.call(this) }; _proto._supportedKeys = function() { return (0, _extend.extend)(_CollectionWidget.prototype._supportedKeys.call(this), { upArrow(e) { this._beforeKeyProcessing(e); this._processArrowKeys(-1, false, e) }, downArrow(e) { this._beforeKeyProcessing(e); this._processArrowKeys(1, false, e) }, home(e) { this._beforeKeyProcessing(e); this._processHomeEndKeys(0, true, e) }, end(e) { this._beforeKeyProcessing(e); this._processHomeEndKeys(this._getItemsLength() - 1, true, e) }, pageUp(e) { this._beforeKeyProcessing(e); this._processPageChange(true, e) }, pageDown(e) { this._beforeKeyProcessing(e); this._processPageChange(false, e) }, enter(e) { this._beforeKeyProcessing(e); this._actions.onItemEnterKeyPressed(this._getFocusedItem()) }, A(e) { this._beforeKeyProcessing(e); if ((0, _index.isCommandKeyPressed)(e)) { this.selectAll() } } }) }; _proto._beforeKeyProcessing = function(e) { e.preventDefault(); this._layoutUtils.reset() }; _proto._processArrowKeys = function(offset, horizontal, eventArgs) { const item = this._getFocusedItem(); if (item) { if (!horizontal) { const layout = this._layoutUtils.getLayoutModel(); if (!layout) { return } offset *= layout.itemPerRowCount } const newItemIndex = this._getIndexByItem(item) + offset; this._focusItemByIndex(newItemIndex, true, eventArgs) } }; _proto._processHomeEndKeys = function(index, scrollToItem, eventArgs) { this._focusItemByIndex(index, scrollToItem, eventArgs) }; _proto._processPageChange = function(pageUp, eventArgs) { const item = this._getFocusedItem(); if (!item) { return } const layout = this._layoutUtils.getLayoutModel(); if (!layout) { return } const itemLayout = this._layoutUtils.createItemLayoutModel(this._getIndexByItem(item)); const rowOffset = pageUp ? layout.rowPerPageRate : -layout.rowPerPageRate; const newRowRate = itemLayout.itemRowIndex - rowOffset; const roundFunc = pageUp ? Math.ceil : Math.floor; const newRowIndex = roundFunc(newRowRate); let newItemIndex = newRowIndex * layout.itemPerRowCount + itemLayout.itemColumnIndex; if (newItemIndex < 0) { newItemIndex = 0 } else if (newItemIndex >= this._getItemsLength()) { newItemIndex = this._getItemsLength() - 1 } this._focusItemByIndex(newItemIndex, true, eventArgs) }; _proto._processLongTap = function(e) { const $targetItem = this._closestItemElement((0, _renderer.default)(e.target)); const itemIndex = this._getIndexByItemElement($targetItem); this._selection.changeItemSelection(itemIndex, { control: true }) }; _proto._attachEventHandlers = function() { if ("multiple" === this.option("selectionMode")) { _events_engine.default.on(this._itemContainer(), FILE_MANAGER_THUMBNAILS_LIST_BOX_HOLD_EVENT_NAME, ".".concat(this._itemContentClass()), e => { this._processLongTap(e); e.stopPropagation() }) } _events_engine.default.on(this._itemContainer(), "mousedown selectstart", e => { if (e.shiftKey) { e.preventDefault() } }) }; _proto._detachEventHandlers = function() { _events_engine.default.off(this._itemContainer(), FILE_MANAGER_THUMBNAILS_LIST_BOX_HOLD_EVENT_NAME); _events_engine.default.off(this._itemContainer(), "mousedown selectstart") }; _proto._itemContainer = function() { return this._$itemContainer }; _proto._itemClass = function() { return "dx-filemanager-thumbnails-item" }; _proto._itemDataKey = function() { return "dxFileManagerItemData" }; _proto._getDefaultItemTemplate = function(fileItemInfo, $itemElement) { $itemElement.attr("title", this._getTooltipText(fileItemInfo)); const $itemThumbnail = this._itemThumbnailTemplate(fileItemInfo); const $itemSpacer = (0, _renderer.default)("<div>").addClass("dx-filemanager-thumbnails-item-spacer"); const $itemName = (0, _renderer.default)("<div>").addClass("dx-filemanager-thumbnails-item-name").text(fileItemInfo.fileItem.name); $itemElement.append($itemThumbnail, $itemSpacer, $itemName) }; _proto._itemSelectHandler = function(e) { let options = {}; if ("multiple" === this.option("selectionMode")) { if (!this._isPreserveSelectionMode) { this._isPreserveSelectionMode = (0, _index.isCommandKeyPressed)(e) || e.shiftKey } options = { control: this._isPreserveSelectionMode, shift: e.shiftKey } } const index = this._getIndexByItemElement(e.currentTarget); this._selection.changeItemSelection(index, options) }; _proto._initSelectionModule = function() { _CollectionWidget.prototype._initSelectionModule.call(this); const options = (0, _extend.extend)(this._selection.options, { selectedKeys: this.option("selectedItemKeys"), onSelectionChanged: args => { this.option("selectedItems", this._getItemsByKeys(args.selectedItemKeys, args.selectedItems)); this._updateSelectedItems(args) } }); this._selection = new _selection.default(options) }; _proto._updateSelectedItems = function(args) { const addedItemKeys = args.addedItemKeys; const removedItemKeys = args.removedItemKeys; if (this._rendered && (addedItemKeys.length || removedItemKeys.length)) { const selectionChangePromise = this._selectionChangePromise; if (!this._rendering) { const addedSelection = []; let normalizedIndex; const removedSelection = []; this._editStrategy.beginCache(); for (let i = 0; i < removedItemKeys.length; i++) { normalizedIndex = this._getIndexByKey(removedItemKeys[i]); removedSelection.push(normalizedIndex); this._removeSelection(normalizedIndex) } for (let i = 0; i < addedItemKeys.length; i++) { normalizedIndex = this._getIndexByKey(addedItemKeys[i]); addedSelection.push(normalizedIndex); this._addSelection(normalizedIndex) } this._editStrategy.endCache(); this._updateSelection(addedSelection, removedSelection) }(0, _deferred.when)(selectionChangePromise).done(() => this._fireSelectionChangeEvent(args)) } }; _proto._fireSelectionChangeEvent = function(args) { this._createActionByOption("onSelectionChanged", { excludeValidators: ["disabled", "readOnly"] })(args) }; _proto._updateSelection = function(addedSelection, removedSelection) { const selectedItemsCount = this.getSelectedItems().length; if (0 === selectedItemsCount) { this._isPreserveSelectionMode = false } }; _proto._normalizeSelectedItems = function() { const newKeys = this._getKeysByItems(this.option("selectedItems")); const oldKeys = this._selection.getSelectedItemKeys(); if (!this._compareKeys(oldKeys, newKeys)) { this._selection.setSelection(newKeys) } return (new _deferred.Deferred).resolve().promise() }; _proto._focusOutHandler = function() {}; _proto._getItems = function() { return this.option("items") || [] }; _proto._getItemsLength = function() { return this._getItems().length }; _proto._getIndexByItemElement = function(itemElement) { return this._editStrategy.getNormalizedIndex(itemElement) }; _proto._getItemByIndex = function(index) { return this._getItems()[index] }; _proto._getFocusedItem = function() { return this.getItemByItemElement(this.option("focusedElement")) }; _proto._focusItem = function(item, scrollToItem) { this.option("focusedElement", this.getItemElementByItem(item)); if (scrollToItem) { this._layoutUtils.scrollToItem(this._getIndexByItem(item)) } }; _proto._focusItemByIndex = function(index, scrollToItem, eventArgs) { if (index >= 0 && index < this._getItemsLength()) { const item = this._getItemByIndex(index); this._focusItem(item, scrollToItem, eventArgs) } }; _proto._syncFocusedItemKey = function() { if (!this._syncFocusedItemKeyDeferred) { this._syncFocusedItemKeyDeferred = new _deferred.Deferred } const deferred = this._syncFocusedItemKeyDeferred; if (this._dataSource && this._dataSource.isLoading()) { return deferred.promise() } const focusedItemKey = this.option("focusedItemKey"); if ((0, _type.isDefined)(focusedItemKey)) { const items = this.option("items"); const focusedItem = items.find(item => this.keyOf(item) === focusedItemKey); if (focusedItem) { this._focusItem(focusedItem, true); deferred.resolve() } else { this.option("focusedItemKey", void 0); deferred.reject() } } else { deferred.resolve() } this._syncFocusedItemKeyDeferred = null; return deferred.promise() }; _proto._onFocusedItemChanged = function() { const focusedItem = this._getFocusedItem(); const newFocusedItemKey = this.keyOf(focusedItem); const oldFocusedItemKey = this.option("focusedItemKey"); if (newFocusedItemKey !== oldFocusedItemKey) { this._lockFocusedItemProcessing = true; this.option("focusedItemKey", newFocusedItemKey); this._lockFocusedItemProcessing = false; this._raiseFocusedItemChanged(focusedItem) } }; _proto._raiseFocusedItemChanged = function(focusedItem) { const args = { item: focusedItem, itemElement: this.option("focusedElement") }; this._actions.onFocusedItemChanged(args) }; _proto._changeItemSelection = function(item, select) { if (this.isItemSelected(item) === select) { return } const itemElement = this.getItemElementByItem(item); const index = this._getIndexByItemElement(itemElement); this._selection.changeItemSelection(index, { control: this._isPreserveSelectionMode }) }; _proto._chooseSelectOption = function() { return "selectedItemKeys" }; _proto.getSelectedItems = function() { return this._selection.getSelectedItems() }; _proto.getItemElementByItem = function(item) { return this._editStrategy.getItemElement(item) }; _proto.getItemByItemElement = function(itemElement) { return this._getItemByIndex(this._getIndexByItemElement(itemElement)) }; _proto.selectAll = function() { if ("multiple" !== this.option("selectionMode")) { return } this._selection.selectAll(); this._isPreserveSelectionMode = true }; _proto.selectItem = function(item) { this._changeItemSelection(item, true) }; _proto.deselectItem = function(item) { this._changeItemSelection(item, false) }; _proto.clearSelection = function() { this._selection.deselectAll() }; _proto._optionChanged = function(args) { switch (args.name) { case "items": if (this._layoutUtils) { this._layoutUtils.updateItems(this.itemElements().first()) } _CollectionWidget.prototype._optionChanged.call(this, args); break; case "focusedItemKey": if (this._lockFocusedItemProcessing) { break } if ((0, _type.isDefined)(args.value)) { this._syncFocusedItemKey().done(() => { const focusedItem = this._getFocusedItem(); this._raiseFocusedItemChanged(focusedItem) }) } else { this.option("focusedElement", null); this._raiseFocusedItemChanged(null) } break; case "onItemEnterKeyPressed": case "onFocusedItemChanged": this._actions[args.name] = this._createActionByOption(args.name); break; default: _CollectionWidget.prototype._optionChanged.call(this, args) } }; return FileManagerThumbnailListBox }(_uiCollection_widget.default); let ListBoxLayoutUtils = function() { function ListBoxLayoutUtils(scrollView, $viewPort, $itemContainer, $item) { this._layoutModel = null; this._scrollView = scrollView; this._$viewPort = $viewPort; this._$itemContainer = $itemContainer; this._$item = $item } var _proto2 = ListBoxLayoutUtils.prototype; _proto2.updateItems = function($item) { this._$item = $item }; _proto2.reset = function() { this._layoutModel = null }; _proto2.getLayoutModel = function() { if (!this._layoutModel) { this._layoutModel = this._createLayoutModel() } return this._layoutModel }; _proto2._createLayoutModel = function() { if (!this._$item) { return null } const itemWidth = (0, _size.getOuterWidth)(this._$item, true); if (0 === itemWidth) { return null } const itemHeight = (0, _size.getOuterHeight)(this._$item, true); const viewPortWidth = (0, _size.getInnerWidth)(this._$itemContainer); const viewPortHeight = (0, _size.getInnerHeight)(this._$viewPort); const viewPortScrollTop = this._scrollView.scrollTop(); const viewPortScrollBottom = viewPortScrollTop + viewPortHeight; const itemPerRowCount = Math.floor(viewPortWidth / itemWidth); const rowPerPageRate = viewPortHeight / itemHeight; return { itemWidth: itemWidth, itemHeight: itemHeight, viewPortWidth: viewPortWidth, viewPortHeight: viewPortHeight, viewPortScrollTop: viewPortScrollTop, viewPortScrollBottom: viewPortScrollBottom, itemPerRowCount: itemPerRowCount, rowPerPageRate: rowPerPageRate } }; _proto2.createItemLayoutModel = function(index) { const layout = this.getLayoutModel(); if (!layout) { return null } const itemRowIndex = Math.floor(index / layout.itemPerRowCount); const itemColumnIndex = index % layout.itemPerRowCount; const itemTop = itemRowIndex * layout.itemHeight; const itemBottom = itemTop + layout.itemHeight; return { itemRowIndex: itemRowIndex, itemColumnIndex: itemColumnIndex, itemTop: itemTop, itemBottom: itemBottom } }; _proto2.scrollToItem = function(index) { const layout = this.getLayoutModel(); if (!layout) { return } const itemRowIndex = Math.floor(index / layout.itemPerRowCount); const itemTop = itemRowIndex * layout.itemHeight; const itemBottom = itemTop + layout.itemHeight; let newScrollTop = layout.viewPortScrollTop; if (itemTop < layout.viewPortScrollTop) { newScrollTop = itemTop } else if (itemBottom > layout.viewPortScrollBottom) { newScrollTop = itemBottom - layout.viewPortHeight } this._scrollView.scrollTo(newScrollTop) }; return ListBoxLayoutUtils }(); var _default = FileManagerThumbnailListBox; exports.default = _default; module.exports = exports.default; module.exports.default = exports.default;