SwitchWithIcon.vue
1.94 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
<script lang="ts">
  export default {
    inheritAttrs: false,
  };
</script>
<script lang="ts" setup>
  import { Switch } from 'ant-design-vue';
  import { computed, ref, watchEffect } from 'vue';
  import { DEFAULT_RADIO_RECORD, fontSize, RadioRecord } from '../../detail/config/util';
  import SvgIcon from '/@/components/Icon/src/SvgIcon.vue';
  import {
    ControlComponentDefaultConfig,
    ControlComponentValue,
    ControlComponentLayout,
  } from './control.config';
  import { useSendCommand } from './useSendCommand';
  const props = withDefaults(
    defineProps<{
      layout?: ControlComponentLayout;
      value?: ControlComponentValue;
      radio?: RadioRecord;
    }>(),
    {
      value: () => ControlComponentDefaultConfig,
    }
  );
  const getRadio = computed(() => {
    return props.radio || DEFAULT_RADIO_RECORD;
  });
  const checked = ref(!!Number(props.value.value));
  const { sendCommand } = useSendCommand();
  const handleChange = (value: boolean) => {
    sendCommand(props.value, value);
  };
  watchEffect(() => {
    checked.value = !!Number(props.value.value);
  });
</script>
<template>
  <div class="flex items-center w-full h-full p-4">
    <div class="flex-auto flex truncate">
      <SvgIcon
        :name="props.value?.icon! || ControlComponentDefaultConfig.icon!"
        prefix="iconfont"
        :style="{
          color: props.value?.iconColor || ControlComponentDefaultConfig.iconColor,
          width: fontSize({ radioRecord: getRadio, basic: 30, min: 16 }),
          height: fontSize({ radioRecord: getRadio, basic: 30, min: 16 }),
        }"
      />
      <span
        class="flex-auto mx-4 flex items-center truncate inline-block text-gray-700"
        :style="{ color: props.value.fontColor || ControlComponentDefaultConfig.fontColor }"
      >
        {{ props.value.attributeRename || props.value.attribute }}
      </span>
    </div>
    <Switch v-model:checked="checked" @change="handleChange" />
  </div>
</template>