workflow-editor 0.9.66-dw → 0.9.66-pv3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/lib/workflow-editor.css +1 -1
  2. package/lib/workflow-editor.umd.min.js +11 -11
  3. package/package.json +2 -2
  4. package/packages/index.js +34 -0
  5. package/packages/plugins/formValidatorUtil.js +528 -0
  6. package/packages/plugins/index.js +8 -0
  7. package/packages/workflow-editor/index.js +14 -0
  8. package/packages/workflow-editor/src/api.js +7 -0
  9. package/packages/workflow-editor/src/assets/wf-editor-icons.js +2 -0
  10. package/packages/workflow-editor/src/constant.js +8 -0
  11. package/packages/workflow-editor/src/json-object-templates/copy-task.js +67 -0
  12. package/packages/workflow-editor/src/json-object-templates/decision.js +11 -0
  13. package/packages/workflow-editor/src/json-object-templates/end.js +14 -0
  14. package/packages/workflow-editor/src/json-object-templates/fork.js +10 -0
  15. package/packages/workflow-editor/src/json-object-templates/human-decision.js +9 -0
  16. package/packages/workflow-editor/src/json-object-templates/human-task.js +199 -0
  17. package/packages/workflow-editor/src/json-object-templates/join.js +10 -0
  18. package/packages/workflow-editor/src/json-object-templates/process.js +98 -0
  19. package/packages/workflow-editor/src/json-object-templates/start.js +13 -0
  20. package/packages/workflow-editor/src/json-object-templates/subprocess.js +30 -0
  21. package/packages/workflow-editor/src/json-object-templates/transition.js +26 -0
  22. package/packages/workflow-editor/src/main/admin-save-dialog.vue +66 -0
  23. package/packages/workflow-editor/src/main/canvas.vue +479 -0
  24. package/packages/workflow-editor/src/main/context-menu.vue +132 -0
  25. package/packages/workflow-editor/src/main/icon-svg.vue +32 -0
  26. package/packages/workflow-editor/src/main/selection-region.vue +66 -0
  27. package/packages/workflow-editor/src/main/tache-history-tooltip.vue +38 -0
  28. package/packages/workflow-editor/src/main/tache-name-input.vue +19 -0
  29. package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +35 -0
  30. package/packages/workflow-editor/src/main/toolbox.vue +60 -0
  31. package/packages/workflow-editor/src/main/wf-history-canvas.vue +302 -0
  32. package/packages/workflow-editor/src/process-json.js +622 -0
  33. package/packages/workflow-editor/src/process-service.js +31 -0
  34. package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +531 -0
  35. package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +276 -0
  36. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +34 -0
  37. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +239 -0
  38. package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +47 -0
  39. package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +241 -0
  40. package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +23 -0
  41. package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +116 -0
  42. package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +75 -0
  43. package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +125 -0
  44. package/packages/workflow-editor/src/properties-editors/common/notice.vue +98 -0
  45. package/packages/workflow-editor/src/properties-editors/common/reminder.vue +179 -0
  46. package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +83 -0
  47. package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +65 -0
  48. package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +355 -0
  49. package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +63 -0
  50. package/packages/workflow-editor/src/properties-editors/common/task-title.vue +148 -0
  51. package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +233 -0
  52. package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +386 -0
  53. package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +209 -0
  54. package/packages/workflow-editor/src/properties-editors/common/variables.vue +135 -0
  55. package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +90 -0
  56. package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +155 -0
  57. package/packages/workflow-editor/src/properties-editors/copy-task.vue +80 -0
  58. package/packages/workflow-editor/src/properties-editors/decision.vue +90 -0
  59. package/packages/workflow-editor/src/properties-editors/fork.vue +72 -0
  60. package/packages/workflow-editor/src/properties-editors/human-decision.vue +44 -0
  61. package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +60 -0
  62. package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +156 -0
  63. package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +291 -0
  64. package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +249 -0
  65. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +392 -0
  66. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +241 -0
  67. package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +220 -0
  68. package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +204 -0
  69. package/packages/workflow-editor/src/properties-editors/human-task/events.vue +59 -0
  70. package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +207 -0
  71. package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +390 -0
  72. package/packages/workflow-editor/src/properties-editors/human-task.vue +103 -0
  73. package/packages/workflow-editor/src/properties-editors/join.vue +44 -0
  74. package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +324 -0
  75. package/packages/workflow-editor/src/properties-editors/process/events.vue +76 -0
  76. package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +60 -0
  77. package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +95 -0
  78. package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +28 -0
  79. package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +87 -0
  80. package/packages/workflow-editor/src/properties-editors/process.vue +109 -0
  81. package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +187 -0
  82. package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +26 -0
  83. package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +206 -0
  84. package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +64 -0
  85. package/packages/workflow-editor/src/properties-editors/subprocess.vue +79 -0
  86. package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +53 -0
  87. package/packages/workflow-editor/src/properties-editors/transition.vue +74 -0
  88. package/packages/workflow-editor/src/properties-editors/user-condition.js +177 -0
  89. package/packages/workflow-editor/src/store/getters.js +28 -0
  90. package/packages/workflow-editor/src/store/workflow-editor.js +128 -0
  91. package/packages/workflow-editor/src/taches/common-methods.js +21 -0
  92. package/packages/workflow-editor/src/taches/copy-task.vue +99 -0
  93. package/packages/workflow-editor/src/taches/custom-task.vue +88 -0
  94. package/packages/workflow-editor/src/taches/decision.vue +102 -0
  95. package/packages/workflow-editor/src/taches/end.vue +76 -0
  96. package/packages/workflow-editor/src/taches/fork.vue +102 -0
  97. package/packages/workflow-editor/src/taches/human-decision.vue +102 -0
  98. package/packages/workflow-editor/src/taches/human-task.vue +113 -0
  99. package/packages/workflow-editor/src/taches/join.vue +91 -0
  100. package/packages/workflow-editor/src/taches/joint.vue +177 -0
  101. package/packages/workflow-editor/src/taches/start.vue +76 -0
  102. package/packages/workflow-editor/src/taches/subprocess.vue +99 -0
  103. package/packages/workflow-editor/src/taches/tache-resizer.vue +80 -0
  104. package/packages/workflow-editor/src/transitions/broken-line.vue +91 -0
  105. package/packages/workflow-editor/src/transitions/curve-line.vue +91 -0
  106. package/packages/workflow-editor/src/transitions/straight-line.vue +26 -0
  107. package/packages/workflow-editor/src/transitions/transition.vue +212 -0
  108. package/packages/workflow-editor/src/transitions/virtual-transition.vue +43 -0
  109. package/packages/workflow-editor/src/util.js +493 -0
  110. package/packages/workflow-editor/src/workflow-editor.vue +625 -0
  111. package/packages/workflow-editor/src/workflow-history.vue +153 -0
  112. package/src/i18n/i18n.js +1 -1
  113. package/src/i18n/langs/cn.js +7 -1
  114. package/src/i18n/langs/en.js +7 -1
