BPMN and DMN Standalone Editors

In 0.7.2.alpha3 we started shipping a new component of the KIE tooling, what we’re calling Standalone Editors.

These Standalone Editors provide a straightforward way to use our tried-and-true DMN and BPMN Editors embedded in your own web applications.

The editors are now distributed in a self contained library that provides an all-in-one JavaScript file for each of them, that can be interacted using a comprehensive API for setup and control of them.

Installation

In this release, you can choose from three ways to install the Standalone Editors:

  1. Use our hosted JS files directly
  1. Manual download of each JS file
  1. NPM package
  • Available at https://www.npmjs.com/package/@kogito-tooling/kie-editors-standalone
  • To add it to your package.json file:
    • npm install @kogito-tooling/kie-editors-standalone
  • To import each Editor library in your TypeScript file:
    • import * as DmnEditor from "@kogito-tooling/kie-editors-standalone/dist/dmn"
    • import * as BpmnEditor from "@kogito-tooling/kie-editors-standalone/dist/bpmn"

Usage

The API is the same for both editors. Here is an example on how to open the DMN Editor:

Parameters description:

  • container: HTML element in which the Editor will be appended to.
  • initialContent: Promise to a DMN model content. Can be empty. Examples:
    • Promise.resolve("")
    • Promise.resolve("<DIAGRAM_CONTENT_DIRECTLY_HERE>")
    • fetch("MyDmnModel.dmn").then(content => content.text())
  • readOnly (optional, defaults to false): Use false to allow content edition, and true for read-only mode, in which the Editor will not allow changes. WARNING: Currently only the DMN Editor supports read-only mode.
  • origin (optional, defaults to window.location.origin): If for some reason your application needs to change this parameter, you can use it.
  • resources (optional, defaults to []): Map of resources that will be provided for the Editor. This can be used, for instance, to provide included models for the DMN Editor or Work Item Definitions for the BPMN Editor. Each entry in the map has the resource name as its key and an object containing the content-type (text or binary) and the resource content (Promise similar to the initialContent parameter) as its value.

The returned object will contain the methods needed to manipulate the Editor:

  • getContent(): Promise<string>: Returns a Promise containing the Editor content.
  • setContent(content: string): void: Sets the content of the Editor.
  • getPreview(): Promise<string>: Returns a Promise containing the SVG string of the current diagram.
  • subscribeToContentChanges(callback: (isDirty: boolean) => void): (isDirty: boolean) => void: Setup a callback to be called on every content change in the Editor. Returns the same callback to be used for unsubscription.
  • unsubscribeToContentChanges(callback: (isDirty: boolean) => void): void: Unsubscribes the passed callback from content changes.
  • markAsSaved(): void: Resets the Editor state, signalizing that its content is saved. This will also fire the subscribed callbacks of content changes.
  • undo(): void: Undo the last change in the Editor. This will also fire the callbacks subscribed for content changes.
  • redo(): void:  Redo the last undone change in the Editor. This will also fire the callbacks subscribed for content changes.
  • close(): void: Closes the Editor.
  • getElementPosition(selector: string): Promise<Rect>: Provides an alternative for extending the standard query selector when the element lives inside a canvas or even a video component. The selector parameter must follow the format of “:::”, e.g. Canvas:::MySquare or Video:::PresenterHand. Returns a Rect representing the element position.
  • envelopeApi: MessageBusClientApi<KogitoEditorEnvelopeApi>: Advanced Editor API. See more details in MessageBusClientApi and KogitoEditorEnvelopeApi.

Walk-through

Now let’s implement an application that provides the DMN Editor and adds a simple toolbar to the top that explores the main features of the API.

First, we start with a simple HTML page, and add a script tag with the DMN Standalone Editor JS library. We also add a <div> for the toolbar and a <div> for the Editor.

For the toolbar, we will add a few buttons, that will take advantage of the Editor’s API:

With the HTML ready, we can add a script to open the editor:

This script will open an empty and modifiable DMN Editor inside the div#dmn-editor-container. But we still have to implement the toolbar actions. To be able to undo and redo changes, we can add the following script:

To be able to retrieve the content from the Editor and, for example, download it, we can add this:

A similar approach is used to make the diagram SVG available for download:

Finally, we can also subscribe for changes in the Editor, and be notified when its content changes:

We can also add some style to the <head> to make the Editor use the full page:

Then it looks like this:

And here is the full code:

We hope this new distribution is useful to you, and stay tuned for new updates!

Author

0 0 votes
Article Rating
Subscribe
Notify of
guest
33 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments