index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <div class="volumn-box" :class="lampData.isOpen ? 'active' : ''">
  3. <div>
  4. <div class="top">
  5. <img :src="parseImgUrl('taiguv1/envmonitor', lampData.isOpen ? 'active/lamp.svg' : 'lamp.svg')" alt="" />
  6. <div class="top-right">
  7. <SwitchButton
  8. :loading="allLampStatus.all?.loading"
  9. @click.stop
  10. v-model="lampData.isOpen"
  11. @change="setLampStatus('isOpen')" />
  12. </div>
  13. </div>
  14. <div class="filter-box">
  15. <div class="filter-item" @click="searchMore">
  16. <img :src="FilterIcon" alt="" />
  17. </div>
  18. </div>
  19. </div>
  20. <div class="bottom">
  21. <div class="bottom-box">
  22. <div class="bottom-left">
  23. <div class="text">{{ $t(`lamp.光照`) }}</div>
  24. <div class="status">{{ $t(`lamp.${lampData.lampStatusText}`) }}</div>
  25. </div>
  26. <div class="bottom-right" v-if="lampData.isOpen">{{ lampData.brightValue || 0 }} <sup>%</sup></div>
  27. </div>
  28. <div class="lamp-slider" v-if="lampData.isOpen">
  29. <Slider
  30. v-model="lampData.brightValue"
  31. :min="min"
  32. :max="max"
  33. @onStart="sendEvent(true)"
  34. @onEnd="setLampStatus('brightValue')"></Slider>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script setup>
  40. import FilterIcon from "@/assets/taiguv1/svg/filter_icon.svg"
  41. import Slider from "@/components/slider/Slider.vue"
  42. import SwitchButton from "@/components/switch-button/SwitchButton.vue"
  43. import useDeviceControl from "@/hooks/useDeviceControl"
  44. import { useStore } from "@/store"
  45. import { parseImgUrl } from "@/utils"
  46. import { computed, ref, watch } from "vue"
  47. import eventBus from "@/utils/eventBus"
  48. const min = 0
  49. const max = 100
  50. let closeUpdate = false
  51. const emit = defineEmits(["getStatus", "showMore"])
  52. // 接收父组件传递的开关状态
  53. const props = defineProps({
  54. lampStatus: {
  55. type: Object,
  56. default: () => {
  57. return {
  58. isOpen: false,
  59. brightValue: 0
  60. }
  61. }
  62. },
  63. equipList: {
  64. type: Array,
  65. default: () => {
  66. return []
  67. }
  68. }
  69. })
  70. const store = useStore()
  71. const deviceControl = useDeviceControl()
  72. const allLampStatus = computed(() => store.state.taiguv1.lampSwitchStatus)
  73. const searchMore = () => {
  74. emit("showMore", "lamp", true)
  75. }
  76. const lampData = ref({
  77. isOpen: false,
  78. brightValue: 0
  79. })
  80. watch(
  81. () => props.lampStatus,
  82. (newVal, oldVal) => {
  83. if (!newVal || closeUpdate) {
  84. return
  85. }
  86. compareStatus(newVal)
  87. },
  88. { deep: true } // 添加深度监听
  89. )
  90. const compareStatus = data => {
  91. const updateLampData = () => {
  92. lampData.value = {
  93. ...data,
  94. isOpen: data.isOpen
  95. }
  96. }
  97. if (allLampStatus.value.all) {
  98. if (allLampStatus.value.all.lastSwitchStatus == data.isOpen) {
  99. store.dispatch("taiguv1/setLampStatus", {
  100. id: "all",
  101. status: {
  102. loading: false,
  103. lastSwitchStatus: null
  104. }
  105. })
  106. updateLampData()
  107. } else if (allLampStatus.value.all.lastSwitchStatus === null) {
  108. updateLampData()
  109. } else {
  110. lampData.value = {
  111. ...data,
  112. isOpen: allLampStatus.value.all.lastSwitchStatus
  113. }
  114. }
  115. } else {
  116. lampData.value = {
  117. ...data,
  118. isOpen: data.isOpen
  119. }
  120. }
  121. emit("getStatus", lampData.value.isOpen)
  122. }
  123. const sendEvent = close => {
  124. closeUpdate = close
  125. eventBus.emit("close_deviece_timer", { close })
  126. }
  127. const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)
  128. const setLampStatus = type => {
  129. if (type == "isOpen") {
  130. store.dispatch("taiguv1/setLampStatus", {
  131. id: "all",
  132. status: {
  133. loading: true,
  134. lastSwitchStatus: lampData.value.isOpen
  135. }
  136. })
  137. }
  138. sendEvent(true)
  139. const params = deviceControl.assemblyLampCommand(lampData.value[type], type, props.equipList)
  140. deviceControl.sendCommands(params, () => {
  141. debouncedSendEvent(false)
  142. })
  143. emit("getStatus", lampData.value.isOpen)
  144. }
  145. </script>
  146. <style lang="scss" scoped>
  147. .volumn-box {
  148. box-sizing: border-box;
  149. display: flex;
  150. flex-direction: column;
  151. justify-content: space-between;
  152. padding: 16px;
  153. width: 100%;
  154. height: 100%;
  155. border-radius: 24px 24px 44px 24px;
  156. background-color: rgba(255, 255, 255, 0.2);
  157. -webkit-backdrop-filter: blur(40px);
  158. backdrop-filter: blur(40px);
  159. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
  160. .top {
  161. display: flex;
  162. justify-content: space-between;
  163. align-items: center;
  164. img {
  165. width: 30px;
  166. height: 30px;
  167. }
  168. }
  169. .filter-box {
  170. margin-top: 10px;
  171. display: flex;
  172. justify-content: flex-end;
  173. gap: 10px;
  174. .filter-item {
  175. display: flex;
  176. width: 36px;
  177. height: 36px;
  178. justify-content: center;
  179. align-items: center;
  180. gap: 10px;
  181. flex-shrink: 0;
  182. border-radius: 60px;
  183. background: var(--White-White-40, rgba(255, 255, 255, 0.4));
  184. }
  185. }
  186. .bottom {
  187. .bottom-box {
  188. flex: 1;
  189. display: flex;
  190. justify-content: space-between;
  191. }
  192. .text {
  193. width: 100%;
  194. //styleName: Chi/Body Large;
  195. font-family: PingFang SC;
  196. font-size: 16px;
  197. font-weight: 300;
  198. line-height: 22px;
  199. letter-spacing: 0.02em;
  200. text-align: left;
  201. text-underline-position: from-font;
  202. text-decoration-skip-ink: none;
  203. color: rgba(255, 255, 255, 1);
  204. padding-bottom: 2px;
  205. }
  206. .status {
  207. width: 100%;
  208. //styleName: Chi/Body XS;
  209. font-family: PingFang SC;
  210. font-size: 11px;
  211. font-weight: 400;
  212. line-height: 15px;
  213. letter-spacing: 0.02em;
  214. color: rgba(255, 255, 255, 0.4);
  215. }
  216. .bottom-right {
  217. text-align: center;
  218. color: var(--Blue, #001428);
  219. /* En/H2 */
  220. font-family: Jost;
  221. font-size: 20px;
  222. font-style: normal;
  223. font-weight: 300;
  224. line-height: normal;
  225. width: 50px;
  226. height: 30px;
  227. // color: var(--Blue, #001428);
  228. align-self: end;
  229. line-height: 100%;
  230. display: flex;
  231. align-items: center;
  232. justify-content: end;
  233. }
  234. .lamp-slider {
  235. margin-top: 8px;
  236. background: rgba(255, 255, 255, 0.6);
  237. width: 100%;
  238. height: 34px;
  239. border-radius: 12px;
  240. }
  241. }
  242. // .switch-btn {
  243. // // margin-top: 0;
  244. // // width: 50px !important;
  245. // // height: 28px !important;
  246. // // border: none;
  247. // }
  248. }
  249. .active {
  250. background: rgba(255, 255, 255, 0.8);
  251. // -webkit-backdrop-filter: blur(40px);
  252. // backdrop-filter: blur(40px);
  253. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
  254. .bottom {
  255. .text {
  256. color: rgba(0, 20, 40, 1);
  257. }
  258. .status {
  259. color: rgba(116, 128, 141, 1);
  260. }
  261. .bottom-right {
  262. font-family: Jost;
  263. color: rgba(0, 20, 40, 1);
  264. }
  265. }
  266. }
  267. </style>