GuidedDraggingTool in 3.0 with Require

We used the Guided-Dragging-Tool in GoJs 2.3.x and it works well. Our base javascript framework is OpenUI5. Now we want to update to GoJs 3.0.1. The update of GoJs works but the Guided-Dragging-Tool can not be loaded anymore.

I downloaded the new Guided-Dragging-Tool for version 3.0.1 and there are now some changes.

The tool is now written as a class before it was written as a function and prototypes.

 function GuidedDraggingTool() {
    go.DraggingTool.call(this);
    ......
}
go.Diagram.inherit(GuidedDraggingTool, go.DraggingTool);
GuidedDraggingTool.prototype.clearGuidelines = function () {
      .......
}

new is now

 class GuidedDraggingTool extends go.DraggingTool {

        constructor(init) {
          super();
          this.name = 'GuidedDragging';
  
        }
  
};

We are using the universal module loader (UMD)

(function (root, factory, name) {
    
    root[name] = factory()[name];
  
}(globalThis, function () {

  .......
    
  return {
    GuidedDraggingTool: GuidedDraggingTool
  }
}, 'GuidedDraggingTool'))

This is not working anymore with a class.

Do you know how we have to load the class with an UMD Loader?

I spend a lot of time but doesn’t find a solution.

I started with a copy of the 2.3 extensionsTS/GuidedDragging.html sample in a new directory. Instead of having the diagram initialization in a separate GuidedDraggingScript file, I just put absolutely minimal code into the HTML script, since for this topic we really don’t care about the sample functionality, as long as it uses an extension class.

<!DOCTYPE html>
<html><body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<script id="code">
  function init() {
    require(["../release/go.js", "./GuidedDraggingTool.js"], function(go, { GuidedDraggingTool }) {
      myDiagram = new go.Diagram("myDiagramDiv");
      myDiagram.toolManager.draggingTool = new GuidedDraggingTool();
      myDiagram.model = new go.GraphLinksModel(
        [
          { key: "Hello" }, { key: "World!" }
        ],
        [
          { from: "Hello", to: "World!" }
        ]);
    });
  }
  window.addEventListener('DOMContentLoaded', init);
</script>

  <div id="sample">
    <!-- The DIV for the Diagram needs an explicit size or else we won't see anything.
       Also add a border to help see the edges. -->
    <div id="myDiagramDiv" style="border: solid 1px black; width:400px; height:400px"></div>
    <p>
      This custom <a>DraggingTool</a> class makes guidelines visible as a Part is dragged around a Diagram and is nearly
      aligned with another Part.
      If a locationObjectName is set, then this aligns <a>Part.locationObject</a>s instead.
      The tool is defined in its own file, as <a href="GuidedDraggingTool.ts" target="_blank">GuidedDraggingTool.ts</a>.
    </p>
    <p>
      Usage can also be seen in the <a href="FloorPlanEditor.html">Floor Plan Editor</a> sample.
    </p>
  </div>
</body></html>

Next I copied the GuidedDraggingTool.ts file from the 3.0.1 create-gojs-kit package (in the extensionsJSM folder, like all of the extension source files) into the same directory. I changed its import statement from:

import * as go from 'gojs';

to be:

import * as go from '../release/go.js';

This is what we document everywhere when we talk about using extensions:

  • copy the extension file into your project
  • update the import/require paths

Then I copied the tsconfig.json file from the extensionsJSM folder and added this option:

    "module": "umd",

And I invoked tsc to compile that GuidedDraggingTool.ts file to UMD for use by require.

Then the GuidedDragging.html sample, shown above, worked.

If you don’t want to deal with TypeScript compilation, just use the resulting .JS file, which I copy here in its entirety. Remember to update all require paths appropriately for your environment.

/*
 *  Copyright (C) 1998-2024 by Northwoods Software Corporation. All Rights Reserved.
 */
