mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-04-27 21:18:39 +00:00
351 lines
12 KiB
Vue
351 lines
12 KiB
Vue
<template>
|
||
<div class="space-y-16px">
|
||
<!-- 触发事件类型选择 -->
|
||
<!-- TODO @puhui999:事件上报时,应该也是 json? -->
|
||
<el-form-item label="触发事件类型" required>
|
||
<el-select
|
||
:model-value="triggerType"
|
||
@update:model-value="handleTriggerTypeChange"
|
||
placeholder="请选择触发事件类型"
|
||
class="w-full"
|
||
>
|
||
<el-option
|
||
v-for="option in triggerTypeOptions"
|
||
:key="option.value"
|
||
:label="option.label"
|
||
:value="option.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
|
||
<!-- 设备属性条件配置 -->
|
||
<div v-if="isDevicePropertyTrigger" class="space-y-16px">
|
||
<!-- 产品设备选择 -->
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="产品" required>
|
||
<ProductSelector
|
||
:model-value="condition.productId"
|
||
@update:model-value="(value) => updateConditionField('productId', value)"
|
||
@change="handleProductChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="设备" required>
|
||
<DeviceSelector
|
||
:model-value="condition.deviceId"
|
||
@update:model-value="(value) => updateConditionField('deviceId', value)"
|
||
:product-id="condition.productId"
|
||
@change="handleDeviceChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
|
||
<!-- 属性配置 -->
|
||
<el-row :gutter="16">
|
||
<!-- 属性/事件/服务选择 -->
|
||
<el-col :span="6">
|
||
<el-form-item label="监控项" required>
|
||
<PropertySelector
|
||
:model-value="condition.identifier"
|
||
@update:model-value="(value) => updateConditionField('identifier', value)"
|
||
:trigger-type="triggerType"
|
||
:product-id="condition.productId"
|
||
:device-id="condition.deviceId"
|
||
@change="handlePropertyChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
<!-- 操作符选择 - 服务调用不需要操作符 -->
|
||
<el-col v-if="triggerType !== IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE" :span="6">
|
||
<el-form-item label="操作符" required>
|
||
<OperatorSelector
|
||
:model-value="condition.operator"
|
||
@update:model-value="(value) => updateConditionField('operator', value)"
|
||
:property-type="propertyType"
|
||
@change="handleOperatorChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
<!-- 值输入 -->
|
||
<el-col :span="triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE ? 18 : 12">
|
||
<el-form-item
|
||
:label="
|
||
triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE
|
||
? '服务参数'
|
||
: '比较值'
|
||
"
|
||
required
|
||
>
|
||
<!-- 服务调用参数配置 -->
|
||
<JsonParamsInput
|
||
v-if="triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE"
|
||
:model-value="condition.value"
|
||
@update:model-value="(value) => updateConditionField('value', value)"
|
||
type="service"
|
||
:config="{ service: propertyConfig }"
|
||
placeholder="请输入JSON格式的服务参数"
|
||
@validate="handleValueValidate"
|
||
/>
|
||
<!-- 事件上报参数配置 -->
|
||
<JsonParamsInput
|
||
v-else-if="triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_EVENT_POST"
|
||
:model-value="condition.value"
|
||
@update:model-value="(value) => updateConditionField('value', value)"
|
||
type="event"
|
||
:config="{ event: propertyConfig }"
|
||
placeholder="请输入JSON格式的事件参数"
|
||
@validate="handleValueValidate"
|
||
/>
|
||
<!-- 普通值输入 -->
|
||
<ValueInput
|
||
v-else
|
||
:model-value="condition.value"
|
||
@update:model-value="(value) => updateConditionField('value', value)"
|
||
:property-type="propertyType"
|
||
:operator="condition.operator"
|
||
:property-config="propertyConfig"
|
||
@validate="handleValueValidate"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
|
||
<!-- 设备状态条件配置 -->
|
||
<div v-else-if="isDeviceStatusTrigger" class="space-y-16px">
|
||
<!-- 设备状态触发器使用简化的配置 -->
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="产品" required>
|
||
<ProductSelector
|
||
:model-value="condition.productId"
|
||
@update:model-value="(value) => updateConditionField('productId', value)"
|
||
@change="handleProductChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-form-item label="设备" required>
|
||
<DeviceSelector
|
||
:model-value="condition.deviceId"
|
||
@update:model-value="(value) => updateConditionField('deviceId', value)"
|
||
:product-id="condition.productId"
|
||
@change="handleDeviceChange"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
|
||
<el-row :gutter="16">
|
||
<el-col :span="12">
|
||
<el-form-item label="操作符" required>
|
||
<el-select
|
||
:model-value="condition.operator"
|
||
@update:model-value="(value) => updateConditionField('operator', value)"
|
||
placeholder="请选择操作符"
|
||
class="w-full"
|
||
>
|
||
<el-option label="变为在线" value="online" />
|
||
<el-option label="变为离线" value="offline" />
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
|
||
<!-- 其他触发类型的提示 -->
|
||
<div v-else class="text-center py-20px">
|
||
<p class="text-14px text-[var(--el-text-color-secondary)] mb-4px">
|
||
当前触发事件类型:{{ getTriggerTypeText(triggerType) }}
|
||
</p>
|
||
<p class="text-12px text-[var(--el-text-color-placeholder)]">
|
||
此触发类型暂不需要配置额外条件
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import ProductSelector from '../selectors/ProductSelector.vue'
|
||
import DeviceSelector from '../selectors/DeviceSelector.vue'
|
||
import PropertySelector from '../selectors/PropertySelector.vue'
|
||
import OperatorSelector from '../selectors/OperatorSelector.vue'
|
||
import ValueInput from '../inputs/ValueInput.vue'
|
||
import JsonParamsInput from '../inputs/JsonParamsInput.vue'
|
||
|
||
import { TriggerFormData } from '@/api/iot/rule/scene/scene.types'
|
||
import { IotRuleSceneTriggerTypeEnum, getTriggerTypeOptions } from '@/views/iot/utils/constants'
|
||
import { useVModel } from '@vueuse/core'
|
||
|
||
/** 主条件内部配置组件 */
|
||
defineOptions({ name: 'MainConditionInnerConfig' })
|
||
|
||
const props = defineProps<{
|
||
modelValue: TriggerFormData
|
||
triggerType: number
|
||
}>()
|
||
|
||
const emit = defineEmits<{
|
||
(e: 'update:modelValue', value: TriggerFormData): void
|
||
(e: 'validate', result: { valid: boolean; message: string }): void
|
||
(e: 'trigger-type-change', value: number): void
|
||
}>()
|
||
|
||
// 响应式数据
|
||
const condition = useVModel(props, 'modelValue', emit)
|
||
// TODO @puhui999:是不是 validationMessage 非空,就是不通过哈;
|
||
const isValid = ref(true)
|
||
const validationMessage = ref('')
|
||
const propertyType = ref('')
|
||
const propertyConfig = ref<any>(null)
|
||
|
||
// 计算属性
|
||
const isDevicePropertyTrigger = computed(() => {
|
||
return (
|
||
props.triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_PROPERTY_POST ||
|
||
props.triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_EVENT_POST ||
|
||
props.triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE
|
||
)
|
||
})
|
||
|
||
const isDeviceStatusTrigger = computed(() => {
|
||
return props.triggerType === IotRuleSceneTriggerTypeEnum.DEVICE_STATE_UPDATE
|
||
})
|
||
|
||
// 获取触发类型文本
|
||
// TODO @puhui999:是不是有枚举可以服用哈;
|
||
const getTriggerTypeText = (type: number) => {
|
||
switch (type) {
|
||
case IotRuleSceneTriggerTypeEnum.DEVICE_PROPERTY_POST:
|
||
return '设备属性上报'
|
||
case IotRuleSceneTriggerTypeEnum.DEVICE_EVENT_POST:
|
||
return '设备事件上报'
|
||
case IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE:
|
||
return '设备服务调用'
|
||
case IotRuleSceneTriggerTypeEnum.DEVICE_STATE_UPDATE:
|
||
return '设备状态变化'
|
||
default:
|
||
return '未知类型'
|
||
}
|
||
}
|
||
|
||
// 触发器类型选项
|
||
const triggerTypeOptions = getTriggerTypeOptions()
|
||
|
||
// 事件处理
|
||
const updateConditionField = (field: keyof TriggerFormData, value: any) => {
|
||
;(condition.value as any)[field] = value
|
||
updateValidationResult()
|
||
}
|
||
|
||
const handleTriggerTypeChange = (type: number) => {
|
||
emit('trigger-type-change', type)
|
||
}
|
||
|
||
const handleProductChange = () => {
|
||
// 产品变化时清空设备和属性
|
||
condition.value.deviceId = undefined
|
||
condition.value.identifier = ''
|
||
updateValidationResult()
|
||
}
|
||
|
||
const handleDeviceChange = () => {
|
||
// 设备变化时清空属性
|
||
condition.value.identifier = ''
|
||
updateValidationResult()
|
||
}
|
||
|
||
const handlePropertyChange = (propertyInfo: any) => {
|
||
if (propertyInfo) {
|
||
propertyType.value = propertyInfo.type
|
||
propertyConfig.value = propertyInfo.config
|
||
}
|
||
updateValidationResult()
|
||
}
|
||
|
||
const handleOperatorChange = () => {
|
||
updateValidationResult()
|
||
}
|
||
|
||
// 处理参数验证结果
|
||
const handleValueValidate = (result: { valid: boolean; message: string }) => {
|
||
isValid.value = result.valid
|
||
validationMessage.value = result.message
|
||
emit('validate', result)
|
||
updateValidationResult()
|
||
}
|
||
|
||
// 验证逻辑
|
||
// TODO @puhui999:这个校验,是不是用更原生的 validator 哈。项目风格更统一点。
|
||
const updateValidationResult = () => {
|
||
if (isDevicePropertyTrigger.value) {
|
||
// 设备属性触发验证
|
||
if (!condition.value.productId) {
|
||
isValid.value = false
|
||
validationMessage.value = '请选择产品'
|
||
emit('validate', { valid: false, message: validationMessage.value })
|
||
return
|
||
}
|
||
|
||
if (!condition.value.deviceId) {
|
||
isValid.value = false
|
||
validationMessage.value = '请选择设备'
|
||
emit('validate', { valid: false, message: validationMessage.value })
|
||
return
|
||
}
|
||
|
||
if (!condition.value.identifier) {
|
||
isValid.value = false
|
||
validationMessage.value = '请选择监控项'
|
||
emit('validate', { valid: false, message: validationMessage.value })
|
||
return
|
||
}
|
||
|
||
// 服务调用不需要操作符
|
||
if (
|
||
props.triggerType !== IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE &&
|
||
!condition.value.operator
|
||
) {
|
||
isValid.value = false
|
||
validationMessage.value = '请选择操作符'
|
||
emit('validate', { valid: false, message: validationMessage.value })
|
||
return
|
||
}
|
||
|
||
if (!condition.value.value) {
|
||
isValid.value = false
|
||
validationMessage.value = '请输入比较值'
|
||
emit('validate', { valid: false, message: validationMessage.value })
|
||
return
|
||
}
|
||
}
|
||
|
||
isValid.value = true
|
||
validationMessage.value = '主条件配置验证通过'
|
||
emit('validate', { valid: true, message: validationMessage.value })
|
||
}
|
||
|
||
// 监听变化
|
||
watch(
|
||
() => [
|
||
condition.value.productId,
|
||
condition.value.deviceId,
|
||
condition.value.identifier,
|
||
// 服务调用不需要监听操作符
|
||
props.triggerType !== IotRuleSceneTriggerTypeEnum.DEVICE_SERVICE_INVOKE
|
||
? condition.value.operator
|
||
: null,
|
||
condition.value.value
|
||
],
|
||
() => {
|
||
updateValidationResult()
|
||
},
|
||
{ immediate: true }
|
||
)
|
||
</script>
|