JSMD/workflow

View on GitHub
src/helper/event-dispatcher.js

Summary

Maintainability
C
1 day
Test Coverage

Showing 2 of 2 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

dispatchEnter(subject, transition, marking) {
const places = transition.tos;
const workflowEvent = new event.Event(subject, marking, transition, this.name);
 
this.emit('workflow.enter', workflowEvent);
Severity: Major
Found in src/helper/event-dispatcher.js and 1 other location - About 5 hrs to fix
src/helper/event-dispatcher.js on lines 4..16

Similar blocks of code found in 2 locations. Consider refactoring.
Open

dispatchLeave(subject, transition, marking) {
const places = transition.froms;
const workflowEvent = new event.Event(subject, marking, transition, this.name);
 
this.emit('workflow.leave', workflowEvent);
Severity: Major
Found in src/helper/event-dispatcher.js and 1 other location - About 5 hrs to fix
src/helper/event-dispatcher.js on lines 26..38
Category
Status