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. Extensions can be found in the GoJS kit under the extensions
or extensionsTS
folders. See the Extensions intro page for more information.
This predicate controls whether or not the user can invoke the pasteSelection command.
This works just like CommandHandler.canPasteSelection, but looks at LocalStorage instead of a static variable.
This CommandHandler class uses localStorage as the repository for the clipboard, rather than an in-memory global variable. It requires that the Diagram.model be serializable and deserializable using Model.toJson and Model.fromJson.
The copyToClipboard and pasteFromClipboard functions fall back to using the standard definitions if there are any errors calling
Storage.getItem
orStorage.setItem
.Typical usage:
$(go.Diagram, "myDiagramDiv", { commandHandler: $(LocalStorageCommandHandler), ... } )
or:
myDiagram.commandHandler = new LocalStorageCommandHandler();
If you want to experiment with this extension, try the Local Storage Commands sample.