-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(zeebe): add _Version tag_ field to linked resources
Related to camunda/camunda-modeler#4460 Related to camunda/camunda-modeler#4461 Related to camunda/camunda-modeler#4462
- Loading branch information
1 parent
8acfcd4
commit 8ed7ddc
Showing
12 changed files
with
499 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import { getBusinessObject } from 'bpmn-js/lib/util/ModelUtil'; | ||
|
||
import { TextFieldEntry } from '@bpmn-io/properties-panel'; | ||
|
||
import { createElement } from '../../../../utils/ElementUtil'; | ||
|
||
import { useService } from '../../../../hooks'; | ||
|
||
import { getExtensionElementsList } from '../../../../utils/ExtensionElementsUtil'; | ||
|
||
export default function VersionTag(props) { | ||
const { | ||
element, | ||
type | ||
} = props; | ||
|
||
const bpmnFactory = useService('bpmnFactory'), | ||
commandStack = useService('commandStack'), | ||
debounce = useService('debounceInput'), | ||
translate = useService('translate'); | ||
|
||
const getValue = () => getVersionTag(element, type); | ||
|
||
const setValue = value => { | ||
const commands = []; | ||
|
||
const businessObject = getBusinessObject(element); | ||
|
||
// (1) ensure extension elements | ||
let extensionElements = businessObject.get('extensionElements'); | ||
|
||
if (!extensionElements) { | ||
extensionElements = createElement( | ||
'bpmn:ExtensionElements', | ||
{ values: [] }, | ||
businessObject, | ||
bpmnFactory | ||
); | ||
|
||
commands.push({ | ||
cmd: 'element.updateModdleProperties', | ||
context: { | ||
element, | ||
moddleElement: businessObject, | ||
properties: { extensionElements } | ||
} | ||
}); | ||
} | ||
|
||
// (2) ensure extension element | ||
let extensionElement = getExtensionElementsList(businessObject, type)[ 0 ]; | ||
|
||
if (!extensionElement) { | ||
extensionElement = createElement( | ||
type, | ||
{}, | ||
extensionElements, | ||
bpmnFactory | ||
); | ||
|
||
commands.push({ | ||
cmd: 'element.updateModdleProperties', | ||
context: { | ||
element, | ||
moddleElement: extensionElements, | ||
properties: { | ||
values: [ ...extensionElements.get('values'), extensionElement ] | ||
} | ||
} | ||
}); | ||
|
||
} | ||
|
||
// (3) Update versionTag attribute | ||
commands.push({ | ||
cmd: 'element.updateModdleProperties', | ||
context: { | ||
element, | ||
moddleElement: extensionElement, | ||
properties: { | ||
versionTag: value | ||
} | ||
} | ||
}); | ||
|
||
// (4) Execute the commands | ||
commandStack.execute('properties-panel.multi-command-executor', commands); | ||
}; | ||
|
||
return TextFieldEntry({ | ||
element, | ||
id: 'versionTag', | ||
label: translate('Version tag'), | ||
getValue, | ||
setValue, | ||
debounce | ||
}); | ||
} | ||
|
||
export function getVersionTag(element, type) { | ||
const businessObject = getBusinessObject(element); | ||
|
||
const extensionElement = getExtensionElementsList(businessObject, type)[ 0 ]; | ||
|
||
if (!extensionElement) { | ||
return ''; | ||
} | ||
|
||
return extensionElement.get('versionTag') || ''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.