devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
400 lines (395 loc) • 16.2 kB
JavaScript
/**
* DevExtreme (cjs/ui/diagram/ui.diagram.toolbox.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 _window = require("../../core/utils/window");
var _deferred = require("../../core/utils/deferred");
var _message = _interopRequireDefault(require("../../localization/message"));
var _text_box = _interopRequireDefault(require("../text_box"));
var _accordion = _interopRequireDefault(require("../accordion"));
var _scroll_view = _interopRequireDefault(require("../scroll_view"));
var _tooltip = _interopRequireDefault(require("../tooltip"));
var _diagram = require("./diagram.importer");
var _uiDiagram = _interopRequireDefault(require("./ui.diagram.floating_panel"));
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 DIAGRAM_TOOLBOX_MIN_HEIGHT = 130;
const DIAGRAM_TOOLBOX_POPUP_CLASS = "dx-diagram-toolbox-popup";
const DIAGRAM_TOOLBOX_PANEL_CLASS = "dx-diagram-toolbox-panel";
const DIAGRAM_TOOLBOX_INPUT_CONTAINER_CLASS = "dx-diagram-toolbox-input-container";
const DIAGRAM_TOOLBOX_INPUT_CLASS = "dx-diagram-toolbox-input";
const DIAGRAM_TOOLTIP_DATATOGGLE = "shape-toolbox-tooltip";
const DIAGRAM_TOOLBOX_START_DRAG_CLASS = ".dxdi-tb-start-drag-flag";
let DiagramToolbox = function(_DiagramFloatingPanel) {
_inheritsLoose(DiagramToolbox, _DiagramFloatingPanel);
function DiagramToolbox() {
return _DiagramFloatingPanel.apply(this, arguments) || this
}
var _proto = DiagramToolbox.prototype;
_proto._init = function() {
_DiagramFloatingPanel.prototype._init.call(this);
this._toolboxes = [];
this._filterText = "";
this._createOnShapeCategoryRenderedAction();
this._createOnFilterChangedAction()
};
_proto._getPopupClass = function() {
return "dx-diagram-toolbox-popup"
};
_proto._getPopupHeight = function() {
return this.isMobileView() ? "100%" : _DiagramFloatingPanel.prototype._getPopupHeight.call(this)
};
_proto._getPopupMaxHeight = function() {
return this.isMobileView() ? "100%" : _DiagramFloatingPanel.prototype._getPopupMaxHeight.call(this)
};
_proto._getPopupMinHeight = function() {
return 130
};
_proto._getPopupPosition = function() {
const $parent = this.option("offsetParent");
const position = {
my: "left top",
at: "left top",
of: $parent
};
if (!this.isMobileView()) {
return (0, _extend.extend)(position, {
offset: this.option("offsetX") + " " + this.option("offsetY")
})
}
return position
};
_proto._getPopupAnimation = function() {
const $parent = this.option("offsetParent");
if (this.isMobileView()) {
return {
hide: this._getPopupSlideAnimationObject({
direction: "left",
from: {
position: {
my: "left top",
at: "left top",
of: $parent
}
},
to: {
position: {
my: "right top",
at: "left top",
of: $parent
}
}
}),
show: this._getPopupSlideAnimationObject({
direction: "right",
from: {
position: {
my: "right top",
at: "left top",
of: $parent
}
},
to: {
position: {
my: "left top",
at: "left top",
of: $parent
}
}
})
}
}
return _DiagramFloatingPanel.prototype._getPopupAnimation.call(this)
};
_proto._getPopupOptions = function() {
const options = _DiagramFloatingPanel.prototype._getPopupOptions.call(this);
if (!this.isMobileView()) {
return (0, _extend.extend)(options, {
showTitle: true,
toolbarItems: [{
widget: "dxButton",
location: "center",
options: {
activeStateEnabled: false,
focusStateEnabled: false,
hoverStateEnabled: false,
icon: "diagram-toolbox-drag",
stylingMode: "outlined",
type: "normal"
}
}]
})
}
return options
};
_proto._renderPopupContent = function($parent) {
let panelHeight = "100%";
if (this.option("showSearch")) {
const $inputContainer = (0, _renderer.default)("<div>").addClass("dx-diagram-toolbox-input-container").appendTo($parent);
this._updateElementWidth($inputContainer);
this._renderSearchInput($inputContainer);
if ((0, _window.hasWindow)()) {
panelHeight = "calc(100% - " + (0, _size.getHeight)(this._searchInput.$element()) + "px)"
}
}
const $panel = (0, _renderer.default)("<div>").addClass("dx-diagram-toolbox-panel").appendTo($parent);
(0, _size.setHeight)($panel, panelHeight);
this._updateElementWidth($panel);
this._renderScrollView($panel)
};
_proto._updateElementWidth = function($element) {
if (void 0 !== this.option("toolboxWidth")) {
$element.css("width", this.option("toolboxWidth"))
}
};
_proto.updateMaxHeight = function() {
if (this.isMobileView()) {
return
}
let maxHeight = 6;
if (this._popup) {
const $title = this._getPopupTitle();
maxHeight += (0, _size.getOuterHeight)($title)
}
if (this._accordion) {
maxHeight += (0, _size.getOuterHeight)(this._accordion.$element())
}
if (this._searchInput) {
maxHeight += (0, _size.getOuterHeight)(this._searchInput.$element())
}
this.option("maxHeight", maxHeight)
};
_proto._renderSearchInput = function($parent) {
const $input = (0, _renderer.default)("<div>").addClass("dx-diagram-toolbox-input").appendTo($parent);
this._searchInput = this._createComponent($input, _text_box.default, {
stylingMode: "outlined",
placeholder: _message.default.format("dxDiagram-uiSearch"),
onValueChanged: data => {
this._onInputChanged(data.value)
},
valueChangeEvent: "keyup",
buttons: [{
name: "search",
location: "after",
options: {
activeStateEnabled: false,
focusStateEnabled: false,
hoverStateEnabled: false,
icon: "search",
stylingMode: "outlined",
type: "normal",
onClick: () => {
this._searchInput.focus()
}
}
}]
})
};
_proto._renderScrollView = function($parent) {
const $scrollViewWrapper = (0, _renderer.default)("<div>").appendTo($parent);
this._scrollView = this._createComponent($scrollViewWrapper, _scroll_view.default);
const _moveIsAllowed = this._scrollView._moveIsAllowed.bind(this._scrollView);
this._scrollView._moveIsAllowed = e => {
for (let i = 0; i < this._toolboxes.length; i++) {
const $element = this._toolboxes[i];
if ((0, _renderer.default)($element).children(".dxdi-tb-start-drag-flag").length) {
return false
}
}
return _moveIsAllowed(e)
};
const $accordion = (0, _renderer.default)("<div>").appendTo(this._scrollView.content());
this._updateElementWidth($accordion);
this._renderAccordion($accordion)
};
_proto._getAccordionDataSource = function() {
const result = [];
const toolboxGroups = this.option("toolboxGroups");
for (let i = 0; i < toolboxGroups.length; i++) {
const category = toolboxGroups[i].category;
const title = toolboxGroups[i].title;
const groupObj = {
category: category,
title: title || category,
expanded: toolboxGroups[i].expanded,
displayMode: toolboxGroups[i].displayMode,
shapes: toolboxGroups[i].shapes,
onTemplate: (widget, $element, data) => {
const $toolboxElement = (0, _renderer.default)($element);
this._onShapeCategoryRenderedAction({
category: data.category,
displayMode: data.displayMode,
dataToggle: "shape-toolbox-tooltip",
shapes: data.shapes,
$element: $toolboxElement
});
this._toolboxes.push($toolboxElement);
if ("" !== this._filterText) {
this._onFilterChangedAction({
text: this._filterText,
filteringToolboxes: this._toolboxes.length - 1
})
}
this._createTooltips($toolboxElement)
}
};
result.push(groupObj)
}
return result
};
_proto._createTooltips = function($toolboxElement) {
if (this._isTouchMode()) {
return
}
const targets = $toolboxElement.find('[data-toggle="shape-toolbox-tooltip"]');
const $container = this.$element();
targets.each((index, element) => {
const $target = (0, _renderer.default)(element);
const title = $target.attr("title");
if (title) {
const $tooltip = (0, _renderer.default)("<div>").text(title).appendTo($container);
this._createComponent($tooltip, _tooltip.default, {
target: $target.get(0),
showEvent: "mouseenter",
hideEvent: "mouseleave",
position: "top",
animation: {
show: {
type: "fade",
from: 0,
to: 1,
delay: 500
},
hide: {
type: "fade",
from: 1,
to: 0,
delay: 100
}
}
})
}
})
};
_proto._isTouchMode = function() {
const {
Browser: Browser
} = (0, _diagram.getDiagram)();
return Browser.TouchUI
};
_proto._renderAccordion = function($container) {
this._accordion = this._createComponent($container, _accordion.default, {
multiple: true,
animationDuration: 0,
activeStateEnabled: false,
focusStateEnabled: false,
hoverStateEnabled: false,
collapsible: true,
displayExpr: "title",
dataSource: this._getAccordionDataSource(),
disabled: this.option("disabled"),
itemTemplate: (data, index, $element) => {
data.onTemplate(this, $element, data)
},
onSelectionChanged: e => {
this._updateScrollAnimateSubscription(e.component)
},
onContentReady: e => {
e.component.option("selectedItems", []);
const items = e.component.option("dataSource");
for (let i = 0; i < items.length; i++) {
if (false === items[i].expanded) {
e.component.collapseItem(i)
} else if (true === items[i].expanded) {
e.component.expandItem(i)
}
}
if (items.length && void 0 === items[0].expanded) {
e.component.expandItem(0)
}
this._updateScrollAnimateSubscription(e.component)
}
})
};
_proto._updateScrollAnimateSubscription = function(component) {
component._deferredAnimate = new _deferred.Deferred;
component._deferredAnimate.done(() => {
this.updateMaxHeight();
this._scrollView.update();
this._updateScrollAnimateSubscription(component)
})
};
_proto._onInputChanged = function(text) {
this._filterText = text;
this._onFilterChangedAction({
text: this._filterText,
filteringToolboxes: this._toolboxes.map(($element, index) => index)
});
this.updateTooltips();
this.updateMaxHeight();
this._scrollView.update()
};
_proto.updateFilter = function() {
this._onInputChanged(this._filterText)
};
_proto.updateTooltips = function() {
this._toolboxes.forEach($element => {
const $tooltipContainer = (0, _renderer.default)($element);
this._createTooltips($tooltipContainer)
})
};
_proto._createOnShapeCategoryRenderedAction = function() {
this._onShapeCategoryRenderedAction = this._createActionByOption("onShapeCategoryRendered")
};
_proto._createOnFilterChangedAction = function() {
this._onFilterChangedAction = this._createActionByOption("onFilterChanged")
};
_proto._optionChanged = function(args) {
switch (args.name) {
case "onShapeCategoryRendered":
this._createOnShapeCategoryRenderedAction();
break;
case "onFilterChanged":
this._createOnFilterChangedAction();
break;
case "showSearch":
case "toolboxWidth":
this._invalidate();
break;
case "toolboxGroups":
this._accordion.option("dataSource", this._getAccordionDataSource());
break;
default:
_DiagramFloatingPanel.prototype._optionChanged.call(this, args)
}
};
return DiagramToolbox
}(_uiDiagram.default);
var _default = DiagramToolbox;
exports.default = _default;
module.exports = exports.default;
module.exports.default = exports.default;