You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.3 KiB
Vue
134 lines
3.3 KiB
Vue
<template>
|
|
<div
|
|
:style="{width:props.dimensions.width+'px',height:props.dimensions.height+'px'}">
|
|
<NodeResizer color="#fff" v-if="!props.isView && !props.isHideHandle && props.selected" @resize="resize" />
|
|
|
|
<div class="custom-node"
|
|
:style="{width:props.dimensions.width+'px',height:props.dimensions.height+'px',pointerEvents:props.isView?'auto': 'none'}">
|
|
<el-button :type="isErr ? 'danger':'primary'"
|
|
:style="{width:props.dimensions.width +'px',height:props.dimensions.height+'px'}"
|
|
:icon="Connection">{{ props.data.customData.name }}
|
|
</el-button>
|
|
<span style="color:#fff">
|
|
</span>
|
|
</div>
|
|
<Handle v-if="!props.isView" :id="`${props.id}.-t`" type="target" :position="Position.Left" />
|
|
<Handle v-if="!props.isView" :id="`${props.id}.-s`" type="source" :position="Position.Right" />
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { defineEmits, defineProps, ref } from 'vue';
|
|
import { NodeResizer } from '@vue-flow/node-resizer';
|
|
import { Connection } from '@element-plus/icons-vue';
|
|
import { Handle, Position } from '@vue-flow/core';
|
|
import request from '@/utils/request';
|
|
import axios from 'axios';
|
|
import { options } from '../../tool.js';
|
|
|
|
const isErr = ref(false);
|
|
const props = defineProps({
|
|
isView: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
inputData: {
|
|
type: Object,
|
|
required: false
|
|
},
|
|
id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
isHideHandle: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
selected: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
data: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
dimensions: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
});
|
|
const anyFun = (data, fun, key) => {
|
|
switch (fun) {
|
|
case 'map':
|
|
return data.map(e => e[key]);
|
|
default:
|
|
return null;
|
|
}
|
|
};
|
|
const parseData = (data, rule) => {
|
|
let resData = data;
|
|
let step = rule.split(',');
|
|
step.forEach((item) => {
|
|
if (resData) {
|
|
let fun = item.split('%');
|
|
if (fun.length === 1) {
|
|
resData = resData[fun[0]];
|
|
}
|
|
if (fun.length === 2) {
|
|
resData = anyFun(resData, fun[0], fun[1]);
|
|
}
|
|
}
|
|
});
|
|
return resData;
|
|
|
|
};
|
|
const getOutputData = () => {
|
|
|
|
let params = props.inputData;
|
|
(Object.keys(props.inputData) || []).forEach((item) => {
|
|
params[item.name] = props.inputData[item.name];
|
|
});
|
|
(options.isD ? request : axios.request)({
|
|
method: props.data.customData.method,
|
|
url: props.data.customData.url,
|
|
params: props.data.customData.method === 'get' ? params : '',
|
|
data: props.data.customData.method === 'post' ? params : ''
|
|
}).then(res => {
|
|
isErr.value = false;
|
|
let data = (options.isD ? res : res.data);
|
|
let output = {};
|
|
props.data.customData.outputData.forEach(item => {
|
|
output[item.fieldOne] = parseData(data, item.fieldTwo);
|
|
});
|
|
console.log('output', output);
|
|
props.data.outputData = output;
|
|
}).catch(e => {
|
|
isErr.value = true;
|
|
console.log(e);
|
|
});
|
|
};
|
|
|
|
onMounted(() => {
|
|
getOutputData();
|
|
});
|
|
|
|
let interval = setInterval(() => {
|
|
getOutputData();
|
|
}, Math.max(props.data.options?.timeout || 5 * 1000, 1000));
|
|
|
|
onBeforeUnmount(() => {
|
|
clearInterval(interval);
|
|
interval = null;
|
|
});
|
|
const emit = defineEmits(['resize']);
|
|
const resize = (e) => {
|
|
emit('resize', e, props.id);
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.custom-node {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
</style>
|