devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
64 lines (60 loc) • 1.9 kB
JavaScript
/**
* DevExtreme (viz/tree_map/node.js)
* Version: 18.1.3
* Build date: Tue May 15 2018
*
* Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
var _extend = require("../../core/utils/extend").extend;
function Node() {}
_extend(Node.prototype, {
value: 0,
isNode: function() {
return !!(this.nodes && this.level < this.ctx.maxLevel)
},
isActive: function() {
var ctx = this.ctx;
return this.level >= ctx.minLevel && this.level <= ctx.maxLevel
},
updateStyles: function() {
var that = this,
isNode = Number(that.isNode());
that.state = that._buildState(that.ctx.settings[isNode].state, !isNode && that.color && {
fill: that.color
})
},
_buildState: function(state, extra) {
var base = _extend({}, state);
return extra ? _extend(base, extra) : base
},
updateLabelStyle: function() {
var settings = this.ctx.settings[Number(this.isNode())];
this.labelState = settings.labelState;
this.labelParams = settings.labelParams
},
_getState: function() {
return this.state
},
applyState: function() {
updateTile[Number(this.isNode())](this.tile, this._getState())
}
});
var updateTile = [updateLeaf, updateGroup];
function updateLeaf(content, attrs) {
content.smartAttr(attrs)
}
function updateGroup(content, attrs) {
content.outer.attr({
stroke: attrs.stroke,
"stroke-width": attrs["stroke-width"],
"stroke-opacity": attrs["stroke-opacity"]
});
content.inner.smartAttr({
fill: attrs.fill,
opacity: attrs.opacity,
hatching: attrs.hatching
})
}
module.exports = Node;