@teambit/graph 1.0.267 → 1.0.269

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/graph",
3
- "version": "1.0.267",
3
+ "version": "1.0.269",
4
4
  "homepage": "https://bit.cloud/teambit/component/graph",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "graph",
9
- "version": "1.0.267"
9
+ "version": "1.0.269"
10
10
  },
11
11
  "dependencies": {
12
12
  "graphlib": "2.1.8",
@@ -14,35 +14,35 @@
14
14
  "chalk": "2.4.2",
15
15
  "graphql-tag": "2.12.1",
16
16
  "classnames": "2.2.6",
17
- "react-flow-renderer": "8.3.7",
17
+ "reactflow": "^11.11.3",
18
+ "@dagrejs/dagre": "^1.1.2",
18
19
  "semver": "7.5.2",
19
- "dagre": "0.8.5",
20
20
  "@teambit/component-id": "1.2.0",
21
21
  "@teambit/graph.cleargraph": "0.0.8",
22
22
  "@teambit/harmony": "0.4.6",
23
23
  "@teambit/component.ui.component-compare.models.component-compare-change-type": "0.0.7",
24
- "@teambit/base-ui.routing.nav-link": "1.0.0",
25
24
  "@teambit/base-ui.surfaces.card": "1.0.1",
26
25
  "@teambit/base-ui.text.muted-text": "1.0.1",
27
26
  "@teambit/component.ui.deprecation-icon": "0.0.509",
28
27
  "@teambit/design.ui.styles.ellipsis": "0.0.357",
28
+ "@teambit/base-ui.routing.nav-link": "1.0.0",
29
+ "@teambit/evangelist.input.checkbox.label": "1.0.3",
30
+ "@teambit/design.ui.pages.not-found": "0.0.371",
31
+ "@teambit/design.ui.pages.server-error": "0.0.368",
32
+ "@teambit/documenter.ui.heading": "4.1.1",
33
+ "@teambit/ui-foundation.ui.full-loader": "0.0.500",
29
34
  "@teambit/design.ui.round-loader": "0.0.355",
30
35
  "@teambit/component.ui.component-compare.status-resolver": "0.0.9",
31
36
  "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.505",
32
37
  "@teambit/ui-foundation.ui.react-router.use-query": "0.0.501",
33
- "@teambit/evangelist.input.checkbox.label": "1.0.3",
34
- "@teambit/design.ui.pages.not-found": "0.0.366",
35
- "@teambit/design.ui.pages.server-error": "0.0.366",
36
- "@teambit/documenter.ui.heading": "4.1.1",
37
- "@teambit/ui-foundation.ui.full-loader": "0.0.500",
38
- "@teambit/component": "1.0.267",
39
- "@teambit/cli": "0.0.864",
38
+ "@teambit/component": "1.0.269",
39
+ "@teambit/cli": "0.0.865",
40
40
  "@teambit/toolbox.string.random": "0.0.1",
41
- "@teambit/component.ui.component-compare.models.component-compare-props": "0.0.105",
42
- "@teambit/graphql": "1.0.267",
43
- "@teambit/logger": "0.0.957",
44
- "@teambit/component-compare": "1.0.267",
45
- "@teambit/ui": "1.0.267",
41
+ "@teambit/component.ui.component-compare.models.component-compare-props": "0.0.109",
42
+ "@teambit/graphql": "1.0.269",
43
+ "@teambit/logger": "0.0.958",
44
+ "@teambit/component-compare": "1.0.269",
45
+ "@teambit/ui": "1.0.269",
46
46
  "@teambit/component.modules.component-url": "0.0.167",
47
47
  "@teambit/envs.ui.env-icon": "0.0.505",
48
48
  "@teambit/component.ui.component-compare.context": "0.0.118"
@@ -52,7 +52,6 @@
52
52
  "@types/lodash": "4.14.165",
53
53
  "@types/classnames": "2.2.11",
54
54
  "@types/semver": "7.3.4",
55
- "@types/dagre": "0.7.44",
56
55
  "@types/mocha": "9.1.0",
57
56
  "chai": "4.3.0",
58
57
  "@teambit/harmony.envs.core-aspect-env": "0.0.33"
@@ -8,11 +8,11 @@ import ReactFlow, {
8
8
  Handle,
9
9
  MiniMap,
10
10
  NodeProps,
11
- NodeTypesType,
12
- OnLoadParams,
11
+ NodeTypes,
13
12
  Position,
14
13
  ReactFlowProvider,
15
- } from 'react-flow-renderer';
14
+ ReactFlowInstance,
15
+ } from 'reactflow';
16
16
  import { useGraphQuery } from '../query';
