index.vue 15.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
<template>
  <div style="margin-left: 0.6vw">
    <!-- 报警类型和传递报警-->
    <div>
      <div class="alert-type" style="margin-left: -2.1vw; margin-top: 1vh">
        <BasicForm @register="registerForm"
      /></div>
      <div style="margin-top: -15px">
        <div style="margin-left: -8px; margin-top: -10px">
          <BasicForm
            @register="registerFormHighSetting"
            style="margin-left: 12px; margin-top: -10px"
          >
            <template #checkBox="{ model, field }">
              <Checkbox v-model:checked="model[field]">传递报警</Checkbox>
            </template>
          </BasicForm>
        </div>
      </div>
    </div>
    <!-- 报警类型和传递报警 -->
    <!-- 创建报警规则 -->
    <div style="margin-top: -6vh">
      <p style="margin-left: 10px; font-size: medium">创建报警规则</p>
      <p v-if="createAlarmRuleData.length === 0" style="text-align: center; font-size: large"
        >请添加创建报警规则</p
      >
      <div v-if="createAlarmRuleData.length > 0">
        <template v-for="(item, index) in createAlarmRuleData" :key="index">
          <span style="display: none">{{ item }}</span>
          <span style="display: none">{{ index }}</span>
          <div class="cursor-pointer" style="position: relative; top: 15.5vh; right: -40.8vw">
            <img
              style="cursor: pointer"
              @click="removeAddCreateRuleFunc(index)"
              alt="移除"
              src="../../../../../../src/assets/images/close.png"
            />
          </div>
          <div style="width: 38vw; height: 30vh; border: 1px solid grey; border-radius: 4px">
            <div style="margin-top: 1vh">
              <AlarmSeverityCpn ref="AlarmSeverityRef" />
              <DetailTemplateCpn ref="DetailTemplateRef" />
              <AlarmRuleConditionsCpn
                ref="AlarmRuleConditionsRef"
                @register="registerAlarmRuleConditionsModal"
                @getAllFieldsRule="getAlarmRuleConditionsValFunc"
              />
              <EnableRuleCpn
                ref="EnableRuleRef"
                @register="registerEnableRuleModal"
                @getAllFieldsEnab="getEnableRuleFunc"
              />
              <div style="margin-left: 0.5vw">
                <span style="color: red">请添加报警规则条件:</span>
                <a-button
                  style="border-radius: 10px"
                  class="mt-5"
                  @click="clickAddAlarmRuleConditionsFunc"
                  ><PlusCircleOutlined
                /></a-button>
                <div>
                  <template v-for="(item1, index1) in formatAlarmRuleConditions" :key="index1">
                    <p v-if="index1 == index">
                      报警规则条件:{{ formatAlarmRuleConditionsFunc(item1) }}
                    </p>
                  </template>
                </div>
              </div>
              <div style="margin-left: 0.5vw">
                <span style="color: red">启用规则:</span>
                <a-button style="border-radius: 10px" class="mt-5" @click="clickAddEnableRuleFunc"
                  ><PlusCircleOutlined
                /></a-button>
                <div>
                  <p v-if="formatEnableRule.length == 0">始终启用</p>
                  <template v-for="(item2, index2) in formatEnableRule" :key="index2">
                    <p v-if="index2 == index"> 启用规则:{{ formatEnableRuleFunc(item2) }} </p>
                  </template>
                </div>
              </div>
              <div></div>
              <div></div>
            </div>
          </div>
        </template>
      </div>
      <div>
        <a-button style="border-radius: 10px" class="mt-5" @click="clickAddCreateRuleFunc"
          ><PlusCircleOutlined />添加创建条件</a-button
        >
      </div>
      <!-- 清除报警规则 -->
      <div style="margin-top: 2vh">
        <p style="margin-left: 10px; font-size: medium">清除报警规则</p>
        <div
          v-if="isClearStatus"
          class="cursor-pointer"
          style="position: relative; top: 15.5vh; right: -40.8vw"
        >
          <img
            style="cursor: pointer"
            @click="removeAddClearRuleFunc"
            alt="移除"
            src="../../../../../../src/assets/images/close.png"
          />
        </div>
        <div
          v-if="isClearStatus"
          style="width: 38vw; height: 30vh; border: 1px solid grey; border-radius: 4px"
        >
          <div style="margin-top: 2vh">
            <div style="height: 3vh">
              <BasicForm @register="registerFormChangeClearDetail" />
            </div>
            <AlarmRuleConditionsCpn
              ref="AlarmRuleConditionsRef"
              @register="registerClearAlarmRuleConditionsModal"
              @getAllFieldsRule="getClearAlarmRuleConditionsValFunc"
            />
            <EnableRuleCpn
              ref="EnableRuleRef"
              @register="registerClearEnableRuleModal"
              @getAllFieldsEnab="getClearEnableRuleFunc"
            />
            <div style="margin-left: 0.5vw">
              <span style="color: red">请添加报警规则条件:</span>
              <a-button
                style="border-radius: 10px"
                class="mt-5"
                @click="clickClearAlarmRuleConditionsFunc"
                ><PlusCircleOutlined
              /></a-button>
              <div>
                <template v-for="(item3, index3) in formatClearAlarmRuleConditions" :key="index3">
                  <span style="display: none">{{ index3 }}</span>
                  <p> 报警规则条件:{{ formatClearAlarmRuleConditionsFunc(item3) }} </p>
                </template>
              </div>
            </div>
            <div style="margin-left: 0.5vw">
              <span style="color: red">启用规则:</span>
              <a-button style="border-radius: 10px" class="mt-5" @click="clickClearEnableRuleFunc"
                ><PlusCircleOutlined
              /></a-button>
              <div>
                <p v-if="formatEnableRule.length == 0">始终启用</p>
                <template v-for="(item4, index4) in formatClearEnableRule" :key="index4">
                  <span style="display: none">{{ index4 }}</span>
                  <p> 启用规则:{{ formatClearEnableRuleFunc(item4) }} </p>
                </template>
              </div>
            </div>
            <div></div>
            <div></div>
          </div>
        </div>
        <div>
          <a-button style="border-radius: 10px" class="mt-5" @click="clickAddClearRuleFunc"
            ><PlusCircleOutlined />添加清除条件</a-button
          >
        </div>
      </div>
      <!-- 清除报警规则 -->
    </div>
    <!-- 创建报警规则 -->
  </div>
