devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
135 lines (132 loc) • 4.88 kB
JavaScript
/**
* DevExtreme (viz/sankey/link_item.js)
* Version: 18.2.18
* Build date: Tue Oct 18 2022
*
* Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
var _constants = require("./constants");
var states = ["normal", "adjacentNodeHover", "hover"],
isDefined = require("../../core/utils/type").isDefined;
function compileAttrs(color, itemOptions, itemBaseOptions, gradient) {
var border = itemOptions.border,
baseBorder = itemBaseOptions.border,
borderVisible = isDefined(border.visible) ? border.visible : baseBorder.visible,
borderWidth = isDefined(border.width) ? border.width : baseBorder.width,
borderOpacity = isDefined(border.opacity) ? border.opacity : isDefined(baseBorder.opacity) ? baseBorder.opacity : 1,
opacity = isDefined(itemOptions.opacity) ? itemOptions.opacity : isDefined(itemBaseOptions.opacity) ? itemBaseOptions.opacity : 1,
fill = itemOptions.color || color;
if (itemBaseOptions.colorMode === _constants.COLOR_MODE_TARGET || itemBaseOptions.colorMode === _constants.COLOR_MODE_SOURCE) {
fill = color
} else {
if (itemBaseOptions.colorMode === _constants.COLOR_MODE_GRADIENT && gradient && isDefined(gradient.id)) {
fill = gradient.id
}
}
return {
fill: fill,
"stroke-width": borderVisible ? borderWidth : 0,
stroke: itemOptions.border.color || itemBaseOptions.border.color,
"stroke-opacity": borderOpacity,
opacity: opacity,
hatching: itemOptions.hatching
}
}
function Link(widget, params) {
var that = this,
widgetOffset = widget._renderer.getRootOffset();
that.code = 0;
that.widget = widget;
that.color = params.color;
that.connection = params.connection;
that.d = params.d;
that.options = params.options;
that.boundingRect = params.boundingRect, that.coords = {
x: params.boundingRect.x + params.boundingRect.width / 2 + widgetOffset.left,
y: params.boundingRect.y + params.boundingRect.height / 2 + widgetOffset.top
};
that.states = {
normal: compileAttrs(that.color, that.options, that.options, params.gradient),
adjacentNodeHover: compileAttrs(that.color, {
opacity: 0,
border: {}
}, that.options, params.gradient),
hover: compileAttrs(that.color, {
opacity: 0,
border: {}
}, that.options, params.gradient)
};
that.overlayStates = {
normal: compileAttrs(that.color, {
opacity: 0,
border: {}
}, that.options),
adjacentNodeHover: compileAttrs(that.color, that.options.hoverStyle, that.options),
hover: compileAttrs(that.color, that.options.hoverStyle, that.options)
}
}
Link.prototype = {
getState: function() {
return states[this.code]
},
isHovered: function() {
return 2 === this.code
},
isAdjacentNodeHovered: function() {
return 1 === this.code
},
setState: function(code, state) {
if (state) {
this.code = code
} else {
this.code = 0;
this.hideTooltip()
}
this.widget._applyLinksAppearance()
},
setHover: function() {
this.hover(true)
},
hover: function(state) {
if (!this.widget._getOption("hoverEnabled", true) || state === this.isHovered()) {
return
}
this.widget._suspend();
state && this.widget.clearHover();
this.setState(2, state);
this.widget._eventTrigger("linkHoverChanged", {
target: this
});
this.widget._resume()
},
adjacentNodeHover: function(state) {
if (!this.widget._getOption("hoverEnabled", true) || state === this.isAdjacentNodeHovered()) {
return
}
this.widget._suspend();
this.setState(1, state);
this.widget._resume()
},
setAdjacentNodeHover: function() {
this.adjacentNodeHover(true)
},
showTooltip: function(coords) {
this.widget._getOption("hoverEnabled", true) && this.widget._tooltip && this.widget._tooltip.show({
type: "link",
info: {
source: this.connection.source,
target: this.connection.target,
weight: this.connection.weight
}
}, "undefined" !== typeof coords ? {
x: coords[0],
y: coords[1]
} : this.coords)
},
hideTooltip: function() {
this.widget._tooltip && this.widget._tooltip.hide()
}
};
module.exports = Link;