devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
141 lines (137 loc) • 4.37 kB
JavaScript
/**
* DevExtreme (esm/viz/tree_map/selection.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/
*/
import TreeMapBase from "./tree_map.base";
import Node from "./node";
import {
expand
} from "../core/helpers";
import {
buildRectAppearance
} from "./common";
var proto = TreeMapBase.prototype;
var nodeProto = Node.prototype;
import {
normalizeEnum as _normalizeEnum
} from "../core/utils";
import {
inArray as _inArray
} from "../../core/utils/array";
var MODE_NONE = 0;
var MODE_SINGLE = 1;
var MODE_MULTIPLE = 2;
var STATE_CODE = 2;
import "./api";
import "./states";
proto._eventsMap.onSelectionChanged = {
name: "selectionChanged"
};
expand(proto._handlers, "calculateAdditionalStates", (function(states, options) {
states[2] = options.selectionStyle ? buildRectAppearance(options.selectionStyle) : {}
}));
nodeProto.statesMap[2] = nodeProto.statesMap[3] = STATE_CODE;
nodeProto.additionalStates.push(2);
expand(proto, "_onNodesCreated", (function() {
this._selectionList.length = 0
}));
expand(proto, "_extendProxyType", (function(proto) {
var that = this;
proto.select = function(state) {
that._selectNode(this._id, !!state)
};
proto.isSelected = function() {
return _inArray(this._id, that._selectionList) >= 0
};
that._selectionList = []
}));
TreeMapBase.addChange({
code: "SELECTION_MODE",
handler: function() {
var option = _normalizeEnum(this._getOption("selectionMode", true));
var selectionList = this._selectionList;
var tmp;
var mode = "none" === option ? MODE_NONE : "multiple" === option ? MODE_MULTIPLE : MODE_SINGLE;
if (mode === MODE_SINGLE && selectionList.length > 1) {
tmp = selectionList.pop();
this.clearSelection();
selectionList.push(tmp)
} else if (mode === MODE_NONE) {
this.clearSelection()
}
this._selectionMode = mode
},
isThemeDependent: true,
isOptionChange: true,
option: "selectionMode"
});
expand(proto, "_applyTilesAppearance", (function() {
if (this._selectionList.length) {
bringSelectedTilesToForeground(this._nodes, this._selectionList)
}
}));
var tileToFront = [leafToFront, groupToFront];
function bringSelectedTilesToForeground(nodes, selectionList) {
var i;
var ii = selectionList.length;
var node;
for (i = 0; i < ii; ++i) {
node = nodes[selectionList[i]];
tileToFront[Number(node.isNode())](node.tile)
}
}
function leafToFront(content) {
content.toForeground()
}
function groupToFront(content) {
content.outer.toForeground();
content.inner.toForeground()
}
proto._applySelectionState = function(index, state) {
var node = this._nodes[index];
node.setState(STATE_CODE, state);
this._eventTrigger("selectionChanged", {
node: node.proxy
})
};
proto._selectNode = function(index, state) {
var selectionList;
var k;
var tmp;
if (this._selectionMode !== MODE_NONE) {
this._context.suspend();
selectionList = this._selectionList;
k = _inArray(index, selectionList);
if (state && -1 === k) {
if (this._selectionMode === MODE_SINGLE) {
if (selectionList.length) {
tmp = selectionList.pop();
this._applySelectionState(tmp, false)
}
}
selectionList.push(index);
this._applySelectionState(index, true)
} else if (!state && k >= 0) {
selectionList.splice(k, 1);
this._applySelectionState(index, false)
}
this._context.resume()
}
};
proto.clearSelection = function() {
var selectionList = this._selectionList;
var i;
var ii = selectionList.length;
if (this._selectionMode !== MODE_NONE) {
this._context.suspend();
for (i = 0; i < ii; ++i) {
this._applySelectionState(selectionList[i], false)
}
selectionList.length = 0;
this._context.resume()
}
};