@@ -0,0 +1,128 @@
1
+ import getters from './getters'
2
+ const wfEditor = {
3
+ namespaced: true,
4
+ state: {
5
+ taches: [],
6
+ transitions: [],
7
+ startJoint: null,
8
+ endJoint: null,
9
+ isMovingTache: false,
10
+ mouseDownPosition: null,
11
+ isDrawingRegion: false,
12
+ isMovingRegion: false,
13
+ selectedTaches: [],
14
+ selectedTransition: null,
15
+ resizerToMove: null,
16
+ draggerToMove: null,
17
+ propertiesEditorFor: '',
18
+ componentToDraw: '',
19
+ controlPointToMove: null,
20
+ formFields: [],
21
+ formFieldsWithSub: [],
22
+ contextMenuVisible: false,
23
+ formCode: null,
24
+ systemCode: null,
25
+ processCode: null,
26
+ processI18n: null,
27
+ subtableConditionMap: null,
28
+ propSettingKeyList: null
29
+ },
30
+ getters,
31
+ mutations: {
32
+ setTaches(state, taches) {
33
+ state.taches = taches
34
+ },
35
+ setTransitions(state, transitions) {
36
+ state.transitions = transitions
37
+ },
38
+ clearCanvas(state) {
39
+ state.taches = []
40
+ state.transitions = []
41
+ },
42
+ resetState(state) {
43
+ state.isMovingTache = false
44
+ state.startJoint = null
45
+ state.endJoint = null
46
+ state.isDrawingRegion = false
47
+ state.isMovingRegion = false
48
+ state.resizerToMove = null
49
+ state.draggerToMove = null
50
+ state.controlPointToMove = null
51
+ },
52
+ stopDrawingLine(state) {
53
+ state.startJoint = null
54
+ state.endJoint = null
55
+ },
56
+ setStartJoint(state, startJoint) {
57
+ state.startJoint = startJoint
58
+ },
59
+ setEndJoint(state, endJoint) {
60
+ state.endJoint = endJoint
61
+ },
62
+ setMovingTache(state, isMovingTache) {
63
+ state.isMovingTache = isMovingTache
64
+ },
65
+ setMouseDownPosition(state, mouseDownPosition) {
66
+ state.mouseDownPosition = mouseDownPosition
67
+ },
68
+ setDrawingRegion(state, isDrawingRegion) {
69
+ state.isDrawingRegion = isDrawingRegion
70
+ },
71
+ setMovingRegion(state, isMovingRegion) {
72
+ state.isMovingRegion = isMovingRegion
73
+ },
74
+ setSelectedTaches(state, selectedTaches) {
75
+ state.selectedTaches = selectedTaches
76
+ },
77
+ setSelectedTransition(state, selectedTransition) {
78
+ state.selectedTransition = selectedTransition
79
+ },
80
+ setResizerToMove(state, resizer) {
81
+ state.resizerToMove = resizer
82
+ },
83
+ setDraggerToMove(state, transition) {
84
+ state.draggerToMove = transition
85
+ },
86
+ setPropertiesEditorFor(state, propertiesEditorFor) {
87
+ state.propertiesEditorFor = propertiesEditorFor
88
+ },
89
+ setComponentToDraw(state, componentToDraw) {
90
+ state.componentToDraw = componentToDraw
91
+ },
92
+ setControlPointToMove(state, controlPointToMove) {
93
+ state.controlPointToMove = controlPointToMove
94
+ },
95
+ setFormFields(state, formFields) {
96
+ state.formFields = formFields
97
+ },
98
+ setFormCode(state, formCode) {
99
+ state.formCode = formCode
100
+ },
101
+ setFormFieldsWithSub(state, formFieldsWithSub) {
102
+ state.formFieldsWithSub = formFieldsWithSub
103
+ },
104
+ setContextMenuVisible(state, contextMenuVisible) {
105
+ state.contextMenuVisible = contextMenuVisible
106
+ },
107
+ setSystemCode(state, systemCode) {
108
+ state.systemCode = systemCode
109
+ },
110
+ setProcessCode(state, processCode) {
111
+ state.processCode = processCode
112
+ },
113
+ setProcessI18n(state, processI18n) {
114
+ state.processI18n = processI18n
115
+ },
116
+ setSubtableConditionMap(state, subtableConditionMap) {
117
+ state.subtableConditionMap = subtableConditionMap
118
+ },
119
+ setPropSettingKeyList(state, propSettingKeyList) {
120
+ state.propSettingKeyList = propSettingKeyList
121
+ },
122
+ setSystemVersion(state, systemVersion) {
123
+ state.systemVersion = systemVersion
124
+ }
125
+ }
126
+ }
127
+
128
+ export default wfEditor
@@ -0,0 +1,21 @@
1
+ import { startDragTache, endDragTache } from '../util'
2
+ export default {
3
+ startDrag(event) {
4
+ console.log(this.model.name + ' mousedown')
5
+ this.setContextMenuVisible(false)
6
+ startDragTache(event, this)
7
+ },
8
+ endDrag() {
9
+ console.log(this.model.name + ' mouseup')
10
+ endDragTache()
11
+ },
12
+ showJoints() {
13
+ if (this.$parent.showHistory) return
14
+ this.jointPoints = [
15
+ 'up', 'right', 'down', 'left'
16
+ ]
17
+ },
18
+ hideJoints() {
19
+ this.jointPoints = []
20
+ }
21
+ }
@@ -0,0 +1,99 @@
1
+ <template>
2
+ <g
3
+ @mousedown.stop="startDrag"
4
+ @mouseup="endDrag"
5
+ @mouseenter="showJoints"
6
+ @mouseleave="hideJoints"
7
+ @dblclick.stop="setPropertiesEditorFor('CopyTask')"
8
+ >
9
+ <rect
10
+ ref="tache"
11
+ :width="model.width"
12
+ :height="model.height"
13
+ :class="{'draggable':true,'task-tache':true, 'selected':model.isSelected}"
14
+ :x="model.x"
15
+ :y="model.y"
16
+ rx="6"
17
+ ry="6"
18
+ />
19
+ <text
20
+ :x="text.x"
21
+ :y="text.y"
22
+ text-anchor="middle"
23
+ class="draggable"
24
+ >
25
+ {{ name }}
26
+ </text>
27
+ <joint
28
+ v-for="position in jointPoints"
29
+ :key="position"
30
+ :parent="model"
31
+ :position="position"
32
+ />
33
+ <tache-resizer
34
+ v-for="position in resizers"
35
+ :key="position"
36
+ :owner="model"
37
+ :position="position"
38
+ />
39
+ </g>
40
+ </template>
41
+ <script>
42
+ import { mapGetters, mapMutations } from 'vuex'
43
+ import Joint from './joint'
44
+ import TacheResizer from './tache-resizer'
45
+ import tacheMethods from './common-methods'
46
+ import { watchShowName } from '../util'
47
+ export default {
48
+ name: 'CopyTask',
49
+ components: {
50
+ Joint,
51
+ TacheResizer
52
+ },
53
+ props: {
54
+ model: {
55
+ type: Object,
56
+ default: null
57
+ }
58
+ },
59
+ data() {
60
+ return {
61
+ // 一个tache有上右下左四个连接点,这四个连接点的坐标根据tache的位置和大小计算出来
62
+ jointPoints: [],
63
+ resizers: ['NW', 'NE', 'SW', 'SE'],
64
+ name: this.model.name
65
+ }
66
+ },
67
+ computed: {
68
+ ...mapGetters('wfEditor', [
69
+ 'selectedTaches',
70
+ 'processI18n'
71
+ ]),
72
+ text() {
73
+ return {
74
+ x: this.model.x + this.model.width / 2,
75
+ y: this.model.y + this.model.height / 2
76
+ }
77
+ }
78
+ },
79
+ created() {
80
+ this.name = watchShowName(this, this.name)
81
+ },
82
+ mounted() {
83
+ this.$watch('model.name', function(newVal) {
84
+ this.name = watchShowName(this, newVal)
85
+ })
86
+ },
87
+ methods: {
88
+ ...mapMutations('wfEditor', [
89
+ 'setPropertiesEditorFor',
90
+ 'setContextMenuVisible'
91
+ ]),
92
+ ...tacheMethods
93
+ }
94
+ }
95
+ </script>
96
+ <style>
97
+
98
+ </style>
99
+
@@ -0,0 +1,88 @@
1
+ <template>
2
+ <g
3
+ @mousedown.stop="startDrag"
4
+ @mouseup="endDrag"
5
+ @mouseenter="showJoints"
6
+ @mouseleave="hideJoints"
7
+ @dblclick.stop="setPropertiesEditorFor('HumanTask')"
8
+ >
9
+ <rect
10
+ ref="tache"
11
+ :width="model.width"
12
+ :height="model.height"
13
+ :class="{'draggable':true,'task-tache':true, 'selected':model.isSelected}"
14
+ :x="model.x"
15
+ :y="model.y"
16
+ rx="6"
17
+ ry="6"
18
+ />
19
+ <text
20
+ :x="text.x"
21
+ :y="text.y"
22
+ text-anchor="middle"
23
+ class="draggable"
24
+ >
25
+ {{ model.name }}
26
+ </text>
27
+ <joint
28
+ v-for="position in jointPoints"
29
+ :key="position"
30
+ :parent="model"
31
+ :position="position"
32
+ />
33
+ <tache-resizer
34
+ v-for="position in resizers"
35
+ :key="position"
36
+ :owner="model"
37
+ :position="position"
38
+ />
39
+ </g>
40
+ </template>
41
+ <script>
42
+ import { mapGetters, mapMutations } from 'vuex'
43
+ import Joint from './joint'
44
+ import TacheResizer from './tache-resizer'
45
+ import tacheMethods from './common-methods'
46
+ export default {
47
+ name: 'CustomTask',
48
+ components: {
49
+ Joint,
50
+ TacheResizer
51
+ },
52
+ props: {
53
+ model: {
54
+ type: Object,
55
+ default: null
56
+ }
57
+ },
58
+ data() {
59
+ return {
60
+ // 一个tache有上右下左四个连接点,这四个连接点的坐标根据tache的位置和大小计算出来
61
+ jointPoints: [],
62
+ resizers: ['NW', 'NE', 'SW', 'SE']
63
+ }
64
+ },
65
+ computed: {
66
+ ...mapGetters('wfEditor', [
67
+ 'selectedTaches'
68
+ ]),
69
+ text() {
70
+ return {
71
+ x: this.model.x + this.model.width / 2,
72
+ y: this.model.y + this.model.height / 2
73
+ }
74
+ }
75
+ },
76
+ methods: {
77
+ ...mapMutations('wfEditor', [
78
+ 'setPropertiesEditorFor',
79
+ 'setContextMenuVisible'
80
+ ]),
81
+ ...tacheMethods
82
+ }
83
+ }
84
+ </script>
85
+ <style>
86
+
87
+ </style>
88
+
@@ -0,0 +1,102 @@
1
+ <template>
2
+ <g
3
+ @mousedown.stop="startDrag"
4
+ @mouseup="endDrag"
5
+ @mouseenter="showJoints"
6
+ @mouseleave="hideJoints"
7
+ @dblclick.stop="setPropertiesEditorFor('Decision')"
8
+ >
9
+ <rect
10
+ :width="model.width"
11
+ :height="model.height"
12
+ :class="{'draggable':true,'decision':!model.isSelected, 'selected':model.isSelected}"
13
+ :x="model.x"
14
+ :y="model.y"
15
+ rx="6"
16
+ ry="6"
17
+ />
18
+ <use
19
+ xlink:href="#icon-decision"
20
+ :x="model.x"
21
+ :y="model.y"
22
+ :width="model.width"
23
+ :height="model.height"
24
+ fill="#999"
25
+ class="draggable"
26
+ />
27
+ <text
28
+ :x="text.x"
29
+ :y="text.y"
30
+ text-anchor="middle"
31
+ class="draggable"
32
+ >
33
+ {{ name }}
34
+ </text>
35
+ <joint
36
+ v-for="position in jointPoints"
37
+ :key="position"
38
+ :parent="model"
39
+ :position="position"
40
+ />
41
+ </g>
42
+ </template>
43
+ <script>
44
+ import { mapGetters, mapMutations } from 'vuex'
45
+ import Joint from './joint'
46
+ import tacheMethods from './common-methods'
47
+ import { watchShowName } from '../util'
48
+ export default {
49
+ name: 'Decision',
50
+ components: {
51
+ Joint
52
+ },
53
+ props: {
54
+ model: {
55
+ type: Object,
56
+ default: null
57
+ }
58
+ },
59
+ data() {
60
+ return {
61
+ // 一个tache有上右下左四个连接点,这四个连接点的坐标根据tache的位置和大小计算出来
62
+ jointPoints: [],
63
+ name: this.model.name
64
+ }
65
+ },
66
+ computed: {
67
+ ...mapGetters('wfEditor', [
68
+ 'selectedTaches',
69
+ 'processI18n'
70
+ ]),
71
+ text() {
72
+ return {
73
+ x: this.model.x + this.model.width / 2,
74
+ // TODO: 12应该是字体大小加上一点空隙,换成变量值表示
75
+ y: this.model.y + this.model.height + 12
76
+ }
77
+ }
78
+ },
79
+ created() {
80
+ this.name = watchShowName(this, this.name)
81
+ },
82
+ mounted() {
83
+ this.$watch('model.name', function(newVal) {
84
+ this.name = watchShowName(this, newVal)
85
+ })
86
+ },
87
+ methods: {
88
+ ...mapMutations('wfEditor', [
89
+ 'setPropertiesEditorFor',
90
+ 'setContextMenuVisible'
91
+ ]),
92
+ ...tacheMethods
93
+ }
94
+ }
95
+ </script>
96
+ <style>
97
+ .decision{
98
+ stroke-width: 0;
99
+ fill:#fff;
100
+ }
101
+ </style>
102
+
@@ -0,0 +1,76 @@
1
+ <template>
2
+ <g
3
+ @mousedown.stop="startDrag"
4
+ @mouseup="endDrag"
5
+ @mouseenter="showJoints"
6
+ @mouseleave="hideJoints"
7
+ @dblclick.stop="setPropertiesEditorFor('')"
8
+ >
9
+ <rect
10
+ :width="model.width"
11
+ :height="model.height"
12
+ :class="{'draggable':true,'end':!model.isSelected, 'selected':model.isSelected}"
13
+ :x="model.x"
14
+ :y="model.y"
15
+ rx="6"
16
+ ry="6"
17
+ />
18
+ <use
19
+ xlink:href="#icon-end"
20
+ :x="model.x"
21
+ :y="model.y"
22
+ :width="model.width"
23
+ :height="model.height"
24
+ fill="#F56C6C"
25
+ class="draggable"
26
+ />
27
+ <joint
28
+ v-for="position in jointPoints"
29
+ :key="position"
30
+ :parent="model"
31
+ :position="position"
32
+ />
33
+ </g>
34
+ </template>
35
+ <script>
36
+ import { mapGetters, mapMutations } from 'vuex'
37
+ import Joint from './joint'
38
+ import tacheMethods from './common-methods'
39
+ export default {
40
+ name: 'End',
41
+ components: {
42
+ Joint
43
+ },
44
+ props: {
45
+ model: {
46
+ type: Object,
47
+ default: null
48
+ }
49
+ },
50
+ data() {
51
+ return {
52
+ // 一个tache有上右下左四个连接点,这四个连接点的坐标根据tache的位置和大小计算出来
53
+ jointPoints: []
54
+ }
55
+ },
56
+ computed: {
57
+ ...mapGetters('wfEditor', [
58
+ 'selectedTaches'
59
+ ])
60
+ },
61
+ methods: {
62
+ ...mapMutations('wfEditor', [
63
+ 'setPropertiesEditorFor',
64
+ 'setContextMenuVisible'
65
+ ]),
66
+ ...tacheMethods
67
+ }
68
+ }
69
+ </script>
70
+ <style>
71
+ .end{
72
+ stroke-width: 0;
73
+ fill:#fff;
74
+ }
75
+ </style>
76
+
@@ -0,0 +1,102 @@
1
+ <template>
2
+ <g
3
+ @mousedown.stop="startDrag"
4
+ @mouseup="endDrag"
5
+ @mouseenter="showJoints"
6
+ @mouseleave="hideJoints"
7
+ @dblclick.stop="setPropertiesEditorFor('Fork')"
8
+ >
9
+ <rect
10
+ :width="model.width"
11
+ :height="model.height"
12
+ :class="{'draggable':true,'decision':!model.isSelected, 'selected':model.isSelected}"
13
+ :x="model.x"
14
+ :y="model.y"
15
+ rx="6"
16
+ ry="6"
17
+ />
18
+ <use
19
+ xlink:href="#icon-fork"
20
+ :x="model.x"
21
+ :y="model.y"
22
+ :width="model.width"
23
+ :height="model.height"
24
+ fill="#999"
25
+ class="draggable"
26
+ />
27
+ <text
28
+ :x="text.x"
29
+ :y="text.y"
30
+ text-anchor="middle"
31
+ class="draggable"
32
+ >
33
+ {{ name }}
34
+ </text>
35
+ <joint
36
+ v-for="position in jointPoints"
37
+ :key="position"
38
+ :parent="model"
39
+ :position="position"
40
+ />
41
+ </g>
42
+ </template>
43
+ <script>
44
+ import { mapGetters, mapMutations } from 'vuex'
45
+ import Joint from './joint'
46
+ import tacheMethods from './common-methods'
47
+ import { watchShowName } from '../util'
48
+ export default {
49
+ name: 'Fork',
50
+ components: {
51
+ Joint
52
+ },
53
+ props: {
54
+ model: {
55
+ type: Object,
56
+ default: null
57
+ }
58
+ },
59
+ data() {
60
+ return {
61
+ // 一个tache有上右下左四个连接点,这四个连接点的坐标根据tache的位置和大小计算出来
62
+ jointPoints: [],
63
+ name: this.model.name
64
+ }
65
+ },
66
+ computed: {
67
+ ...mapGetters('wfEditor', [
68
+ 'selectedTaches',
69
+ 'processI18n'
70
+ ]),
71
+ text() {
72
+ return {
73
+ x: this.model.x + this.model.width / 2,
74
+ // TODO: 12应该是字体大小加上一点空隙,换成变量值表示
75
+ y: this.model.y + this.model.height + 12
76
+ }
77
+ }
78
+ },
79
+ created() {
80
+ this.name = watchShowName(this, this.name)
81
+ },
82
+ mounted() {
83
+ this.$watch('model.name', function(newVal) {
84
+ this.name = watchShowName(this, newVal)
85
+ })
86
+ },
87
+ methods: {
88
+ ...mapMutations('wfEditor', [
89
+ 'setPropertiesEditorFor',
90
+ 'setContextMenuVisible'
91
+ ]),
92
+ ...tacheMethods
93
+ }
94
+ }
95
+ </script>
96
+ <style>
97
+ .decision{
98
+ stroke-width: 0;
99
+ fill:#fff;
100
+ }
101
+ </style>
102
+