2026-06-18 14:49:21 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="node__container" :class="props.model.id">
|
|
|
|
|
<NodeState :state="nodeOperatingStatus" :runtimes="runtimes" ref="nodeStateRef">
|
|
|
|
|
<template #input>
|
|
|
|
|
<JsonViewer :value="inputJsonData" copyable boxed sort theme="light" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #output>
|
|
|
|
|
<JsonViewer v-if="props.properties.outputType === 'json'" :value="outputJsonData" copyable boxed sort theme="light" />
|
|
|
|
|
<el-image
|
|
|
|
|
v-if="props.properties.outputType === 'img'"
|
|
|
|
|
v-for="item in outputJsonData.imageUrl"
|
|
|
|
|
style="width: 60px; height: 60px"
|
|
|
|
|
:src="item"
|
|
|
|
|
:preview-src-list="outputJsonData.imageUrl"
|
|
|
|
|
:preview-teleported="true"
|
|
|
|
|
show-progress
|
|
|
|
|
fit="fill"
|
|
|
|
|
/>
|
|
|
|
|
<IPlayer v-if="props.properties.outputType === 'video'" v-for="item in outputJsonData.videoUrl" :videoUrl="item" />
|
|
|
|
|
</template>
|
|
|
|
|
</NodeState>
|
|
|
|
|
<NodeTitle
|
|
|
|
|
:icon="props.properties.icon"
|
|
|
|
|
:nodeId="props.model.id"
|
|
|
|
|
:nodeProperties="props.properties"
|
|
|
|
|
:nodeName="props.properties.name"
|
|
|
|
|
:nodeDesc="props.properties.desc"
|
|
|
|
|
:zoom-state="nodeZoom"
|
|
|
|
|
@setNodeName="setNodeName"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import { ref, reactive, onMounted, onUnmounted } from "vue";
|
|
|
|
|
import NodeTitle from "../../components/NodeTitle.vue";
|
|
|
|
|
import NodeState from "../../components/NodeState.vue";
|
|
|
|
|
import "vue3-json-viewer/dist/index.css";
|
|
|
|
|
import { emitter } from "@/utils/eventBus";
|
2026-06-29 17:16:56 +08:00
|
|
|
import IPlayer from "@/components/IPlayer/index.vue";
|
2026-06-18 14:49:21 +08:00
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
model: Object,
|
|
|
|
|
properties: Object,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const emits = defineEmits(["contentChange"]);
|
|
|
|
|
|
|
|
|
|
const setNodeName = (name) => {
|
|
|
|
|
const properties = lf.getProperties(props.model.id);
|
|
|
|
|
lf.setProperties(props.model.id, {
|
|
|
|
|
...properties,
|
|
|
|
|
name
|
|
|
|
|
});
|
|
|
|
|
emits("contentChange");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const nodeOperatingStatus = ref("NORMAL");
|
|
|
|
|
const runtimes = ref(0);
|
|
|
|
|
const inputJsonData = ref({});
|
|
|
|
|
const outputJsonData = ref({});
|
|
|
|
|
|
|
|
|
|
const nodeStateRef = ref(null);
|
|
|
|
|
|
|
|
|
|
const closePopover = () => {
|
|
|
|
|
if (nodeStateRef.value) {
|
|
|
|
|
nodeStateRef.value.closePopover();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
emitter.on("changeNodeState", (data) => {
|
|
|
|
|
if (data.nodeId === props.model.id) {
|
|
|
|
|
nodeOperatingStatus.value = data.status;
|
|
|
|
|
if (data.endTime && data.startTime) {
|
|
|
|
|
runtimes.value = data.endTime - data.startTime;
|
|
|
|
|
}
|
|
|
|
|
let inputData = {};
|
|
|
|
|
let output = {};
|
|
|
|
|
try {
|
|
|
|
|
inputData = JSON.parse(data.paramsIn) || {};
|
|
|
|
|
output = JSON.parse(data.paramsOut) || {};
|
|
|
|
|
} catch (error) {
|
|
|
|
|
inputData = data.paramsIn || {};
|
|
|
|
|
output = data.paramsOut || {};
|
|
|
|
|
}
|
|
|
|
|
inputJsonData.value = inputData;
|
|
|
|
|
outputJsonData.value = output;
|
|
|
|
|
emits("contentChange");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
emitter.on("contentChange", (data) => {
|
|
|
|
|
if (data.id === props.model.id) {
|
|
|
|
|
nodeOperatingStatus.value = "NORMAL";
|
|
|
|
|
inputJsonData.value = {};
|
|
|
|
|
outputJsonData.value = {};
|
|
|
|
|
emits("contentChange");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
emitter.on("setProperties", (data) => {
|
|
|
|
|
if (data.id === props.model.id) {
|
|
|
|
|
emits("contentChange");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
emitter.off("changeNodeState");
|
|
|
|
|
emitter.off("contentChange");
|
|
|
|
|
emitter.off("setProperties");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
defineExpose({ closePopover })
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.node__container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
|
|
.input__container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #fafbfc;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
height: 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background: #1664ff;
|
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #0c0d0e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
.addFormItem {
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form__container {
|
|
|
|
|
margin: 12px 0;
|
|
|
|
|
|
|
|
|
|
.sub-properties {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
.zw {
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: -4px;
|
|
|
|
|
width: 10px;
|
|
|
|
|
border-left: 1px solid gray;
|
|
|
|
|
border-bottom: 1px solid gray;
|
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
height: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gSon-properties {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
.zw {
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: -4px;
|
|
|
|
|
width: 10px;
|
|
|
|
|
border-left: 1px solid gray;
|
|
|
|
|
border-bottom: 1px solid gray;
|
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
height: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.output__container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #fafbfc;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
height: 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.tag {
|
|
|
|
|
width: 3px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background: #1664ff;
|
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #0c0d0e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form__container {
|
|
|
|
|
margin: 12px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.el-row) {
|
|
|
|
|
align-items: end;
|
|
|
|
|
|
|
|
|
|
.el-input {
|
|
|
|
|
--el-input-width: 170px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-select {
|
|
|
|
|
--el-select-width: 170px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-cascader {
|
|
|
|
|
--el-form-inline-content-width: 170px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|