mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-04-23 15:58:38 +00:00
105 lines
3.2 KiB
Vue
105 lines
3.2 KiB
Vue
<template>
|
|
<div class="node-wrapper">
|
|
<div class="node-container">
|
|
<div class="node-box" :class="{ 'node-config-error': !currentNode.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()"
|
|
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="currentNode.showText" v-if="currentNode.showText">
|
|
{{ currentNode.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"
|
|
@find:return-task-nodes="findReturnTaskNodes"
|
|
/>
|
|
</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'
|
|
defineOptions({
|
|
name: 'UserTaskNode'
|
|
})
|
|
const props = defineProps({
|
|
flowNode: {
|
|
type: Object as () => SimpleFlowNode,
|
|
required: true
|
|
}
|
|
})
|
|
const emits = defineEmits<{
|
|
'update:flowNode': [node: SimpleFlowNode | undefined]
|
|
'find:parentNode': [nodeList: SimpleFlowNode[], nodeType: NodeType]
|
|
}>()
|
|
|
|
const currentNode = ref<SimpleFlowNode>(props.flowNode)
|
|
const nodeSetting = ref()
|
|
// 打开节点配置
|
|
const openNodeConfig = () => {
|
|
// 把当前节点传递给配置组件
|
|
nodeSetting.value.setCurrentNode(currentNode.value)
|
|
nodeSetting.value.open()
|
|
}
|
|
// 监控节点变化
|
|
watch(
|
|
() => props.flowNode,
|
|
(newValue) => {
|
|
currentNode.value = newValue
|
|
}
|
|
)
|
|
// 显示节点名称输入框
|
|
const showInput = ref(false)
|
|
// 节点名称输入框失去焦点
|
|
const blurEvent = () => {
|
|
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 deleteNode = () => {
|
|
emits('update:flowNode', currentNode.value.childNode)
|
|
}
|
|
|
|
// 查找可以驳回用户节点
|
|
const findReturnTaskNodes = (
|
|
matchNodeList: SimpleFlowNode[] // 匹配的节点
|
|
) => {
|
|
// 从父节点查找
|
|
emits('find:parentNode', matchNodeList, NodeType.USER_TASK_NODE)
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|