bpmnjs如何创建ExtensionElements扩展属性与多实例MultiInstanceLoopCharacte
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
·
//例子:创建扩展属性用于存放表单权限数据
export default{
data()
return{
prefix:'flowable',
moddle:'',
currentElement:'',//当前选中的节点element值(shape)
modeling:'',
propertiesForm:{
signType:''//串行/并行的值
}
}
},
computed:{
descriptorPrefix(){
return this.prefix +':'
}
},
methods:{
async createFormRightExtensionElements(options){
if(options && options.formRight){
let formRightData = await this.moddle.create(this.descriptorPrefix+'Formright',{
name:'formright',
uri:'http://'+this.prefix+'.org/bpmn',
body:JSON.stringify(options.formRight)
})
this.createExtensionElements([formRightData], this.descriptorPrefix+'Formright')
}
},
async createExtensionElements(propertiesValues, type, targetElement){
let originExtensionItems = await this.deleteExtensionElement(type, targetElement)
originExtensionItems = propertiesValues.length?originExtensionItems.concat(propertiesValues):originExtensionItems
if(originExtensionItems.length){
const extensionItems = await this.moddle.create(this.descriptorPrefix+"Properties",{
values:originExtensionItems,
uri:"http://"+this.prefix+".org/bpmn"
})
const extensions = await this.moddle.create('bpmn:ExtensionElements',{values:[extensionItems]})
this.updateExtensionElements(extensions, targetElement)
}
},
async deleteExtensionElement(type, targetElement){
let allExtensions = await this.getAllExtensions(targetElement)
allExtensions.forEach((item,index)=>{
if(item.$type == type){
allExtensions.splice(index,1)
}
})
return allExtensions
},
async getAllExtensions(targetElement){
targetElement = targetElement?targetElement:this.currentElement
let extensions = targetElement.businessObject.extensionElements
return extensions?.values?.[0]?.values
},
updateExtensionElements(extensions,targetElement){
targetElement = targetElement?targetElement:this.currentElement
this.modeling.updateProperties(targetElement,{extensionElements:extensions});
},
//以上方法是创建扩展属性的过程,下面的方法是创建多实例的过程
updateMultiInstanceLoopCharacteristics(bool){
if(bool){
let loopCharacteristics = this.moddle.create("bpmn:MultiInstanceLoopCharacteristics")
loopCharacteristics.$attrs[this.descriptorPrefix+'collection'] = 'assigneeList'
loopCharacteristics.$attrs[this.descriptorPrefix+'elementVariable'] = 'assignee'
let isSequential = this.propertiesForm.signType == "1"? true : false //true为串行一个个完成才通过
//串行和并行
loopCharacteristics['isSequential'] = isSequential //设置是串行还是并行
loopCharacteristics.$attrs['isSequential'] = isSequential //属性
let taskCondition = isSequential?'${flowTaskMultiInstance.accessCondition(execution1)}' : '${flowTaskMultiInstance.accessCondition(execution2)}'
let completionCondition = this.bpmnFactory.create("bpmn:FormalExpression",{body:taskCondition})
//let completionCondition = this.bpmnFactory.create("bpmn:FormalExpression",{body:'${nrOfCompletedInstances == 1}'})//一个通过就行
completionCondition.$parent = this.currentElement
loopCharacteristics['completionCondition'] = completionCondition
//loopCharacteristics['inputDataItem'] = inputDataItem
//loopCharacteristics['loopCardinality'] = loopCardinality
this.modeling.updateProperties(this.currentElement,{loopCharacteristics:loopCharacteristics});
}else{
this.currentElement && delete this.currentElement.businessObject.loopCharacteristics
}
},
}
}
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
1 年前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 1 年前
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐



所有评论(0)