1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
| class CustomContextPadProvider { constructor(contextPad, modeling, elementFactory, connect, create, translate) { this.modeling = modeling; this.elementFactory = elementFactory; this.connect = connect; this.create = create; this.translate = translate;
contextPad.registerProvider(this); }
getContextPadEntries(element) { const modeling = this.modeling; const elementFactory = this.elementFactory; const connect = this.connect; const create = this.create; const translate = this.translate;
const entries = {};
entries['delete'] = { group: 'edit', className: 'bpmn-icon-trash', title: translate('删除'), action: { click: function(event, element) { modeling.removeElements([element]); } } };
if (element.type === 'bpmn:Task' || element.type === 'bpmn:UserTask' || element.type === 'bpmn:ServiceTask') { entries['replace-with-service-task'] = { group: 'replace', className: 'bpmn-icon-service-task', title: translate('转换为服务任务'), action: { click: function(event, element) { modeling.replaceShape(element, { type: 'bpmn:ServiceTask' }); } } };
entries['replace-with-user-task'] = { group: 'replace', className: 'bpmn-icon-user-task', title: translate('转换为用户任务'), action: { click: function(event, element) { modeling.replaceShape(element, { type: 'bpmn:UserTask' }); } } };
entries['append-boundary-timer'] = { group: 'boundary', className: 'bpmn-icon-intermediate-event-catch-timer', title: translate('添加定时边界事件'), action: { click: function(event, element) { const boundaryEvent = elementFactory.createShape({ type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:TimerEventDefinition', host: element }); create.start(event, boundaryEvent, element); } } }; }
entries['connect'] = { group: 'connect', className: 'bpmn-icon-connection-multi', title: translate('连接'), action: { click: function(event, element) { connect.start(event, element); } } };
if (element.type !== 'bpmn:EndEvent') { entries['append-task'] = { group: 'append', className: 'bpmn-icon-task', title: translate('添加任务'), action: { click: function(event, element) { const task = elementFactory.createShape({ type: 'bpmn:Task' }); create.start(event, task, element); } } };
entries['append-gateway'] = { group: 'append', className: 'bpmn-icon-gateway-xor', title: translate('添加网关'), action: { click: function(event, element) { const gateway = elementFactory.createShape({ type: 'bpmn:ExclusiveGateway' }); create.start(event, gateway, element); } } }; }
return entries; } }
CustomContextPadProvider.$inject = [ 'contextPad', 'modeling', 'elementFactory', 'connect', 'create', 'translate' ];
|