17
17
  import { GraphFilter } from '../../model/graph-filters';
18
18
  import { GraphFilters, styles as graphPageStyles } from '../graph-page';
@@ -23,8 +23,7 @@ import { diffGraph } from './diff-graph';
23
23
 
24
24
  function ComponentNodeContainer(props: NodeProps) {
25
25
  const { sourcePosition = Position.Top, targetPosition = Position.Bottom, data, id } = props;
26
- // @todo - this will be fixed as part of the react-flow-renderer v10 upgrade
27
- const ReactFlowHandle = Handle as any;
26
+ const ReactFlowHandle = Handle;
28
27
  return (
29
28
  <div key={id}>
30
29
  <ReactFlowHandle type="target" position={targetPosition} isConnectable={false} />
@@ -34,10 +33,9 @@ function ComponentNodeContainer(props: NodeProps) {
34
33
  );
35
34
  }
36
35
 
37
- const NodeTypes: NodeTypesType = { ComponentNode: ComponentNodeContainer };
38
-
39
36
  export function DependenciesCompare() {
40
- const graphRef = useRef<OnLoadParams>();
37
+ const nodeTypes: NodeTypes = React.useMemo(() => ({ ComponentNode: ComponentNodeContainer }), []);
38
+ const graphRef = useRef<ReactFlowInstance>();
41
39
  const componentCompare = useComponentCompare();
42
40
 
43
41
  const baseId = componentCompare?.base?.model.id;
@@ -54,18 +52,27 @@ export function DependenciesCompare() {
54
52
  useEffect(() => () => (graphRef.current = undefined), []);
55
53
 
56
54
  useEffect(() => {
57
- graphRef.current?.fitView();
58
- }, [elements]);
55
+ setTimeout(() => {
56
+ if (graph && graph.nodes.length <= 3)
57
+ return graphRef.current?.fitView({
58
+ padding: 2,
59
+ });
60
+ return graphRef.current?.fitView();
61
+ }, 0);
62
+ }, [graph]);
59
63
 
60
64
  const handleLoad = useCallback(
61
- (instance: OnLoadParams) => {
65
+ (instance: ReactFlowInstance) => {
62
66
  graphRef.current = instance;
63
67
  if ((graph?.nodes.length ?? 0) <= 3) {
64
68
  graphRef.current?.fitView({
65
69
  padding: 2,
70
+ maxZoom: 1,
66
71
  });
67
72
  } else {
68
- instance.fitView();
73
+ instance.fitView({
74
+ maxZoom: 1,
75
+ });
69
76
  }
70
77
  },
71
78
  [graph?.nodes.length]
@@ -85,7 +92,7 @@ export function DependenciesCompare() {
85
92
  setFilter(_isFiltered ? 'runtimeOnly' : undefined);
86
93
  };
87
94
 
88
- if (!loading && (!baseGraph || !compareGraph)) {
95
+ if (!loading && !graph) {
89
96
  return <></>;
90
97
  }
91
98
 
@@ -96,32 +103,38 @@ export function DependenciesCompare() {
96
103
  <RoundLoader />
97
104
  </div>
98
105
  )}
99
- <ReactFlowProvider>
100
- <ReactFlow
101
- draggable={false}
102
- nodesDraggable={true}
103
- selectNodesOnDrag={false}
104
- nodesConnectable={false}
105
- zoomOnDoubleClick={false}
106
- elementsSelectable={false}
107
- maxZoom={100}
108
- minZoom={0}
109
- className={dependenciesGraphStyles.graph}
110
- elements={elements}
111
- nodeTypes={NodeTypes}
112
- onLoad={handleLoad}
113
- >
114
- <Background />
115
- <Controls className={dependenciesGraphStyles.controls} />
116
- <MiniMap nodeColor={calcMinimapColors} className={dependenciesGraphStyles.minimap} />
117
- <GraphFilters
118
- className={graphPageStyles.filters}
119
- disable={loading}
120
- isFiltered={isFiltered}
121
- onChangeFilter={onCheckFilter}
122
- />
123
- </ReactFlow>
124
- </ReactFlowProvider>
106
+ {!loading && (
107
+ <ReactFlowProvider>
108
+ <ReactFlow
109
+ draggable={false}
110
+ nodesDraggable={true}
111
+ selectNodesOnDrag={false}
112
+ nodesConnectable={false}
113
+ zoomOnDoubleClick={false}
114
+ elementsSelectable={false}
115
+ maxZoom={100}
116
+ minZoom={0}
117
+ className={dependenciesGraphStyles.graph}
118
+ defaultNodes={elements.nodes}
119
+ defaultEdges={elements.edges}
120
+ nodeTypes={nodeTypes}
121
+ onInit={handleLoad}
122
+ proOptions={{
123
+ hideAttribution: true,
124
+ }}
125
+ >
126
+ <Background />
127
+ <Controls className={dependenciesGraphStyles.controls} />
128
+ <MiniMap nodeColor={calcMinimapColors} className={dependenciesGraphStyles.minimap} />
129
+ <GraphFilters
130
+ className={graphPageStyles.filters}
131
+ disable={loading}
132
+ isFiltered={isFiltered}
133
+ onChangeFilter={onCheckFilter}
134
+ />
135
+ </ReactFlow>
136
+ </ReactFlowProvider>
137
+ )}
125
138
  </div>
126
139
  );
127
140
  }
@@ -1,5 +1,5 @@
1
1
  import { useMemo } from 'react';
2
- import { ArrowHeadType, Edge, Node } from 'react-flow-renderer';
2
+ import { MarkerType, Edge, Node } from 'reactflow';
3
3
  import { ComponentID } from '@teambit/component';
4
4
  import { calcLayout } from './calc-layout';
5
5
  import { EdgeModel, GraphModel, NodeModel } from '../query';
@@ -13,9 +13,12 @@ type ElementsOptions = {
13
13
  /**
14
14
  * generate Nodes and Edges for the ReactFlowRenderer graph renderer
15
15
  */
16
- export function calcElements(graph: GraphModel<NodeModel, EdgeModel> | undefined, { rootNode }: ElementsOptions) {
16
+ export function calcElements(
17
+ graph: GraphModel<NodeModel, EdgeModel> | undefined,
18
+ { rootNode }: ElementsOptions
19
+ ): { nodes: Node[]; edges: Edge[] } {
17
20
  return useMemo(() => {
18
- if (!graph) return [];
21
+ if (!graph) return { nodes: [], edges: [] };
19
22
 
20
23
  const positions = calcLayout(graph);
21
24
 
@@ -39,9 +42,12 @@ export function calcElements(graph: GraphModel<NodeModel, EdgeModel> | undefined
39
42
  labelBgPadding: [4, 4],
40
43
  type: 'smoothstep',
41
44
  className: depTypeToClass(e.dependencyLifecycleType),
42
- arrowHeadType: ArrowHeadType.Arrow,
45
+ arrowHeadType: MarkerType.Arrow,
46
+ markerEnd: {
47
+ type: MarkerType.Arrow,
48
+ },
43
49
  }));
44
50
 
45
- return [...nodes, ...edges];
51
+ return { nodes, edges };
46
52
  }, [graph]);
47
53
  }
@@ -1,22 +1,29 @@
1
- import dagre, { graphlib } from 'dagre';
1
+ import dagre, { graphlib } from '@dagrejs/dagre';
2
2
  import { EdgeModel, GraphModel, NodeModel } from '../query';
3
3
 
4
4
  const NODE_WIDTH = 260;
5
5
  const NODE_HEIGHT = 90;
6
6
 
7
- const BOTTOM_TO_TOP = 'BT';
7
+ const TOP_TO_BOTTOM = 'TB';
8
8
 
9
9
  /**
10
10
  * calculate the specific location of each node in the graph
11
11
  */
12
12
  export function calcLayout(graph: GraphModel<NodeModel, EdgeModel>) {
13
13
  const g = new graphlib.Graph();
14
- g.setGraph({ rankdir: BOTTOM_TO_TOP });
14
+ g.setGraph({
15
+ rankdir: TOP_TO_BOTTOM,
16
+ nodesep: 25,
17
+ ranksep: 100,
18
+ edgesep: 100,
19
+ ranker: 'longest-path',
20
+ acyclicer: 'greedy',
21
+ });
15
22
  g.setDefaultEdgeLabel(() => ({}));
16
23
 
17
24
  // make a new instance of { width, height } per node, or dagre will get confused and place all nodes in the same spot
18
- graph.nodes.forEach((n) => g.setNode(n.id, { width: NODE_WIDTH, height: NODE_HEIGHT }));
19
- graph.edges.forEach((e) => g.setEdge({ v: e.sourceId, w: e.targetId }));
25
+ graph.nodes.forEach((n) => g.setNode(n.id, { ...n, width: NODE_WIDTH, height: NODE_HEIGHT }));
26
+ graph.edges.forEach((e) => g.setEdge(e.sourceId, e.targetId));
20
27
 
21
28
  // position items in graph
22
29
  dagre.layout(g);
@@ -6,27 +6,25 @@ import ReactFlow, {
6
6
  Handle,
7
7
  MiniMap,
8
8
  NodeProps,
9
- NodeTypesType,
10
- OnLoadParams,
9
+ NodeTypes,
10
+ ReactFlowInstance,
11
11
  Position,
12
12
  ReactFlowProps,
13
13
  ReactFlowProvider,
14
- } from 'react-flow-renderer';
14
+ } from 'reactflow';
15
15
  import { ComponentID } from '@teambit/component';
16
-
17
16
  import { ComponentWidgetSlot } from '../../graph.ui.runtime';
18
17
  import { ComponentNode } from '../component-node';
19
18
  import { EdgeModel, GraphModel, NodeModel } from '../query';
20
19
  import { calcElements } from './calc-elements';
21
20
  import { calcMinimapColors } from './minimap';
22
21
  import { ComponentGraphContext } from './graph-context';
23
-
22
+ import 'reactflow/dist/style.css';
24
23
  import styles from './dependencies-graph.module.scss';
25
24
 
26
25
  function ComponentNodeContainer(props: NodeProps) {
27
26
  const { sourcePosition = Position.Top, targetPosition = Position.Bottom, data, id } = props;
28
- // @todo - this will be fixed as part of the react-flow-renderer v10 upgrade
29
- const ReactFlowHandle = Handle as any;
27
+ const ReactFlowHandle = Handle;
30
28
  return (
31
29
  <div key={id}>
32
30
  <ReactFlowHandle type="target" position={targetPosition} isConnectable={false} />
@@ -36,14 +34,11 @@ function ComponentNodeContainer(props: NodeProps) {
36
34
  );
37
35
  }
38
36
 
39
- // @ts-ignore - incorrect NodeTypes https://github.com/wbkd/react-flow/issues/2101 (#5746)
40
- const NodeTypes: NodeTypesType = { ComponentNode: ComponentNodeContainer };
41
-
42
37
  export type DependenciesGraphProps = {
43
38
  rootNode: ComponentID;
44
39
  graph: GraphModel<NodeModel, EdgeModel>;
45
40
  componentWidgets: ComponentWidgetSlot;
46
- onLoad?: (instance: OnLoadParams) => void;
41
+ onLoad?: (instance: ReactFlowInstance) => void;
47
42
  } & Omit<ReactFlowProps, 'elements'>;
48
43
 
49
44
  export function DependenciesGraph({
@@ -55,18 +50,23 @@ export function DependenciesGraph({
55
50
  children,
56
51
  ...rest
57
52
  }: DependenciesGraphProps) {
58
- const graphRef = useRef<OnLoadParams>();
53
+ const nodeTypes: NodeTypes = React.useMemo(() => ({ ComponentNode: ComponentNodeContainer }), []);
54
+ const graphRef = useRef<ReactFlowInstance>();
59
55
  const elements = calcElements(graph, { rootNode });
56
+
60
57
  const context = useMemo(() => ({ componentWidgets }), [componentWidgets]);
61
58
 
62
59
  const handleLoad = useCallback(
63
- (instance: OnLoadParams) => {
60
+ (instance: ReactFlowInstance) => {
64
61
  if ((graph?.nodes.length ?? 0) <= 3) {
65
62
  instance.fitView({
66
63
  padding: 2,
64
+ maxZoom: 1,
67
65
  });
68
66
  } else {
69
- instance.fitView();
67
+ instance.fitView({
68
+ maxZoom: 1,
69
+ });
70
70
  }
71
71
  onLoad?.(instance);
72
72
  },
@@ -101,9 +101,13 @@ export function DependenciesGraph({
101
101
  minZoom={0}
102
102
  {...rest}
103
103
  className={classnames(styles.graph, className)}
104
- elements={elements}
105
- nodeTypes={NodeTypes}
106
- onLoad={handleLoad}
104
+ defaultNodes={elements.nodes}
105
+ defaultEdges={elements.edges}
106
+ nodeTypes={nodeTypes}
107
+ onInit={handleLoad}
108
+ proOptions={{
109
+ hideAttribution: true,
110
+ }}
107
111
  >
108
112
  <Background />
109
113
  <Controls className={styles.controls} />
@@ -1,4 +1,4 @@
1
- import { Node } from 'react-flow-renderer';
1
+ import { Node } from 'reactflow';
2
2
  import { rootNodeColor, defaultNodeColor, externalNodeColor } from '../component-node';
3
3
 
4
4
  export function calcMinimapColors(node: Node) {