Solyd BPMN modeler
@solyd/modeler
is a Vue.js based BPMN modeler scaffolded using Vue CLI 3.
Project setup
Clone the repository and cd
into the modeler
directory:
git clone git@github.com:Solyd/modeler.gitcd modeler
You can now run any of the below commands. Most commands make calls vue-cli-service
. You can read more about those commands at https://cli.vuejs.org/guide/cli-service.html#cli-service.
# Compile the app and start a local development server npm run serve # Create a production build of the app npm run build # Compile the app to be distributed as an npm package npm run build-bundle # Report and fix ESLint errors npm run lint
Testing
Unit tests are set up using jest and end-to-end tests are set up using Cypress. Unit and end-to-end tests can be run separately or together. Code coverage is collected for both types of tests and combined into a single coverage report for the entire project.
Tests can be run locally with the following commands:
# Run the Jest unit test suite npm run test-unit # Open Cypress to run the end-to-end (e2e) test suite npm open-cypress # Run the Cypress end-to-end (e2e) test suite in headless mode npm run test-ci # Run the Jest unit test tests and then the Cypress tests in headless mode npm test
Tests are run automatically on CircleCI when new branches are created and updated. The CI uses the npm test
command to run both the unit and e2e test suites and to collect code coverage.
For more information on Cypress, visit https://cli.vuejs.org/config/#cypress.
For more information on Jest, visit https://jestjs.io.
Architecture
The entry point for the application is src/main.js
; this is the "starting point" which is used when running npm run serve
or npm run build
.
Global event bus
window.Solyd.EventBus
points to an independent Vue instance which acts as the application's global event bus. The modeler currently emits two events on the event bus which can be listened to in application code to hook into, customize, and extend the modeler's behaviour: modeler-init
, and modeler-start
.
modeler-init
This event is fired before the modeler and BpmnModdle are set up and mounted. Listeners to this event are passed an object with three methods: registerInspectorExtension
, registerBpmnExtension
, and registerNode
.
;; windowSolydEventBus;
modeler-start
This event is fired after the modeler has been set up and mounted. Listeners to this event are passed an object with a single method, loadXML
.
windowSolydEventBus;
For the modeler to function correctly, loadXML
must be called when the application loads.
modeler-validate
This event is fired during validation, and can be used to add custom validation rules. See Adding validation rules during runtime.
modeler-change
This event is fired anytime a change is made to the modeler that causes the underlying XML to change. This event is fired immediately after new state is pushed to the undo/redo stack.
windowSolydEventBus;
Undo/redo store
The undo/redo feature is implemented using Vuex, with the undo/redo Vuex store initialized in src/undoRedoStore.js
. The undo/redo store keeps track of every change in the underlying BPMN XML, recording a copy of the XML string in a stack. Traversing the undo/redo stack simply uses the loadXML
function to load the XML string from the current position in the stack.
Validation
Adding a new lint rule
By default, the modeler automatically validates your diagram as you create it. This validation can be toggled on and off using the switch in the status bar. Validation is handled using https://github.com/bpmn-io/bpmnlint.
To add a new validation rule, create a new file in solyd-plugin/rules
named after your rule, for example, node-id.js
. This file should export a function that returns an object with a check
method. The check
method will receive two arguments—node
and reporter
—and must return undefined
if validation passes, or reporter.report
to raise an error. For exmaple:
// solyd-plugin/rules/node-id.js /** * Rule that checks node IDs start with "node_" */module { { if typeof nodeid === 'string' && !nodeid reporter; } return check ;};
When you are done writing the rule, add it to solyd-plugin/index.js
:
moduleexports = configs: all: rules: 'solyd/custom-validation': 'error' 'solyd/gateway-direction': 'error' 'solyd/node-id': 'error' ;
For more examples, see the list of default rules at https://github.com/bpmn-io/bpmnlint/tree/master/rules.
Adding validation rules during runtime
To add custom validation when the liner runs, use the global event bus:
windowSolydEventBus;
Examples
Adding a new component
Creating a new modeler component requires creating a Vue component, a component config, and calling the registerNode
method to register your component.
First, create your component config, and save it in a .js
file:
// CustomComponentConfig.js // A unique ID that will be used to identify your component id: 'unique-custom-component-id' // A reference to the Vue component representing your component component: CustomComponent // The bpmn type for your component, which will be used to save the component under in XML // It has the form prefix:name bpmnType: 'custom-namespace:CustomComponent' // A toggle to show/hide the component in the controls panel control: true // The category to place the component under in the controls panel category: 'BPMN' // The icon representing the component in the controls panel icon: // The label for the component in the controls panel label: 'Script Task' // The function used to create the BPMN definition object for the component in the XML // moddle is a reference to an instance of bpmn-moddle: https://github.com/bpmn-io/bpmn-moddle { return moddle; } // The function used to create the BPMN diagram object for the component in the XML // moddle is a reference to an instance of bpmn-moddle: https://github.com/bpmn-io/bpmn-moddle { return moddle; } // The configuration for the inspector panel inspectorConfig: name: 'CustomComponent' items: // Each item corresponds to a form element. // Component can be a custom Vue component or a reference to a form component from vue-solydform-elements component: 'FormText' config: label: 'Custom Component Label' fontSize: '2em' // ... // ... ;
Then, create a Vue component for your custom element:
// CustomComponent.vue <template> <div /></template> <script>import Task from '@/components/nodes/task/task'; export default { extends: Task, mounted() { // Do things with this.shape },};</script>
Finally, register your custom component:
;