This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. See the Extensions intro page for more information.
Constructs a PortShiftingTool and sets the name for the tool.
Optional
init: Partial<PortShiftingTool>Override
canThis tool can only start if the mouse has moved enough so that it is not a click, and if the mouse down point is on a GraphObject "port" in a Spot Panel, as determined by findPort.
Override
doStart a transaction, call findPort and remember it as the "port" property, and remember the original value for the port's go.GraphObject.alignment property.
Override
doOverride
doOverride
doDuring the drag, call updateAlignment in order to set the go.GraphObject.alignment of the port.
Override
doOverride
doFrom the go.GraphObject at the mouse point, search up the visual tree until we get to an object that has the go.GraphObject.portId property set to a non-empty string, that is in a Spot Panel, and that is not the main element of the panel (typically the first element).
This returns null if no such port is at the mouse down point.
Save the port's go.GraphObject.alignment as a fractional Spot in the Spot Panel that the port is in. Thus if the main element changes size, the relative positions of the ports will be maintained. But that does assume that the port must remain inside the main element -- it cannot wander away from the node. This does not modify the port's go.GraphObject.alignmentFocus property.
The port being shifted.
The PortShiftingTool class lets a user move a port on a go.Node.
This tool only works when the Node has a port (any GraphObject) marked with a non-null and non-empty portId that is positioned in a Spot Panel, and the user holds down the Shift key. It works by modifying that port's go.GraphObject.alignment property.
If you want to experiment with this extension, try the Port Shifting sample.