Open ganesh-sankey opened 6 years ago
I can confirm the same behavior w/ smart routing enabled
How have you solved your filing problems ?
I met the same problem as you
I'm facing the same problem on custom node, if the board has any default node this issue not happen, but ther are only default node and without any link, this error has been thrown
Any solution for this? @quocvan1311 @unsafecode @gothy @ganesh-sankey
Same behavior.
added engine.recalculatePortsVisually();
before this.forceUpdate();
on onDrop
event. Worked for me with version 5.2.1
@AnderLuiz Thanks mate, it worked like a charm! 👍
@AnderLuiz, @renjithkathirolil could you please explain where did you set engine.recalculatePortsVisually()?
@frank-martinez-27 , before this line
this.props.app.getDiagramEngine().recalculatePortsVisually()
@AnderLuiz Thank you! :) In my app I put it in the render function of the App component (before passing the engine to the component that displays the diagram) and it worked
In demo drag -and-drop(large application) example, If smart routing is enabled for DiagramWidget and user tried to drag and drop Node from side menu to workspacepanel area (diagram widget area/graph area), it throughs error in console as Uncaught TypeError: Cannot read property 'x' of undefined in at DiagramEngine._this.calculateMatrixDimensions
This occurs only if smart routing is enabled for DiagramWidget and there is no Node/Link/Port drawn on that DigramWidget, then drag and drop the Node from side panel and try to move around workspacel area.
Steps to reproduce:
Go to file: .demos/demo-drag-and-drop/Application.ts
From that file remove the code that create default nodes, links and ports i.e
Go to file Go to file: .demos/demo-drag-and-drop/components/BodyWidget.tsx
From that file, add property to DiagramWidget to enable smart routing
<DiagramWidget className="srd-demo-canvas" diagramEngine={this.props.app.getDiagramEngine()} smartRouting={true} />
Run the project. ie. npm run storybook.
On application, under Advance Techniques-> Large application, try to drag In Node from side panel inside DiagramWidget then move around that In Node within area. Look inside console of browser, you will found the same error.