-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure we do not return an invalid anchor point during edge routing (#…
…325) * Ensure we do not return an invalid anchor point during edge routing Fixes eclipse-glsp/glsp#1270
- Loading branch information
1 parent
1f803d1
commit c4764a5
Showing
5 changed files
with
141 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2024 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import { Point } from '@eclipse-glsp/protocol'; | ||
import { injectable } from 'inversify'; | ||
import { | ||
SConnectableElementImpl, | ||
SParentElementImpl, | ||
SRoutableElementImpl, | ||
AbstractEdgeRouter as SprottyAbstractEdgeRouter, | ||
BezierEdgeRouter as SprottyBezierEdgeRouter, | ||
ManhattanEdgeRouter as SprottyManhattanEdgeRouter, | ||
PolylineEdgeRouter as SprottyPolylineEdgeRouter | ||
} from 'sprotty'; | ||
import { GConnectableElement, GParentElement, GRoutableElement } from './re-exports'; | ||
|
||
@injectable() | ||
export abstract class AbstractEdgeRouter extends SprottyAbstractEdgeRouter { | ||
override getTranslatedAnchor( | ||
connectable: SConnectableElementImpl, | ||
refPoint: Point, | ||
refContainer: SParentElementImpl, | ||
edge: SRoutableElementImpl, | ||
anchorCorrection?: number | undefined | ||
): Point { | ||
// users may define all kinds of anchors and anchor computers, we want to make sure we return a valid one in any case | ||
const anchor = super.getTranslatedAnchor(connectable, refPoint, refContainer, edge, anchorCorrection); | ||
return Point.isValid(anchor) ? anchor : refPoint; | ||
} | ||
} | ||
|
||
@injectable() | ||
export class PolylineEdgeRouter extends SprottyPolylineEdgeRouter { | ||
override getTranslatedAnchor( | ||
connectable: GConnectableElement, | ||
refPoint: Point, | ||
refContainer: GParentElement, | ||
edge: GRoutableElement, | ||
anchorCorrection?: number | undefined | ||
): Point { | ||
// users may define all kinds of anchors and anchor computers, we want to make sure we return a valid one in any case | ||
const anchor = super.getTranslatedAnchor(connectable, refPoint, refContainer, edge, anchorCorrection); | ||
return Point.isValid(anchor) ? anchor : refPoint; | ||
} | ||
} | ||
|
||
@injectable() | ||
export class ManhattanEdgeRouter extends SprottyManhattanEdgeRouter { | ||
override getTranslatedAnchor( | ||
connectable: GConnectableElement, | ||
refPoint: Point, | ||
refContainer: GParentElement, | ||
edge: GRoutableElement, | ||
anchorCorrection?: number | undefined | ||
): Point { | ||
// users may define all kinds of anchors and anchor computers, we want to make sure we return a valid one in any case | ||
const anchor = super.getTranslatedAnchor(connectable, refPoint, refContainer, edge, anchorCorrection); | ||
return Point.isValid(anchor) ? anchor : refPoint; | ||
} | ||
} | ||
|
||
@injectable() | ||
export class BezierEdgeRouter extends SprottyBezierEdgeRouter { | ||
override getTranslatedAnchor( | ||
connectable: GConnectableElement, | ||
refPoint: Point, | ||
refContainer: GParentElement, | ||
edge: GRoutableElement, | ||
anchorCorrection?: number | undefined | ||
): Point { | ||
// users may define all kinds of anchors and anchor computers, we want to make sure we return a valid one in any case | ||
const anchor = super.getTranslatedAnchor(connectable, refPoint, refContainer, edge, anchorCorrection); | ||
return Point.isValid(anchor) ? anchor : refPoint; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2024 EclipseSource and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
/* eslint-disable @typescript-eslint/no-shadow */ | ||
|
||
import { Point } from 'sprotty-protocol/lib/utils/geometry'; | ||
|
||
declare module 'sprotty-protocol/lib/utils/geometry' { | ||
namespace Point { | ||
/** | ||
* Type guard to check if a point is valid. For a point to be valid it needs to be defined and have valid x and y coordinates. | ||
* | ||
* @param point the point to be checked for validity | ||
*/ | ||
function isValid(point?: Point): point is Point; | ||
} | ||
} | ||
|
||
Point.isValid = (point?: Point): point is Point => point !== undefined && !isNaN(point.x) && !isNaN(point.y); | ||
|
||
export { Point }; |