Files
allinssl/frontend/apps/vue-flow/components/nodes/NormalNode.tsx
2025-09-03 15:15:59 +08:00

39 lines
999 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineComponent } from 'vue'
import { Handle, Position } from '@vue-flow/core'
import styles from './Node.module.css'
export default defineComponent({
name: 'NormalNode',
props: {
data: {
type: Object,
required: true,
},
},
setup(props) {
// 根据状态获取图标
const getStatusIcon = () => {
switch (props.data.status) {
case 'success':
return '✅'
case 'error':
return '❌'
default:
return ''
}
}
return () => (
<div class={`${styles.node} ${styles.normalNode}`}>
<div class={styles.nodeContent}>
<div class={styles.nodeIcon}>{getStatusIcon()}</div>
<div class={styles.nodeLabel}>{props.data.label}</div>
{props.data.message && <div class={styles.nodeMessage}>{props.data.message}</div>}
</div>
<Handle id="target" type="target" position={Position.Top} class={styles.handle} />
<Handle id="source" type="source" position={Position.Bottom} class={styles.handle} />
</div>
)
},
})