</template>

<script lang="ts">
  import { defineComponent, ref, getCurrentInstance, nextTick, reactive } from 'vue';
  import { BasicForm, useForm } from '/@/components/Form';
  import { step3Schemas, step3HighSetting, formChangeDetailSchema } from '../data';
  import { Checkbox } from 'ant-design-vue';
  import { PlusCircleOutlined } from '@ant-design/icons-vue';
  import AlarmSeverityCpn from '../cpns/alarmseverity/index.vue';
  import DetailTemplateCpn from '../cpns/detailtemplate/index.vue';
  import AlarmRuleConditionsCpn from '../cpns/alarmruleconditions/index.vue';
  import EnableRuleCpn from '../cpns/enablerule/index.vue';
  import { useModal } from '/@/components/Modal';
  import { formatAlarmRuleConditionsData, formatEnableRuleData } from '../common/format-data/index';

  export default defineComponent({
    components: {
      BasicForm,
      Checkbox,
      PlusCircleOutlined,
      AlarmSeverityCpn,
      DetailTemplateCpn,
      AlarmRuleConditionsCpn,
      EnableRuleCpn,
    },

    setup() {
      const { proxy } = getCurrentInstance() as any;
      const createAlarmRuleData: any = ref([1]);
      const AlarmRuleConditionsRef = ref(null);
      const EnableRuleRef = ref(null);
      const formatAlarmRuleConditions: any = ref([]);
      const formatClearAlarmRuleConditions: any = ref([]);
      const formatEnableRule: any = ref([]);
      const formatClearEnableRule: any = ref({});
      let alaramsObj: any = reactive({
        alarmType: null,
        propagate: null,
        propagateRelationTypes: null,
        clearRule: {},
        createRules: {},
      });
      const AlarmSeverityRef = ref(null);
      const DetailTemplateRef = ref(null);
      const tempDetailTemplateData: any = ref([]);
      const isClearStatus = ref(false);

      const [registerAlarmRuleConditionsModal, { openModal: openModalAlarmRuleConditions }] =
        useModal();
      const [registerEnableRuleModal, { openModal: openModalEnableRule }] = useModal();
      const [
        registerClearAlarmRuleConditionsModal,
        { openModal: openModalClearAlarmRuleConditions },
      ] = useModal();
      const [registerClearEnableRuleModal, { openModal: openModalClearEnableRule }] = useModal();
      const [registerForm, { validate: getAlarmTypeValFunc }] = useForm({
        labelWidth: 120,
        schemas: step3Schemas,
        showResetButton: false,
        showSubmitButton: false,
      });
      const [registerFormHighSetting, { getFieldsValue: getDeliverAlertsValFunc }] = useForm({
        labelWidth: 120,
        schemas: step3HighSetting,
        showResetButton: false,
        showSubmitButton: false,
        actionColOptions: {
          span: 24,
        },
      });
      const [registerFormChangeClearDetail, { getFieldsValue: getRegisterFormClearChangeDetail }] =
        useForm({
          labelWidth: 120,
          schemas: formChangeDetailSchema,
          showResetButton: false,
          showSubmitButton: false,
          actionColOptions: {
            span: 24,
          },
        });

      const clickAddCreateRuleFunc = () => {
        createAlarmRuleData.value.push(1);
        getAddCreateRuleFunc();
      };
      /**
       * 获取创建报警规则数据
       */
      const getAddCreateRuleFunc = () => {
        const val4 = proxy.$refs.AlarmSeverityRef?.getFieldsValueFunc();
        const val5 = proxy.$refs.DetailTemplateRef?.getFieldsValueFunc();
        let kongDetail = {};
        let kongRule = {};
        let kongEnable = {};
        tempDetailTemplateData.value.push(val5 as never);
        tempDetailTemplateData.value.forEach((f) => {
          kongDetail = f;
        });
        formatAlarmRuleConditions.value.forEach((f) => {
          kongRule = f;
        });
        formatEnableRule.value.forEach((f) => {
          kongEnable = f;
        });
        alaramsObj.createRules[val4?.default] = {
          ...kongDetail,
          ...{ condition: Object.keys(kongRule).length == 0 ? null : kongRule },
          ...{ schedule: Object.keys(kongEnable).length == 0 ? null : kongEnable },
        };
      };
      const clickAddClearRuleFunc = () => {
        isClearStatus.value = true;
        const val6 = getRegisterFormClearChangeDetail();
        let kongClearRule = {};
        formatClearAlarmRuleConditions.value.forEach((f) => {
          kongClearRule = f;
        });
        alaramsObj.clearRule = {
          ...val6,
          ...{
            schedule:
              Object.keys(formatClearEnableRule.value).length == 0
                ? null
                : formatClearEnableRule.value,
          },
          ...{
            condition: formatClearAlarmRuleConditions.value.length == 0 ? null : kongClearRule,
          },
        };
      };
      const removeAddClearRuleFunc = () => {
        isClearStatus.value = false;
        alaramsObj.clearRule = null;
      };
      const removeAddCreateRuleFunc = (i) => {
        let delI = i;
        createAlarmRuleData.value.splice(delI, 1);
        for (let i1 in alaramsObj.createRules) {
          if (delI) {
            delete alaramsObj.createRules[i1];
          }
        }
      };
      const clickAddAlarmRuleConditionsFunc = () => {
        nextTick(() => {
          openModalAlarmRuleConditions(true);
        });
      };
      const clickAddEnableRuleFunc = () => {
        nextTick(() => {
          openModalEnableRule(true);
        });
      };

      const clickClearAlarmRuleConditionsFunc = () => {
        nextTick(() => {
          openModalClearAlarmRuleConditions(true);
        });
      };
      const clickClearEnableRuleFunc = () => {
        nextTick(() => {
          openModalClearEnableRule(true);
        });
      };
      const getAlarmRuleConditionsValFunc = (e) => {
        formatAlarmRuleConditions.value.push({
          condition: e,
        } as never);
      };
      const getClearAlarmRuleConditionsValFunc = (e) => {
        formatClearAlarmRuleConditions.value.push({
          condition: e,
        } as never);
      };
      const formatAlarmRuleConditionsFunc = (e) => {
        let formatMap = e.condition.map((f: any) => formatAlarmRuleConditionsData(f));
        return formatMap;
      };
      const formatClearAlarmRuleConditionsFunc = (e) => {
        let formatMap = e.condition.map((f: any) => formatAlarmRuleConditionsData(f));
        return formatMap;
      };

      const getEnableRuleFunc = (e) => {
        formatEnableRule.value.push(e);
      };
      const getClearEnableRuleFunc = (e) => {
        formatClearEnableRule.value = e;
      };

      const formatEnableRuleFunc = (e) => {
        let formatMap = formatEnableRuleData(e);
        return formatMap;
      };
      const formatClearEnableRuleFunc = (e) => {
        let formatMap = formatEnableRuleData(e);
        return formatMap;
      };

      const getStep3AllDataFunc = async () => {
        const val1 = await getAlarmTypeValFunc();
        const val2 = getDeliverAlertsValFunc();
        const val3 = [];
        val3.push(val2.propagateRelationTypes as never);
        alaramsObj.alarmType = val1.alarmType;
        alaramsObj.propagate = val2.propagate;
        if (val2.propagateRelationTypes == undefined) {
          alaramsObj.propagateRelationTypes = null;
        } else {
          alaramsObj.propagateRelationTypes = val3;
        }
        getAddCreateRuleFunc();
        clickAddClearRuleFunc();
        if (alaramsObj.clearRule.condition == null) {
          isClearStatus.value = false;
        }
        return alaramsObj;
      };

      return {
        registerForm,
        registerFormHighSetting,
        clickAddCreateRuleFunc,
        createAlarmRuleData,
        clickAddClearRuleFunc,
        removeAddCreateRuleFunc,
        clickAddEnableRuleFunc,
        clickAddAlarmRuleConditionsFunc,
        AlarmRuleConditionsRef,
        EnableRuleRef,
        registerAlarmRuleConditionsModal,
        registerEnableRuleModal,
        getAlarmRuleConditionsValFunc,
        formatAlarmRuleConditions,
        formatAlarmRuleConditionsFunc,
        formatEnableRule,
        formatEnableRuleFunc,
        getEnableRuleFunc,
        getStep3AllDataFunc,
        AlarmSeverityRef,
        DetailTemplateRef,
        isClearStatus,
        removeAddClearRuleFunc,
        formatClearAlarmRuleConditions,
        formatClearAlarmRuleConditionsFunc,
        formatClearEnableRule,
        formatClearEnableRuleFunc,
        registerClearAlarmRuleConditionsModal,
        registerClearEnableRuleModal,
        clickClearAlarmRuleConditionsFunc,
        clickClearEnableRuleFunc,
        getClearAlarmRuleConditionsValFunc,
        getClearEnableRuleFunc,
        registerFormChangeClearDetail,
      };
    },
  });
</script>

<style lang="less" scoped></style>