40 lines
902 B
JavaScript
40 lines
902 B
JavaScript
|
/**
|
||
|
* Returns the moddelElement if it is a process, otherwise, returns the
|
||
|
*
|
||
|
* @param container
|
||
|
*/
|
||
|
|
||
|
|
||
|
export function findDataObjects(process) {
|
||
|
let dataObjects = [];
|
||
|
if (!process || !process.flowElements) {
|
||
|
return dataObjects;
|
||
|
}
|
||
|
for (const element of process.flowElements) {
|
||
|
if (element.$type === 'bpmn:DataObject') {
|
||
|
dataObjects.push(element);
|
||
|
}
|
||
|
}
|
||
|
return dataObjects;
|
||
|
}
|
||
|
|
||
|
export function findDataObject(process, id) {
|
||
|
for (const dataObj of findDataObjects(process)) {
|
||
|
if (dataObj.id === id) {
|
||
|
return dataObj;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function findDataReferenceShapes(processShape, id) {
|
||
|
let refs = [];
|
||
|
for (const shape of processShape.children) {
|
||
|
if (shape.type === 'bpmn:DataObjectReference') {
|
||
|
if (shape.businessObject.dataObjectRef && shape.businessObject.dataObjectRef.id === id) {
|
||
|
refs.push(shape);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return refs;
|
||
|
}
|