(function (factory) {
    if (typeof module === "object" && typeof module.exports === "object") {
        var v = factory(require, exports);
        if (v !== undefined) module.exports = v;
    }
    else if (typeof define === "function" && define.amd) {
        define(["require", "exports", "../release/go.js"], factory);
    }
})(function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.GuidedDraggingTool = void 0;
    /*
     * This is an extension and not part of the main GoJS library.
     * Note that the API for this class may change with any version, even point releases.
     * If you intend to use an extension in production, you should copy the code to your own source directory.
     * Extensions can be found in the GoJS kit under the extensions or extensionsJSM folders.
     * See the Extensions intro page (https://gojs.net/latest/intro/extensions.html) for more information.
     */
    const go = require("../release/go.js");
    /**
     * The GuidedDraggingTool class makes guidelines visible as the parts are dragged around a diagram
     * when the selected part is nearly aligned with another part.
     *
     * If you want to experiment with this extension, try the <a href="../../samples/GuidedDragging.html">Guided Dragging</a> sample.
     * @category Tool Extension
     */
    class GuidedDraggingTool extends go.DraggingTool {
        /**
         * Constructs a GuidedDraggingTool and sets up the temporary guideline parts.
         */
        constructor(init) {
            super();
            this.name = 'GuidedDragging';
            this._guidelineSnapDistance = 6;
            this._isGuidelineEnabled = true;
            this._horizontalGuidelineColor = 'gray';
            this._verticalGuidelineColor = 'gray';
            this._centerGuidelineColor = 'gray';
            this._guidelineWidth = 1;
            this._searchDistance = 1000;
            this._isGuidelineSnapEnabled = true;
            const partProperties = { layerName: 'Tool', isInDocumentBounds: false };
            const shapeProperties = { stroke: 'gray', isGeometryPositioned: true };
            // temporary parts for horizonal guidelines
            this.guidelineHtop = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            this.guidelineHbottom = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            this.guidelineHcenter = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            // temporary parts for vertical guidelines
            this.guidelineVleft = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            this.guidelineVright = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            this.guidelineVcenter = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            if (init)
                Object.assign(this, init);
        }
        /**
         * Gets or sets the margin of error for which guidelines show up.
         *
         * The default value is 6.
         * Guidelines will show up when the aligned nodes are ± 6px away from perfect alignment.
         */
        get guidelineSnapDistance() {
            return this._guidelineSnapDistance;
        }
        set guidelineSnapDistance(val) {
            if (typeof val !== 'number' || isNaN(val) || val < 0)
                throw new Error('new value for GuidedDraggingTool.guidelineSnapDistance must be a non-negative number');
            this._guidelineSnapDistance = val;
        }
        /**
         * Gets or sets whether the guidelines are enabled or disables.
         *
         * The default value is true.
         */
        get isGuidelineEnabled() {
            return this._isGuidelineEnabled;
        }
        set isGuidelineEnabled(val) {
            if (typeof val !== 'boolean')
                throw new Error('new value for GuidedDraggingTool.isGuidelineEnabled must be a boolean value.');
            this._isGuidelineEnabled = val;
        }
        /**
         * Gets or sets the color of horizontal guidelines.
         *
         * The default value is "gray".
         */
        get horizontalGuidelineColor() {
            return this._horizontalGuidelineColor;
        }
        set horizontalGuidelineColor(val) {
            if (this._horizontalGuidelineColor !== val) {
                this._horizontalGuidelineColor = val;
                if (this.guidelineHbottom) {
                    this.guidelineHbottom.elements.first().stroke = this._horizontalGuidelineColor;
                }
                if (this.guidelineHtop) {
                    this.guidelineHtop.elements.first().stroke = this._horizontalGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the color of vertical guidelines.
         *
         * The default value is "gray".
         */
        get verticalGuidelineColor() {
            return this._verticalGuidelineColor;
        }
        set verticalGuidelineColor(val) {
            if (this._verticalGuidelineColor !== val) {
                this._verticalGuidelineColor = val;
                if (this.guidelineVleft) {
                    this.guidelineVleft.elements.first().stroke = this._verticalGuidelineColor;
                }
                if (this.guidelineVright) {
                    this.guidelineVright.elements.first().stroke = this._verticalGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the color of center guidelines.
         *
         * The default value is "gray".
         */
        get centerGuidelineColor() {
            return this._centerGuidelineColor;
        }
        set centerGuidelineColor(val) {
            if (this._centerGuidelineColor !== val) {
                this._centerGuidelineColor = val;
                if (this.guidelineVcenter) {
                    this.guidelineVcenter.elements.first().stroke = this._centerGuidelineColor;
                }
                if (this.guidelineHcenter) {
                    this.guidelineHcenter.elements.first().stroke = this._centerGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the strokeWidth of the guidelines.
         *
         * The default value is 1.
         */
        get guidelineWidth() {
            return this._guidelineWidth;
        }
        set guidelineWidth(val) {
            if (typeof val !== 'number' || isNaN(val) || val < 0)
                throw new Error('New value for GuidedDraggingTool.guidelineWidth must be a non-negative number.');
            if (this._guidelineWidth !== val) {
                this._guidelineWidth = val;
                if (this.guidelineVcenter) {
                    this.guidelineVcenter.elements.first().strokeWidth = val;
                }
                if (this.guidelineHcenter) {
                    this.guidelineHcenter.elements.first().strokeWidth = val;
                }
                if (this.guidelineVleft) {
                    this.guidelineVleft.elements.first().strokeWidth = val;
                }
                if (this.guidelineVright) {
                    this.guidelineVright.elements.first().strokeWidth = val;
                }
                if (this.guidelineHbottom) {
                    this.guidelineHbottom.elements.first().strokeWidth = val;
                }
                if (this.guidelineHtop) {
                    this.guidelineHtop.elements.first().strokeWidth = val;
                }
            }
        }
        /**
         * Gets or sets the distance around the selected part to search for aligned parts.
         *
         * The default value is 1000.
         * Set this to Infinity if you want to search the entire diagram no matter how far away.
         */
        get searchDistance() {
            return this._searchDistance;
        }
        set searchDistance(val) {
            if (typeof val !== 'number' || isNaN(val) || val <= 0)
                throw new Error('new value for GuidedDraggingTool.searchDistance must be a positive number.');
            this._searchDistance = val;
        }
        /**
         * Gets or sets whether snapping to guidelines is enabled.
         *
         * The default value is true.
         */
        get isGuidelineSnapEnabled() {
            return this._isGuidelineSnapEnabled;
        }
        set isGuidelineSnapEnabled(val) {
            if (typeof val !== 'boolean')
                throw new Error('new value for GuidedDraggingTool.isGuidelineSnapEnabled must be a boolean.');
            this._isGuidelineSnapEnabled = val;
        }
        /**
         * Removes all of the guidelines from the grid.
         */
        clearGuidelines() {
            if (this.guidelineHbottom)
                this.diagram.remove(this.guidelineHbottom);
            if (this.guidelineHcenter)
                this.diagram.remove(this.guidelineHcenter);
            if (this.guidelineHtop)
                this.diagram.remove(this.guidelineHtop);
            if (this.guidelineVleft)
                this.diagram.remove(this.guidelineVleft);
            if (this.guidelineVright)
                this.diagram.remove(this.guidelineVright);
            if (this.guidelineVcenter)
                this.diagram.remove(this.guidelineVcenter);
        }
        /**
         * Calls the base method and removes the guidelines from the graph.
         */
        doDeactivate() {
            super.doDeactivate();
            // clear any guidelines when dragging is done
            this.clearGuidelines();
        }
        /**
         * Shows vertical and horizontal guidelines for the dragged part.
         */
        doDragOver(pt, obj) {
            // clear all existing guidelines in case either show... method decides to show a guideline
            this.clearGuidelines();
            // gets the selected part
            const draggingParts = this.copiedParts || this.draggedParts;
            if (draggingParts === null)
                return;
            const partItr = draggingParts.iterator;
            if (partItr.next()) {
                const part = partItr.key;
                this.showHorizontalMatches(part, this.isGuidelineEnabled, false);
                this.showVerticalMatches(part, this.isGuidelineEnabled, false);
            }
        }
        /**
         * On a mouse-up, snaps the selected part to the nearest guideline.
         * If not snapping, the part remains at its position.
         */
        doDropOnto(pt, obj) {
            this.clearGuidelines();
            // gets the selected (perhaps copied) Part
            const draggingParts = this.copiedParts || this.draggedParts;
            if (draggingParts === null)
                return;
            const partItr = draggingParts.iterator;
            if (partItr.next()) {
                const part = partItr.key;
                // snaps only when the mouse is released without shift modifier
                const e = this.diagram.lastInput;
                const snap = this.isGuidelineSnapEnabled && !e.shift;
                this.showHorizontalMatches(part, false, snap); // false means don't show guidelines
                this.showVerticalMatches(part, false, snap);
            }
        }
        /**
         * When nodes are shifted due to being guided upon a drop, make sure all connected link routes are invalidated,
         * since the node is likely to have moved a different amount than all its connected links in the regular
         * operation of the DraggingTool.
         */
        invalidateLinks(node) {
            if (node instanceof go.Node)
                node.invalidateConnectedLinks();
        }
        /**
         * This predicate decides whether or not the given Part should guide the dragged part.
         * @param part -  a stationary Part to which the dragged part might be aligned
         * @param guidedpart -  the Part being dragged
         */
        isGuiding(part, guidedpart) {
            return (part instanceof go.Part &&
                !part.isSelected &&
                !(part instanceof go.Link) &&
                guidedpart instanceof go.Part &&
                part.containingGroup === guidedpart.containingGroup &&
                part.layer !== null &&
                !part.layer.isTemporary);
        }
        /**
         * This finds parts that are aligned near the selected part along horizontal lines. It compares the selected
         * part to all parts within a rectangle approximately twice the {@link searchDistance} wide.
         * The guidelines appear when a part is aligned within a margin-of-error equal to {@link guidelineSnapDistance}.
         * @param part
         * @param guideline - if true, show guideline
         * @param snap - if true, snap the part to where the guideline would be
         */
        showHorizontalMatches(part, guideline, snap) {
            const objBounds = part.locationObject.getDocumentBounds();
            const p0 = objBounds.y;
            const p1 = objBounds.y + objBounds.height / 2;
            const p2 = objBounds.y + objBounds.height;
            const marginOfError = this.guidelineSnapDistance;
            let distance = this.searchDistance;
            if (distance === Infinity)
                distance = this.diagram.documentBounds.width;
            // compares with parts within narrow vertical area
            const area = objBounds.copy();
            area.inflate(distance, marginOfError + 1);
            const otherObjs = this.diagram.findObjectsIn(area, (obj) => obj.part, (p) => this.isGuiding(p, part), true);
            let bestDiff = marginOfError;
            let bestObj = null; // TS 2.6 won't let this be go.Part | null
            let bestSpot = go.Spot.Default;
            let bestOtherSpot = go.Spot.Default;
            // horizontal line -- comparing y-values
            otherObjs.each((other) => {
                if (other === part)
                    return; // ignore itself
                const otherBounds = other.locationObject.getDocumentBounds();
                const q0 = otherBounds.y;
                const q1 = otherBounds.y + otherBounds.height / 2;
                const q2 = otherBounds.y + otherBounds.height;
                // compare center with center of OTHER part
                if (this.guidelineHcenter && Math.abs(p1 - q1) < bestDiff) {
                    bestDiff = Math.abs(p1 - q1);
                    bestObj = other;
                    bestSpot = go.Spot.Center;
                    bestOtherSpot = go.Spot.Center;
                }
                // compare top side with top and bottom sides of OTHER part
                if (this.guidelineHtop && Math.abs(p0 - q0) < bestDiff) {
                    bestDiff = Math.abs(p0 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Top;
                    bestOtherSpot = go.Spot.Top;
                }
                else if (this.guidelineHtop && Math.abs(p0 - q2) < bestDiff) {
                    bestDiff = Math.abs(p0 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Top;
                    bestOtherSpot = go.Spot.Bottom;
                }
                // compare bottom side with top and bottom sides of OTHER part
                if (this.guidelineHbottom && Math.abs(p2 - q0) < bestDiff) {
                    bestDiff = Math.abs(p2 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Bottom;
                    bestOtherSpot = go.Spot.Top;
                }
                else if (this.guidelineHbottom && Math.abs(p2 - q2) < bestDiff) {
                    bestDiff = Math.abs(p2 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Bottom;
                    bestOtherSpot = go.Spot.Bottom;
                }
            });
            if (bestObj !== null) {
                const offsetX = objBounds.x - part.actualBounds.x;
                const offsetY = objBounds.y - part.actualBounds.y;
                const bestBounds = bestObj.locationObject.getDocumentBounds();
                // line extends from x0 to x2
                const x0 = Math.min(objBounds.x, bestBounds.x) - 10;
                const x2 = Math.max(objBounds.x + objBounds.width, bestBounds.x + bestBounds.width) + 10;
                // find bestObj's desired Y
                const bestPoint = new go.Point().setRectSpot(bestBounds, bestOtherSpot);
                if (bestSpot === go.Spot.Center) {
                    if (snap) {
                        // call Part.move in order to automatically move member Parts of Groups
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - objBounds.height / 2 - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHcenter.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHcenter.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHcenter);
                    }
                }
                else if (bestSpot === go.Spot.Top) {
                    if (snap) {
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHtop.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHtop.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHtop);
                    }
                }
                else if (bestSpot === go.Spot.Bottom) {
                    if (snap) {
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - objBounds.height - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHbottom.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHbottom.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHbottom);
                    }
                }
            }
        }
        /**
         * This finds parts that are aligned near the selected part along vertical lines. It compares the selected
         * part to all parts within a rectangle approximately twice the {@link searchDistance} tall.
         * The guidelines appear when a part is aligned within a margin-of-error equal to {@link guidelineSnapDistance}.
         * @param part
         * @param guideline - if true, show guideline
         * @param snap - if true, don't show guidelines but just snap the part to where the guideline would be
         */
        showVerticalMatches(part, guideline, snap) {
            const objBounds = part.locationObject.getDocumentBounds();
            const p0 = objBounds.x;
            const p1 = objBounds.x + objBounds.width / 2;
            const p2 = objBounds.x + objBounds.width;
            const marginOfError = this.guidelineSnapDistance;
            let distance = this.searchDistance;
            if (distance === Infinity)
                distance = this.diagram.documentBounds.height;
            // compares with parts within narrow vertical area
            const area = objBounds.copy();
            area.inflate(marginOfError + 1, distance);
            const otherObjs = this.diagram.findObjectsIn(area, (obj) => obj.part, (p) => this.isGuiding(p, part), true);
            let bestDiff = marginOfError;
            let bestObj = null; // TS 2.6 won't let this be go.Part | null
            let bestSpot = go.Spot.Default;
            let bestOtherSpot = go.Spot.Default;
            // vertical line -- comparing x-values
            otherObjs.each((other) => {
                if (other === part)
                    return; // ignore itself
                const otherBounds = other.locationObject.getDocumentBounds();
                const q0 = otherBounds.x;
                const q1 = otherBounds.x + otherBounds.width / 2;
                const q2 = otherBounds.x + otherBounds.width;
                // compare center with center of OTHER part
                if (this.guidelineVcenter && Math.abs(p1 - q1) < bestDiff) {
                    bestDiff = Math.abs(p1 - q1);
                    bestObj = other;
                    bestSpot = go.Spot.Center;
                    bestOtherSpot = go.Spot.Center;
                }
                // compare left side with left and right sides of OTHER part
                if (this.guidelineVleft && Math.abs(p0 - q0) < bestDiff) {
                    bestDiff = Math.abs(p0 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Left;
                    bestOtherSpot = go.Spot.Left;
                }
                else if (this.guidelineVleft && Math.abs(p0 - q2) < bestDiff) {
                    bestDiff = Math.abs(p0 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Left;
                    bestOtherSpot = go.Spot.Right;
                }
                // compare right side with left and right sides of OTHER part
                if (this.guidelineVright && Math.abs(p2 - q0) < bestDiff) {
                    bestDiff = Math.abs(p2 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Right;
                    bestOtherSpot = go.Spot.Left;
                }
                else if (this.guidelineVright && Math.abs(p2 - q2) < bestDiff) {
                    bestDiff = Math.abs(p2 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Right;
                    bestOtherSpot = go.Spot.Right;
                }
            });
            if (bestObj !== null) {
                const offsetX = objBounds.x - part.actualBounds.x;
                const offsetY = objBounds.y - part.actualBounds.y;
                const bestBounds = bestObj.locationObject.getDocumentBounds();
                // line extends from y0 to y2
                const y0 = Math.min(objBounds.y, bestBounds.y) - 10;
                const y2 = Math.max(objBounds.y + objBounds.height, bestBounds.y + bestBounds.height) + 10;
                // find bestObj's desired X
                const bestPoint = new go.Point().setRectSpot(bestBounds, bestOtherSpot);
                if (bestSpot === go.Spot.Center) {
                    if (snap) {
                        // call Part.move in order to automatically move member Parts of Groups
                        part.move(new go.Point(bestPoint.x - objBounds.width / 2 - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVcenter.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVcenter.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVcenter);
                    }
                }
                else if (bestSpot === go.Spot.Left) {
                    if (snap) {
                        part.move(new go.Point(bestPoint.x - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVleft.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVleft.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVleft);
                    }
                }
                else if (bestSpot === go.Spot.Right) {
                    if (snap) {
                        part.move(new go.Point(bestPoint.x - objBounds.width - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVright.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVright.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVright);
                    }
                }
            }
        }
    }
    exports.GuidedDraggingTool = GuidedDraggingTool;
});

You can diff this compiled-to-UMD code with the code we shipped for ES6 modules to see what’s different for UMD/require.

Thanks a lot Walter. At least I used it on this way.
This is working with SAPUI5

/**
 * This envelop needs UI5 to load the library
 */
(function (root, factory, name) {
    
    root[name] = factory()[name];
  
  }(globalThis, function () {

    /*
    *  Copyright (C) 1998-2024 by Northwoods Software Corporation. All Rights Reserved.
    */
    /*
    * This is an extension and not part of the main GoJS library.
    * Note that the API for this class may change with any version, even point releases.
    * If you intend to use an extension in production, you should copy the code to your own source directory.
    * Extensions can be found in the GoJS kit under the extensions or extensionsJSM folders.
    * See the Extensions intro page (https://gojs.net/latest/intro/extensions.html) for more information.
    */

    /**
     * The GuidedDraggingTool class makes guidelines visible as the parts are dragged around a diagram
     * when the selected part is nearly aligned with another part.
     *
     * If you want to experiment with this extension, try the <a href="../../samples/GuidedDragging.html">Guided Dragging</a> sample.
     * @category Tool Extension
     */
    class GuidedDraggingTool extends go.DraggingTool {
        /**
         * Constructs a GuidedDraggingTool and sets up the temporary guideline parts.
         */
        constructor(init) {
            super();
            this.name = 'GuidedDragging';
            this._guidelineSnapDistance = 6;
            this._isGuidelineEnabled = true;
            this._horizontalGuidelineColor = 'gray';
            this._verticalGuidelineColor = 'gray';
            this._centerGuidelineColor = 'gray';
            this._guidelineWidth = 1;
            this._searchDistance = 1000;
            this._isGuidelineSnapEnabled = true;
            const partProperties = { layerName: 'Tool', isInDocumentBounds: false };
            const shapeProperties = { stroke: 'gray', isGeometryPositioned: true };
            // temporary parts for horizonal guidelines
            this.guidelineHtop = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            this.guidelineHbottom = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            this.guidelineHcenter = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 100 0' }));
            // temporary parts for vertical guidelines
            this.guidelineVleft = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            this.guidelineVright = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            this.guidelineVcenter = new go.Part(partProperties).add(new go.Shape(shapeProperties).set({ geometryString: 'M0 0 0 100' }));
            if (init)
                Object.assign(this, init);
        }
        /**
         * Gets or sets the margin of error for which guidelines show up.
         *
         * The default value is 6.
         * Guidelines will show up when the aligned nodes are ± 6px away from perfect alignment.
         */
        get guidelineSnapDistance() {
            return this._guidelineSnapDistance;
        }
        set guidelineSnapDistance(val) {
            if (typeof val !== 'number' || isNaN(val) || val < 0)
                throw new Error('new value for GuidedDraggingTool.guidelineSnapDistance must be a non-negative number');
            this._guidelineSnapDistance = val;
        }
        /**
         * Gets or sets whether the guidelines are enabled or disables.
         *
         * The default value is true.
         */
        get isGuidelineEnabled() {
            return this._isGuidelineEnabled;
        }
        set isGuidelineEnabled(val) {
            if (typeof val !== 'boolean')
                throw new Error('new value for GuidedDraggingTool.isGuidelineEnabled must be a boolean value.');
            this._isGuidelineEnabled = val;
        }
        /**
         * Gets or sets the color of horizontal guidelines.
         *
         * The default value is "gray".
         */
        get horizontalGuidelineColor() {
            return this._horizontalGuidelineColor;
        }
        set horizontalGuidelineColor(val) {
            if (this._horizontalGuidelineColor !== val) {
                this._horizontalGuidelineColor = val;
                if (this.guidelineHbottom) {
                    this.guidelineHbottom.elements.first().stroke = this._horizontalGuidelineColor;
                }
                if (this.guidelineHtop) {
                    this.guidelineHtop.elements.first().stroke = this._horizontalGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the color of vertical guidelines.
         *
         * The default value is "gray".
         */
        get verticalGuidelineColor() {
            return this._verticalGuidelineColor;
        }
        set verticalGuidelineColor(val) {
            if (this._verticalGuidelineColor !== val) {
                this._verticalGuidelineColor = val;
                if (this.guidelineVleft) {
                    this.guidelineVleft.elements.first().stroke = this._verticalGuidelineColor;
                }
                if (this.guidelineVright) {
                    this.guidelineVright.elements.first().stroke = this._verticalGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the color of center guidelines.
         *
         * The default value is "gray".
         */
        get centerGuidelineColor() {
            return this._centerGuidelineColor;
        }
        set centerGuidelineColor(val) {
            if (this._centerGuidelineColor !== val) {
                this._centerGuidelineColor = val;
                if (this.guidelineVcenter) {
                    this.guidelineVcenter.elements.first().stroke = this._centerGuidelineColor;
                }
                if (this.guidelineHcenter) {
                    this.guidelineHcenter.elements.first().stroke = this._centerGuidelineColor;
                }
            }
        }
        /**
         * Gets or sets the strokeWidth of the guidelines.
         *
         * The default value is 1.
         */
        get guidelineWidth() {
            return this._guidelineWidth;
        }
        set guidelineWidth(val) {
            if (typeof val !== 'number' || isNaN(val) || val < 0)
                throw new Error('New value for GuidedDraggingTool.guidelineWidth must be a non-negative number.');
            if (this._guidelineWidth !== val) {
                this._guidelineWidth = val;
                if (this.guidelineVcenter) {
                    this.guidelineVcenter.elements.first().strokeWidth = val;
                }
                if (this.guidelineHcenter) {
                    this.guidelineHcenter.elements.first().strokeWidth = val;
                }
                if (this.guidelineVleft) {
                    this.guidelineVleft.elements.first().strokeWidth = val;
                }
                if (this.guidelineVright) {
                    this.guidelineVright.elements.first().strokeWidth = val;
                }
                if (this.guidelineHbottom) {
                    this.guidelineHbottom.elements.first().strokeWidth = val;
                }
                if (this.guidelineHtop) {
                    this.guidelineHtop.elements.first().strokeWidth = val;
                }
            }
        }
        /**
         * Gets or sets the distance around the selected part to search for aligned parts.
         *
         * The default value is 1000.
         * Set this to Infinity if you want to search the entire diagram no matter how far away.
         */
        get searchDistance() {
            return this._searchDistance;
        }
        set searchDistance(val) {
            if (typeof val !== 'number' || isNaN(val) || val <= 0)
                throw new Error('new value for GuidedDraggingTool.searchDistance must be a positive number.');
            this._searchDistance = val;
        }
        /**
         * Gets or sets whether snapping to guidelines is enabled.
         *
         * The default value is true.
         */
        get isGuidelineSnapEnabled() {
            return this._isGuidelineSnapEnabled;
        }
        set isGuidelineSnapEnabled(val) {
            if (typeof val !== 'boolean')
                throw new Error('new value for GuidedDraggingTool.isGuidelineSnapEnabled must be a boolean.');
            this._isGuidelineSnapEnabled = val;
        }
        /**
         * Removes all of the guidelines from the grid.
         */
        clearGuidelines() {
            if (this.guidelineHbottom)
                this.diagram.remove(this.guidelineHbottom);
            if (this.guidelineHcenter)
                this.diagram.remove(this.guidelineHcenter);
            if (this.guidelineHtop)
                this.diagram.remove(this.guidelineHtop);
            if (this.guidelineVleft)
                this.diagram.remove(this.guidelineVleft);
            if (this.guidelineVright)
                this.diagram.remove(this.guidelineVright);
            if (this.guidelineVcenter)
                this.diagram.remove(this.guidelineVcenter);
        }
        /**
         * Calls the base method and removes the guidelines from the graph.
         */
        doDeactivate() {
            super.doDeactivate();
            // clear any guidelines when dragging is done
            this.clearGuidelines();
        }
        /**
         * Shows vertical and horizontal guidelines for the dragged part.
         */
        doDragOver(pt, obj) {
            // clear all existing guidelines in case either show... method decides to show a guideline
            this.clearGuidelines();
            // gets the selected part
            const draggingParts = this.copiedParts || this.draggedParts;
            if (draggingParts === null)
                return;
            const partItr = draggingParts.iterator;
            if (partItr.next()) {
                const part = partItr.key;
                this.showHorizontalMatches(part, this.isGuidelineEnabled, false);
                this.showVerticalMatches(part, this.isGuidelineEnabled, false);
            }
        }
        /**
         * On a mouse-up, snaps the selected part to the nearest guideline.
         * If not snapping, the part remains at its position.
         */
        doDropOnto(pt, obj) {
            this.clearGuidelines();
            // gets the selected (perhaps copied) Part
            const draggingParts = this.copiedParts || this.draggedParts;
            if (draggingParts === null)
                return;
            const partItr = draggingParts.iterator;
            if (partItr.next()) {
                const part = partItr.key;
                // snaps only when the mouse is released without shift modifier
                const e = this.diagram.lastInput;
                const snap = this.isGuidelineSnapEnabled && !e.shift;
                this.showHorizontalMatches(part, false, snap); // false means don't show guidelines
                this.showVerticalMatches(part, false, snap);
            }
        }
        /**
         * When nodes are shifted due to being guided upon a drop, make sure all connected link routes are invalidated,
         * since the node is likely to have moved a different amount than all its connected links in the regular
         * operation of the DraggingTool.
         */
        invalidateLinks(node) {
            if (node instanceof go.Node)
                node.invalidateConnectedLinks();
        }
        /**
         * This predicate decides whether or not the given Part should guide the dragged part.
         * @param part -  a stationary Part to which the dragged part might be aligned
         * @param guidedpart -  the Part being dragged
         */
        isGuiding(part, guidedpart) {
            return (part instanceof go.Part &&
                !part.isSelected &&
                !(part instanceof go.Link) &&
                guidedpart instanceof go.Part &&
                part.containingGroup === guidedpart.containingGroup &&
                part.layer !== null &&
                !part.layer.isTemporary);
        }
        /**
         * This finds parts that are aligned near the selected part along horizontal lines. It compares the selected
         * part to all parts within a rectangle approximately twice the {@link searchDistance} wide.
         * The guidelines appear when a part is aligned within a margin-of-error equal to {@link guidelineSnapDistance}.
         * @param part
         * @param guideline - if true, show guideline
         * @param snap - if true, snap the part to where the guideline would be
         */
        showHorizontalMatches(part, guideline, snap) {
            const objBounds = part.locationObject.getDocumentBounds();
            const p0 = objBounds.y;
            const p1 = objBounds.y + objBounds.height / 2;
            const p2 = objBounds.y + objBounds.height;
            const marginOfError = this.guidelineSnapDistance;
            let distance = this.searchDistance;
            if (distance === Infinity)
                distance = this.diagram.documentBounds.width;
            // compares with parts within narrow vertical area
            const area = objBounds.copy();
            area.inflate(distance, marginOfError + 1);
            const otherObjs = this.diagram.findObjectsIn(area, (obj) => obj.part, (p) => this.isGuiding(p, part), true);
            let bestDiff = marginOfError;
            let bestObj = null; // TS 2.6 won't let this be go.Part | null
            let bestSpot = go.Spot.Default;
            let bestOtherSpot = go.Spot.Default;
            // horizontal line -- comparing y-values
            otherObjs.each((other) => {
                if (other === part)
                    return; // ignore itself
                const otherBounds = other.locationObject.getDocumentBounds();
                const q0 = otherBounds.y;
                const q1 = otherBounds.y + otherBounds.height / 2;
                const q2 = otherBounds.y + otherBounds.height;
                // compare center with center of OTHER part
                if (this.guidelineHcenter && Math.abs(p1 - q1) < bestDiff) {
                    bestDiff = Math.abs(p1 - q1);
                    bestObj = other;
                    bestSpot = go.Spot.Center;
                    bestOtherSpot = go.Spot.Center;
                }
                // compare top side with top and bottom sides of OTHER part
                if (this.guidelineHtop && Math.abs(p0 - q0) < bestDiff) {
                    bestDiff = Math.abs(p0 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Top;
                    bestOtherSpot = go.Spot.Top;
                }
                else if (this.guidelineHtop && Math.abs(p0 - q2) < bestDiff) {
                    bestDiff = Math.abs(p0 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Top;
                    bestOtherSpot = go.Spot.Bottom;
                }
                // compare bottom side with top and bottom sides of OTHER part
                if (this.guidelineHbottom && Math.abs(p2 - q0) < bestDiff) {
                    bestDiff = Math.abs(p2 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Bottom;
                    bestOtherSpot = go.Spot.Top;
                }
                else if (this.guidelineHbottom && Math.abs(p2 - q2) < bestDiff) {
                    bestDiff = Math.abs(p2 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Bottom;
                    bestOtherSpot = go.Spot.Bottom;
                }
            });
            if (bestObj !== null) {
                const offsetX = objBounds.x - part.actualBounds.x;
                const offsetY = objBounds.y - part.actualBounds.y;
                const bestBounds = bestObj.locationObject.getDocumentBounds();
                // line extends from x0 to x2
                const x0 = Math.min(objBounds.x, bestBounds.x) - 10;
                const x2 = Math.max(objBounds.x + objBounds.width, bestBounds.x + bestBounds.width) + 10;
                // find bestObj's desired Y
                const bestPoint = new go.Point().setRectSpot(bestBounds, bestOtherSpot);
                if (bestSpot === go.Spot.Center) {
                    if (snap) {
                        // call Part.move in order to automatically move member Parts of Groups
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - objBounds.height / 2 - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHcenter.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHcenter.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHcenter);
                    }
                }
                else if (bestSpot === go.Spot.Top) {
                    if (snap) {
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHtop.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHtop.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHtop);
                    }
                }
                else if (bestSpot === go.Spot.Bottom) {
                    if (snap) {
                        part.move(new go.Point(objBounds.x - offsetX, bestPoint.y - objBounds.height - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineHbottom.position = new go.Point(x0, bestPoint.y);
                        this.guidelineHbottom.elt(0).width = x2 - x0;
                        this.diagram.add(this.guidelineHbottom);
                    }
                }
            }
        }
        /**
         * This finds parts that are aligned near the selected part along vertical lines. It compares the selected
         * part to all parts within a rectangle approximately twice the {@link searchDistance} tall.
         * The guidelines appear when a part is aligned within a margin-of-error equal to {@link guidelineSnapDistance}.
         * @param part
         * @param guideline - if true, show guideline
         * @param snap - if true, don't show guidelines but just snap the part to where the guideline would be
         */
        showVerticalMatches(part, guideline, snap) {
            const objBounds = part.locationObject.getDocumentBounds();
            const p0 = objBounds.x;
            const p1 = objBounds.x + objBounds.width / 2;
            const p2 = objBounds.x + objBounds.width;
            const marginOfError = this.guidelineSnapDistance;
            let distance = this.searchDistance;
            if (distance === Infinity)
                distance = this.diagram.documentBounds.height;
            // compares with parts within narrow vertical area
            const area = objBounds.copy();
            area.inflate(marginOfError + 1, distance);
            const otherObjs = this.diagram.findObjectsIn(area, (obj) => obj.part, (p) => this.isGuiding(p, part), true);
            let bestDiff = marginOfError;
            let bestObj = null; // TS 2.6 won't let this be go.Part | null
            let bestSpot = go.Spot.Default;
            let bestOtherSpot = go.Spot.Default;
            // vertical line -- comparing x-values
            otherObjs.each((other) => {
                if (other === part)
                    return; // ignore itself
                const otherBounds = other.locationObject.getDocumentBounds();
                const q0 = otherBounds.x;
                const q1 = otherBounds.x + otherBounds.width / 2;
                const q2 = otherBounds.x + otherBounds.width;
                // compare center with center of OTHER part
                if (this.guidelineVcenter && Math.abs(p1 - q1) < bestDiff) {
                    bestDiff = Math.abs(p1 - q1);
                    bestObj = other;
                    bestSpot = go.Spot.Center;
                    bestOtherSpot = go.Spot.Center;
                }
                // compare left side with left and right sides of OTHER part
                if (this.guidelineVleft && Math.abs(p0 - q0) < bestDiff) {
                    bestDiff = Math.abs(p0 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Left;
                    bestOtherSpot = go.Spot.Left;
                }
                else if (this.guidelineVleft && Math.abs(p0 - q2) < bestDiff) {
                    bestDiff = Math.abs(p0 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Left;
                    bestOtherSpot = go.Spot.Right;
                }
                // compare right side with left and right sides of OTHER part
                if (this.guidelineVright && Math.abs(p2 - q0) < bestDiff) {
                    bestDiff = Math.abs(p2 - q0);
                    bestObj = other;
                    bestSpot = go.Spot.Right;
                    bestOtherSpot = go.Spot.Left;
                }
                else if (this.guidelineVright && Math.abs(p2 - q2) < bestDiff) {
                    bestDiff = Math.abs(p2 - q2);
                    bestObj = other;
                    bestSpot = go.Spot.Right;
                    bestOtherSpot = go.Spot.Right;
                }
            });
            if (bestObj !== null) {
                const offsetX = objBounds.x - part.actualBounds.x;
                const offsetY = objBounds.y - part.actualBounds.y;
                const bestBounds = bestObj.locationObject.getDocumentBounds();
                // line extends from y0 to y2
                const y0 = Math.min(objBounds.y, bestBounds.y) - 10;
                const y2 = Math.max(objBounds.y + objBounds.height, bestBounds.y + bestBounds.height) + 10;
                // find bestObj's desired X
                const bestPoint = new go.Point().setRectSpot(bestBounds, bestOtherSpot);
                if (bestSpot === go.Spot.Center) {
                    if (snap) {
                        // call Part.move in order to automatically move member Parts of Groups
                        part.move(new go.Point(bestPoint.x - objBounds.width / 2 - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVcenter.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVcenter.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVcenter);
                    }
                }
                else if (bestSpot === go.Spot.Left) {
                    if (snap) {
                        part.move(new go.Point(bestPoint.x - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVleft.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVleft.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVleft);
                    }
                }
                else if (bestSpot === go.Spot.Right) {
                    if (snap) {
                        part.move(new go.Point(bestPoint.x - objBounds.width - offsetX, objBounds.y - offsetY));
                        this.invalidateLinks(part);
                    }
                    if (guideline) {
                        this.guidelineVright.position = new go.Point(bestPoint.x, y0);
                        this.guidelineVright.elt(0).height = y2 - y0;
                        this.diagram.add(this.guidelineVright);
                    }
                }
            }
        }
    }

    return {
        GuidedDraggingTool: GuidedDraggingTool
      }
      
}, "GuidedDraggingTool"))

The light UMD loader (without AMD) in my first post works. I made a mistake during the implementation.