index.vue
3.83 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
<script lang="ts" setup>
import { ComponentPropsConfigType } from '/@/views/visual/packages/index.type';
import { option } from './config';
import { useComponentScale } from '/@/views/visual/packages/hook/useComponentScale';
import { computed } from 'vue';
import { ref, onMounted, unref } from 'vue';
import { useIntervalFn } from '@vueuse/core';
import { DeviceName } from '/@/views/visual/commonComponents/DeviceName';
import { useReceiveValue } from '../../../hook/useReceiveValue';
import { UpdateTime } from '/@/views/visual/commonComponents/UpdateTime';
import { DataFetchUpdateFn } from '../../../hook/socket/useSocket.type';
import { useDataFetch } from '../../../hook/socket/useSocket';
import { useDeviceProfileQueryContext } from '/@/views/visual/palette/hooks/useDeviceProfileQueryContext';
const props = defineProps<{
config: ComponentPropsConfigType<typeof option>;
}>();
const isOpenClose = ref<boolean>(true);
const time = ref<Nullable<number>>(null);
const { getDeviceProfileTslByIdWithIdentifier } = useDeviceProfileQueryContext();
const getDesign = computed(() => {
const { persetOption = {}, option } = props.config;
const {
openColor: persetOpenColor,
closeColor: persetCloseColor,
showDeviceName: persetShowDeviceName,
showTime: persetShowTime,
fontSize: persetFontSize,
} = persetOption || {};
const { componentInfo, attribute, attributeRename, deviceProfileId } = option;
const { functionName } =
getDeviceProfileTslByIdWithIdentifier?.(deviceProfileId, attribute) || {};
const { openColor, closeColor, showDeviceName, showTime, fontSize } = componentInfo || {};
return {
openColor: openColor ?? persetOpenColor,
closeColor: closeColor ?? persetCloseColor,
showDeviceName: showDeviceName ?? persetShowDeviceName,
attribute: attributeRename || functionName,
showTime: showTime ?? persetShowTime,
fontSize: fontSize || persetFontSize || 14,
};
});
const randomFn = () => {
useIntervalFn(() => {
isOpenClose.value = !unref(isOpenClose);
}, 2000);
};
const { getNumberValue } = useReceiveValue();
const updateFn: DataFetchUpdateFn = (message, attribute) => {
const { data = {} } = message;
const [latest] = data[attribute] || [];
if (!latest.length) return;
const [timespan, value] = latest;
time.value = timespan;
isOpenClose.value = Boolean(getNumberValue(value));
};
onMounted(() => {
!props.config.option.uuid && randomFn();
});
useDataFetch(props, updateFn);
const { getScale, getRatio } = useComponentScale(props);
</script>
<template>
<main
:style="getScale"
class="w-full h-full flex flex-col justify-center items-center"
:class="!getDesign.showTime && 'p-5'"
>
<DeviceName :config="config" class="text-center" />
<div class="flex-1 flex justify-center items-center flex-col" :style="getScale">
<div
:style="{
'--open-color': getDesign.openColor,
'--close-color': getDesign.closeColor,
width: (getRatio ? getRatio * 70 : 70) + 'px',
height: (getRatio ? getRatio * 70 : 70) + 'px',
}"
:class="isOpenClose ? 'switch_open' : 'switch_close'"
></div>
<div
class="text-gray-500 truncate"
:style="{
fontSize: (getRatio ? getRatio * getDesign.fontSize : getDesign.fontSize) + 'px',
}"
>{{ getDesign.attribute }}</div
>
</div>
<UpdateTime v-if="getDesign.showTime" :time="time" />
</main>
</template>
<style lang="less" scoped>
.switch_open {
background: var(--open-color);
box-shadow: var(--open-color) 0 0 10px 3px;
border-radius: 50%;
margin: 10px 0;
}
.switch_close {
background-color: var(--close-color);
box-shadow: none;
border-radius: 50%;
margin: 10px 0;
}
</style>