UNPKG

jh-gojs

Version:

Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams

334 lines (297 loc) 15 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"/> <meta name="description" content="Use HTML drag-and-drop to implement dragging HTML elements onto a GoJS Diagram to create new nodes. Also demonstrates pasting from the external clipboard."/> <link rel="stylesheet" href="../assets/css/style.css"/> <!-- Copyright 1998-2022 by Northwoods Software Corporation. --> <title>HTML Drag and Drop, and external Clipboard pasting</title> </head> <body> <!-- This top nav is not part of the sample code --> <nav id="navTop" class="w-full z-30 top-0 text-white bg-nwoods-primary"> <div class="w-full container max-w-screen-lg mx-auto flex flex-wrap sm:flex-nowrap items-center justify-between mt-0 py-2"> <div class="md:pl-4"> <a class="text-white hover:text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl rounded-lg hover:bg-nwoods-secondary " href="../"> <h1 class="mb-0 p-1 ">GoJS</h1> </a> </div> <button id="topnavButton" class="rounded-lg sm:hidden focus:outline-none focus:ring" aria-label="Navigation"> <svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6"> <path id="topnavOpen" fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path> <path id="topnavClosed" class="hidden" fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path> </svg> </button> <div id="topnavList" class="hidden sm:block items-center w-auto mt-0 text-white p-0 z-20"> <ul class="list-reset list-none font-semibold flex justify-end flex-wrap sm:flex-nowrap items-center px-0 pb-0"> <li class="p-1 sm:p-0"><a class="topnav-link" href="../learn/">Learn</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../samples/">Samples</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../intro/">Intro</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../api/">API</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/products/register.html">Register</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../download.html">Download</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://forum.nwoods.com/c/gojs/11">Forum</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/contact.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/contact.html', 'contact');">Contact</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/sales/index.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/sales/index.html', 'buy');">Buy</a></li> </ul> </div> </div> <hr class="border-b border-gray-600 opacity-50 my-0 py-0" /> </nav> <div class="md:flex flex-col md:flex-row md:min-h-screen w-full max-w-screen-xl mx-auto"> <div id="navSide" class="flex flex-col w-full md:w-48 text-gray-700 bg-white flex-shrink-0"></div> <!-- * * * * * * * * * * * * * --> <!-- Start of GoJS sample code --> <script src="../release/go.js"></script> <div id="allSampleContent" class="p-4 w-full"> <style> .draggable { font: bold 16px sans-serif; width: 140px; height: 20px; text-align: center; background: white; cursor: move; margin-top: 20px; } .palettezone { width: 160px; height: 400px; background: lightblue; padding: 10px; padding-top: 1px; float: left; } </style> <script id="code"> function init() { // ********************************************************* // First, set up the infrastructure to do HTML drag-and-drop // ********************************************************* var dragged = null; // A reference to the element currently being dragged // highlight stationary nodes during an external drag-and-drop into a Diagram function highlight(node) { // may be null var oldskips = myDiagram.skipsUndoManager; myDiagram.skipsUndoManager = true; myDiagram.startTransaction("highlight"); if (node !== null) { myDiagram.highlight(node); } else { myDiagram.clearHighlighteds(); } myDiagram.commitTransaction("highlight"); myDiagram.skipsUndoManager = oldskips; } // This event should only fire on the drag targets. // Instead of finding every drag target, // we can add the event to the document and disregard // all elements that are not of class "draggable" document.addEventListener("dragstart", event => { if (event.target.className !== "draggable") return; // Some data must be set to allow drag event.dataTransfer.setData("text", event.target.textContent); // store a reference to the dragged element and the offset of the mouse from the center of the element dragged = event.target; dragged.offsetX = event.offsetX - dragged.clientWidth / 2; dragged.offsetY = event.offsetY - dragged.clientHeight / 2; // Objects during drag will have a red border event.target.style.border = "2px solid red"; }, false); // This event resets styles after a drag has completed (successfully or not) document.addEventListener("dragend", event => { // reset the border of the dragged element dragged.style.border = ""; highlight(null); }, false); // Next, events intended for the drop target - the Diagram div var div = document.getElementById("myDiagramDiv"); div.addEventListener("dragenter", event => { // Here you could also set effects on the Diagram, // such as changing the background color to indicate an acceptable drop zone // Requirement in some browsers, such as Internet Explorer event.preventDefault(); }, false); div.addEventListener("dragover", event => { // We call preventDefault to allow a drop // But on divs that already contain an element, // we want to disallow dropping if (this === myDiagram.div) { var can = event.target; var pixelratio = myDiagram.computePixelRatio(); // if the target is not the canvas, we may have trouble, so just quit: if (!(can instanceof HTMLCanvasElement)) return; var bbox = can.getBoundingClientRect(); var bbw = bbox.width; if (bbw === 0) bbw = 0.001; var bbh = bbox.height; if (bbh === 0) bbh = 0.001; var mx = event.clientX - bbox.left * ((can.width / pixelratio) / bbw); var my = event.clientY - bbox.top * ((can.height / pixelratio) / bbh); var point = myDiagram.transformViewToDoc(new go.Point(mx, my)); var curnode = myDiagram.findPartAt(point, true); if (curnode instanceof go.Node) { highlight(curnode); } else { highlight(null); } } if (event.target.className === "dropzone") { // Disallow a drop by returning before a call to preventDefault: return; } // Allow a drop on everything else event.preventDefault(); }, false); div.addEventListener("dragleave", event => { // reset background of potential drop target if (event.target.className == "dropzone") { event.target.style.background = ""; } highlight(null); }, false); // handle the user option for removing dragged items from the Palette var remove = document.getElementById('remove'); div.addEventListener("drop", event => { // prevent default action // (open as link for some elements in some browsers) event.preventDefault(); // Dragging onto a Diagram if (div === myDiagram.div) { var can = event.target; var pixelratio = myDiagram.computePixelRatio(); // if the target is not the canvas, we may have trouble, so just quit: if (!(can instanceof HTMLCanvasElement)) return; var bbox = can.getBoundingClientRect(); var bbw = bbox.width; if (bbw === 0) bbw = 0.001; var bbh = bbox.height; if (bbh === 0) bbh = 0.001; var mx = event.clientX - bbox.left * ((can.width / pixelratio) / bbw) - dragged.offsetX; var my = event.clientY - bbox.top * ((can.height / pixelratio) / bbh) - dragged.offsetY; var point = myDiagram.transformViewToDoc(new go.Point(mx, my)); myDiagram.startTransaction('new node'); myDiagram.model.addNodeData({ location: point, text: event.dataTransfer.getData('text'), color: "lightyellow" }); myDiagram.commitTransaction('new node'); // remove dragged element from its old location if (remove.checked) dragged.parentNode.removeChild(dragged); } // If we were using drag data, we could get it here, ie: // var data = event.dataTransfer.getData('text'); }, false); // ********************************************************* // Second, set up a GoJS Diagram // ********************************************************* // Since 2.2 you can also author concise templates with method chaining instead of GraphObject.make // For details, see https://gojs.net/latest/intro/buildingObjects.html const $ = go.GraphObject.make; // for conciseness in defining templates myDiagram = $(go.Diagram, "myDiagramDiv", // create a Diagram for the DIV HTML element { "undoManager.isEnabled": true }); // define a simple Node template myDiagram.nodeTemplate = $(go.Node, "Auto", { locationSpot: go.Spot.Center }, new go.Binding('location'), $(go.Shape, "Rectangle", { fill: 'white' }, // Shape.fill is bound to Node.data.color new go.Binding("fill", "color"), // this binding changes the Shape.fill when Node.isHighlighted changes value new go.Binding("fill", "isHighlighted", (h, shape) => { if (h) return "red"; var c = shape.part.data.color; return c ? c : "white"; }).ofObject()), // binding source is Node.isHighlighted $(go.TextBlock, { margin: 3, font: "bold 16px sans-serif", width: 140, textAlign: 'center' }, // TextBlock.text is bound to Node.data.key new go.Binding("text")) ); // Modify the CommandHandler's doKeyDown to do nothing except bubble the event // on a potential Paste command: myDiagram.commandHandler.doKeyDown = function() { const diagram = this.diagram; const e = diagram.lastInput; // The meta (Command) key substitutes for "control" for Mac commands const control = e.meta || e.control; const shift = e.shift; const key = e.key; if ((control && key === 'V') || (shift && key === 'Insert')) { // Instead of the usual behavior: // if (this.canPasteSelection()) this.pasteSelection(); // let the event bubble up the DOM: e.bubbles = true; } else { go.CommandHandler.prototype.doKeyDown.call(this, e); } }; // handle inserting a new node using text that is in the system clipboard document.addEventListener('paste', function (e) { const paste = e.clipboardData.getData("text"); // Decide if the clipboard should be pasted, or if we should let GoJS paste // This sample pastes from the clipboard if it contains any text at all, // Otherwise, it pastes from GoJS if (paste.length > 0) { // Create a new node out of the text and paste it at the mouse location const loc = myDiagram.lastInput.documentPoint; myDiagram.model.addNodeData({ text: paste, location: loc }); } else { // If the clipbooard does not contain anything, paste from GoJS instead const commandHandler = myDiagram.commandHandler; if (commandHandler.canPasteSelection()) commandHandler.pasteSelection(); } }); myDiagram.model = new go.GraphLinksModel( [ { text: "Alpha", color: "lightblue" }, { text: "Beta", color: "orange" }, { text: "Gamma", color: "lightgreen" }, { text: "Delta", color: "pink" } ]); } window.addEventListener('DOMContentLoaded', init); </script> <div id="sample"> <div style="width: 100%; display: flex; justify-content: space-between"> <div id="paletteZone" style="width: 160px; height: 400px; margin-right: 2px; background-color: lightblue; padding: 10px;"> <div class="draggable" draggable="true">Water</div> <div class="draggable" draggable="true">Coffee</div> <div class="draggable" draggable="true">Tea</div> </div> <div id="myDiagramDiv" style="flex-grow: 1; height: 400px; border: solid 1px black"></div> </div> <input id="remove" type="checkbox" /><label for="remove">Remove HTML item after drag</label> <p> The "Palette" in this sample is not a Palette (or GoJS control) at all. It is a collection of HTML elements with draggable attributes using the <a href="https://developer.mozilla.org/en-US/docs/DragDrop/Drag_and_Drop">HTML Drag and Drop API</a>. </p> <p> This sample lets you drag these HTML elements onto the Diagram to create GoJS nodes. As the mouse passes over stationary nodes in the Diagram, they are highlighted. </p> <p> This sample also demonstrates allowing external clipboard pasting, by modifying <code>myDiagram.commandHandler.doKeyDown</code> to do nothing but allow the event to bubble, and then defining a <code>"paste"</code> event on the <code>document</code>. So the user can select some text, either on the page or in some other app, and then a paste in the diagram will create a new node using that text. </p> </div> </div> <!-- * * * * * * * * * * * * * --> <!-- End of GoJS sample code --> </div> </body> <!-- This script is part of the gojs.net website, and is not needed to run the sample --> <script src="../assets/js/goSamples.js"></script> </html>