113 lines
3.7 KiB
Vue
113 lines
3.7 KiB
Vue
<template>
|
|
<div class="node-wrapper">
|
|
<div class="node-container">
|
|
<div class="node-box" :class="{'node-config-error': !flowNode.showText}">
|
|
<div class="node-title-container">
|
|
<div class="node-title-icon user-task"><span class="iconfont icon-approve"></span></div>
|
|
<input
|
|
v-if="showInput"
|
|
type="text"
|
|
class="editable-title-input"
|
|
@blur="blurEvent($event)"
|
|
v-mountedFocus
|
|
v-model="currentNode.name"
|
|
:placeholder="currentNode.name"
|
|
/>
|
|
<div v-else class="node-title" @click="clickEvent">
|
|
{{ currentNode.name }}
|
|
</div>
|
|
</div>
|
|
<div class="node-content" @click="openNodeConfig">
|
|
<div class="node-text" :title="flowNode.showText" v-if="flowNode.showText">
|
|
{{ flowNode.showText }}
|
|
</div>
|
|
<div class="node-text" v-else>
|
|
{{ NODE_DEFAULT_TEXT.get(NodeType.USER_TASK_NODE) }}
|
|
</div>
|
|
<Icon icon="ep:arrow-right-bold" />
|
|
</div>
|
|
<div class="node-toolbar">
|
|
<div class="toolbar-icon"><Icon color="#0089ff" icon="ep:circle-close-filled" :size="18" @click="deleteNode" /></div>
|
|
</div>
|
|
</div>
|
|
<!-- 传递子节点给添加节点组件。会在子节点前面添加节点 -->
|
|
<NodeHandler v-if="currentNode" v-model:child-node="currentNode.childNode" />
|
|
</div>
|
|
</div>
|
|
<UserTaskNodeConfig
|
|
v-if="currentNode"
|
|
ref="nodeSetting"
|
|
:flow-node="currentNode"
|
|
@update:model-value="handleModelValueUpdate"
|
|
/>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { SimpleFlowNode, NodeType, NODE_DEFAULT_TEXT, NODE_DEFAULT_NAME } from '../consts'
|
|
import NodeHandler from '../NodeHandler.vue'
|
|
import UserTaskNodeConfig from '../nodes-config/UserTaskNodeConfig.vue';
|
|
import { generateUUID } from '@/utils'
|
|
defineOptions({
|
|
name: 'UserTaskNode'
|
|
})
|
|
const props = defineProps({
|
|
flowNode: {
|
|
type: Object as () => SimpleFlowNode,
|
|
required: true
|
|
}
|
|
})
|
|
const emits = defineEmits<{
|
|
'update:modelValue': [node: SimpleFlowNode | undefined]
|
|
}>()
|
|
|
|
const currentNode = ref<SimpleFlowNode>(props.flowNode)
|
|
const nodeSetting = ref()
|
|
// 打开节点配置
|
|
const openNodeConfig = () => {
|
|
nodeSetting.value.open()
|
|
}
|
|
watch(
|
|
() => props.flowNode,
|
|
(newValue) => {
|
|
currentNode.value = newValue
|
|
}
|
|
)
|
|
// 显示节点名称输入框
|
|
const showInput = ref(false)
|
|
// 节点名称输入框失去焦点
|
|
const blurEvent = (event) => {
|
|
showInput.value = false
|
|
currentNode.value.name = currentNode.value.name || NODE_DEFAULT_NAME.get(NodeType.USER_TASK_NODE) as string
|
|
}
|
|
// 点击节点标题进行输入
|
|
const clickEvent = () => {
|
|
showInput.value = true
|
|
}
|
|
const handleModelValueUpdate = (updateValue) => {
|
|
emits('update:modelValue', updateValue)
|
|
console.log('user task node handleModelValueUpdate', updateValue)
|
|
}
|
|
const deleteNode = () => {
|
|
console.log('the child node is ', currentNode.value.childNode)
|
|
emits('update:modelValue', currentNode.value.childNode)
|
|
}
|
|
const copyNode = () => {
|
|
// const oldChildNode = currentNode.value.childNode
|
|
const newCopyNode: SimpleFlowNode = {
|
|
id: generateUUID(),
|
|
name: currentNode.value.name,
|
|
showText: currentNode.value.showText,
|
|
type: currentNode.value.type,
|
|
// 审批节点配置
|
|
attributes: {
|
|
approveMethod: currentNode.value.attributes?.approveMethod,
|
|
candidateStrategy: currentNode.value.attributes?.candidateStrategy,
|
|
candidateParam: currentNode.value.attributes?.candidateParam
|
|
},
|
|
childNode: currentNode.value
|
|
}
|
|
currentNode.value = newCopyNode
|
|
emits('update:modelValue', currentNode.value)
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|