150 lines
4.5 KiB
Vue
150 lines
4.5 KiB
Vue
<template>
|
||
<div class="wrapper">
|
||
<j-tabs v-model="activeKey" tab-position="left">
|
||
<j-tab-pane
|
||
v-for="func in newFunctions"
|
||
:key="func.id"
|
||
:tab="func.name"
|
||
>
|
||
<j-row :gutter="30">
|
||
<j-col :span="15">
|
||
<JMonacoEditor
|
||
:ref="`monacoEditor${func.id}`"
|
||
v-model="func.json"
|
||
theme="vs-dark"
|
||
style="height: 400px"
|
||
/>
|
||
<div class="editor-btn">
|
||
<j-space>
|
||
<j-button
|
||
type="primary"
|
||
@click="handleExecute(func)"
|
||
>
|
||
执行
|
||
</j-button>
|
||
<j-button
|
||
type="default"
|
||
@click="handleClear(func)"
|
||
>
|
||
清空
|
||
</j-button>
|
||
</j-space>
|
||
</div>
|
||
</j-col>
|
||
<j-col :span="9">
|
||
<h6>执行结果:</h6>
|
||
<span class="execute-result">
|
||
{{ func.executeResult }}
|
||
</span>
|
||
</j-col>
|
||
</j-row>
|
||
</j-tab-pane>
|
||
</j-tabs>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { ComponentInternalInstance } from 'vue';
|
||
import { message } from 'ant-design-vue';
|
||
import { useInstanceStore } from '@/store/instance';
|
||
import { execute } from '@/api/device/instance';
|
||
|
||
const instanceStore = useInstanceStore();
|
||
const route = useRoute();
|
||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||
|
||
const activeKey = ref('');
|
||
// 物模型数据
|
||
const metadata = computed(() => JSON.parse(instanceStore.detail.metadata));
|
||
|
||
// 设备功能数据处理
|
||
const newFunctions = computed(() => {
|
||
const result: any = [];
|
||
metadata.value.functions?.forEach((func: any) => {
|
||
const obj = {};
|
||
const jsonData = func.inputs || func.properties;
|
||
for (const jsonItem of jsonData) {
|
||
const type = jsonItem.valueType ? jsonItem.valueType.type : '-';
|
||
obj[jsonItem.id] = setInitValue(type, jsonItem['json']);
|
||
}
|
||
|
||
result.push({
|
||
...func,
|
||
json: JSON.stringify(obj),
|
||
executeResult: '',
|
||
});
|
||
});
|
||
// console.log('newFunctions: ', result);
|
||
return result;
|
||
});
|
||
|
||
/**
|
||
* 根据数据类型, 赋初始值
|
||
* @param type
|
||
* @param json
|
||
*/
|
||
const setInitValue = (type: string, json?: any) => {
|
||
let initVal: any = '';
|
||
if (['int', 'long', 'float', 'double'].includes(type)) {
|
||
initVal = 0;
|
||
} else if (
|
||
['string', 'date', 'enum', 'password', 'geoPoint'].includes(type)
|
||
) {
|
||
initVal = '';
|
||
} else if (['boolean'].includes(type)) {
|
||
initVal = false;
|
||
} else if (['array'].includes(type)) {
|
||
initVal = [];
|
||
} else if (['object'].includes(type)) {
|
||
initVal = {};
|
||
if (json) {
|
||
const childObj = json['properties'][0];
|
||
initVal[childObj.id] = setInitValue(childObj.valueType.type);
|
||
}
|
||
}
|
||
return initVal;
|
||
};
|
||
|
||
/**
|
||
* 执行
|
||
*/
|
||
const handleExecute = async (func: any) => {
|
||
const { success, result } = await execute(
|
||
route.params.id as string,
|
||
func.id,
|
||
JSON.parse(func.json),
|
||
);
|
||
if (!success) return;
|
||
message.success('操作成功');
|
||
func.executeResult = result instanceof Array ? result[0] : result;
|
||
proxy?.$forceUpdate();
|
||
};
|
||
/**
|
||
* 清空
|
||
*/
|
||
const handleClear = (func: any) => {
|
||
func.json = '';
|
||
proxy?.$forceUpdate();
|
||
};
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.wrapper {
|
||
.editor-btn {
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
margin-top: 10px;
|
||
}
|
||
.execute-result {
|
||
display: inline-block;
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 2px;
|
||
padding: 4px 11px;
|
||
min-height: 140px;
|
||
width: 100%;
|
||
max-height: 450px;
|
||
overflow: auto;
|
||
}
|
||
}
|
||
</style>
|