index.vue 3.66 KB
<script lang="ts" setup>
  import { option } from './config';
  // import { useComponentScale } from '/@/views/visual/packages/hook/useComponentScale';
  import { ComponentPropsConfigType, MultipleDataFetchUpdateFn } from '../../../index.type';
  import { useMultipleDataFetch } from '/@/views/visual/packages/hook/useSocket';
  import { computed } from 'vue';
  import { ref } from 'vue';
  import { Progress } from 'ant-design-vue';
  import { DeviceName } from '/@/views/visual/commonComponents/DeviceName';
  import { unref } from 'vue';
  import { onMounted } from 'vue';
  import { useReceiveMessage } from '../../../hook/useReceiveMessage';
  import { buildUUID } from '/@/utils/uuid';
  import { useReceiveValue } from '../../../hook/useReceiveValue';

  const props = defineProps<{
    config: ComponentPropsConfigType<typeof option>;
  }>();

  interface PercentType {
    value: number;
    fontColor: string;
    backgroundColor: string;
    unit: string;
    id: string;
    attribute?: string;
    attributeRename?: string;
    deviceId?: string;
  }

  const defaultValue: PercentType[] = [
    {
      value: 20,
      fontColor: '#19eff',
      backgroundColor: '#19eff',
      unit: '℃',
      id: buildUUID(),
    },
    {
      value: 66,
      fontColor: '#1E8667',
      backgroundColor: '#1E8667',
      unit: '℃',
      id: buildUUID(),
    },
    {
      value: 49,
      fontColor: '#2196F3',
      backgroundColor: '#2196F3',
      unit: '℃',
      id: buildUUID(),
    },
  ];

  const getDesign = computed(() => {
    const { persetOption = {}, option } = props.config;
    const { dataSource = [] } = option || {};
    const {
      unit: presetUnit,
      fontColor: presetFontColor,
      backgroundColor: persetBackgroundColor,
    } = persetOption || {};

    return {
      dataSource: dataSource.map((item) => {
        const { unit, fontColor, backgroundColor } = item.componentInfo || {};
        const { attribute, attributeRename, deviceId } = item;
        return {
          unit: unit ?? presetUnit,
          fontColor: fontColor ?? presetFontColor,
          backgroundColor: backgroundColor ?? persetBackgroundColor,
          attribute,
          attributeRename,
          id: deviceId,
        } as PercentType;
      }),
    };
  });
  const percentList = ref(
    props.config.option.dataSource ? unref(getDesign).dataSource : defaultValue
  );
  const { forEachGroupMessage } = useReceiveMessage();

  const { getNumberValue } = useReceiveValue();
  const updateFn: MultipleDataFetchUpdateFn = (message, deviceId, attribute) => {
    forEachGroupMessage(message, deviceId, attribute, (attribute, value) => {
      percentList.value.forEach((item) => {
        if (item.id === deviceId && item.attribute === attribute) {
          item.value = getNumberValue(value);
        }
      });
    });
  };

  onMounted(() => {});

  useMultipleDataFetch(props, updateFn);
</script>

<template>
  <main class="w-full h-full flex flex-col justify-center">
    <DeviceName :config="config" />

    <div v-for="item in percentList" :key="item.id" class="flex flex-col ml-3 mr-3 items-stretch">
      <div class="flex justify-between">
        <div class="text-gray-500 text-lg truncate">
          {{ item.attributeRename || item.attribute || '温度' }}
        </div>
        <span class="text-lg" :style="{ color: item.fontColor }"
          >{{ item.value }} {{ item.unit }}</span
        >
      </div>
      <div>
        <Progress :strokeColor="item.backgroundColor" :percent="item.value" :showInfo="false" />
      </div>
    </div>
  </main>
</template>
<style lang="less" scoped>
  // :deep(.ant-progress-success-bg, .ant-progress-bg) {
  //   background: '#2196F3' !important;
  // }
</style>