2022-01-08 01:49:35 +00:00
|
|
|
import { Graph, utils, constants, RubberBandHandler } from '@maxgraph/core';
|
2021-04-25 03:39:40 +00:00
|
|
|
|
|
|
|
import { globalTypes } from '../.storybook/preview';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Styles/DynamicStyle',
|
|
|
|
argTypes: {
|
|
|
|
...globalTypes,
|
|
|
|
rubberBand: {
|
|
|
|
type: 'boolean',
|
2021-08-30 14:20:26 +00:00
|
|
|
defaultValue: true,
|
|
|
|
},
|
|
|
|
},
|
2021-04-25 03:39:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const Template = ({ label, ...args }) => {
|
|
|
|
const container = document.createElement('div');
|
|
|
|
container.style.position = 'relative';
|
|
|
|
container.style.overflow = 'hidden';
|
|
|
|
container.style.width = `${args.width}px`;
|
|
|
|
container.style.height = `${args.height}px`;
|
|
|
|
container.style.background = 'url(/images/grid.gif)';
|
|
|
|
container.style.cursor = 'default';
|
|
|
|
|
|
|
|
// Creates the graph inside the given container
|
2021-08-30 14:20:26 +00:00
|
|
|
const graph = new Graph(container);
|
2021-04-25 03:39:40 +00:00
|
|
|
|
|
|
|
// Disables moving of edge labels in this examples
|
|
|
|
graph.edgeLabelsMovable = false;
|
|
|
|
|
|
|
|
// Enables rubberband selection
|
2022-01-08 01:49:35 +00:00
|
|
|
if (args.rubberBand) new RubberBandHandler(graph);
|
2021-04-25 03:39:40 +00:00
|
|
|
|
|
|
|
// Needs to set a flag to check for dynamic style changes,
|
|
|
|
// that is, changes to styles on cells where the style was
|
|
|
|
// not explicitely changed using mxStyleChange
|
|
|
|
graph.getView().updateStyle = true;
|
|
|
|
|
2021-08-30 14:20:26 +00:00
|
|
|
// Overrides Cell.getStyle to return a specific style
|
2021-04-25 03:39:40 +00:00
|
|
|
// for edges that reflects their target terminal (in this case
|
|
|
|
// the strokeColor will be equal to the target's fillColor).
|
|
|
|
|
2021-08-30 14:20:26 +00:00
|
|
|
const getStyle = function () {
|
2021-04-25 03:39:40 +00:00
|
|
|
// TODO super cannot be used here
|
|
|
|
// let style = super.getStyle();
|
2022-04-17 06:58:35 +00:00
|
|
|
let style = {};
|
2021-04-25 03:39:40 +00:00
|
|
|
|
|
|
|
if (this.isEdge()) {
|
|
|
|
const target = this.getTerminal(false);
|
|
|
|
|
|
|
|
if (target != null) {
|
|
|
|
const targetStyle = graph.getCurrentCellStyle(target);
|
2021-08-30 14:20:26 +00:00
|
|
|
const fill = utils.getValue(targetStyle, 'fillColor');
|
2021-04-25 03:39:40 +00:00
|
|
|
|
|
|
|
if (fill != null) {
|
2022-04-17 06:58:35 +00:00
|
|
|
style.strokeColor = fill;
|
2021-04-25 03:39:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (this.isVertex()) {
|
|
|
|
const geometry = this.getGeometry();
|
|
|
|
if (geometry != null && geometry.width > 80) {
|
2022-04-17 06:58:35 +00:00
|
|
|
style.fillColor = 'green';
|
2021-04-25 03:39:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return style;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Gets the default parent for inserting new cells. This
|
|
|
|
// is normally the first child of the root (ie. layer 0).
|
|
|
|
const parent = graph.getDefaultParent();
|
|
|
|
|
|
|
|
// Adds cells to the model in a single step
|
|
|
|
graph.batchUpdate(() => {
|
|
|
|
const v1 = graph.insertVertex({
|
|
|
|
parent,
|
|
|
|
value: 'Hello,',
|
|
|
|
position: [20, 20],
|
|
|
|
size: [80, 30],
|
2022-04-17 06:58:35 +00:00
|
|
|
style: { fillColor: 'green' },
|
2021-04-25 03:39:40 +00:00
|
|
|
});
|
|
|
|
v1.getStyle = getStyle;
|
|
|
|
|
|
|
|
const v2 = graph.insertVertex({
|
|
|
|
parent,
|
|
|
|
value: 'World!',
|
|
|
|
position: [200, 150],
|
|
|
|
size: [80, 30],
|
2022-04-17 06:58:35 +00:00
|
|
|
style: { fillColor: 'blue' },
|
2021-04-25 03:39:40 +00:00
|
|
|
});
|
|
|
|
v2.getStyle = getStyle;
|
|
|
|
|
|
|
|
const v3 = graph.insertVertex({
|
|
|
|
parent,
|
|
|
|
value: 'World!',
|
|
|
|
position: [20, 150],
|
|
|
|
size: [80, 30],
|
2022-04-17 06:58:35 +00:00
|
|
|
style: { fillColor: 'red' },
|
2021-04-25 03:39:40 +00:00
|
|
|
});
|
|
|
|
v3.getStyle = getStyle;
|
|
|
|
|
|
|
|
const e1 = graph.insertEdge({
|
|
|
|
parent,
|
|
|
|
value: 'Connect',
|
|
|
|
source: v1,
|
|
|
|
target: v2,
|
2022-04-17 06:58:35 +00:00
|
|
|
style: {
|
|
|
|
perimeterSpacing: 4,
|
|
|
|
strokeWidth: 4,
|
|
|
|
labelBackgroundColor: 'white',
|
|
|
|
fontStyle: 1,
|
|
|
|
},
|
2021-04-25 03:39:40 +00:00
|
|
|
});
|
|
|
|
e1.getStyle = getStyle;
|
|
|
|
});
|
|
|
|
|
|
|
|
return container;
|
2021-08-30 14:20:26 +00:00
|
|
|
};
|
2021-04-25 03:39:40 +00:00
|
|
|
|
2021-08-30 14:20:26 +00:00
|
|
|
export const Default = Template.bind({});
|