index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <div class="volumn-box" :class="airData.isOpen ? 'activeShow' : ''">
  3. <div>
  4. <div class="top">
  5. <img :src="parseImgUrl('taiguv1/envmonitor', airData.isOpen ? 'active/air-con.svg' : 'air-con.svg')" alt="" />
  6. <SwitchButton
  7. :loading="allAirStatus.all?.loading"
  8. @click.stop
  9. @change="setAirStatus('isOpen')"
  10. v-model="airData.isOpen" />
  11. </div>
  12. <div class="filter-box" v-if="equipList.length > 1">
  13. <div class="filter-item" @click="searchMore">
  14. <img :src="FilterIcon" alt="" />
  15. </div>
  16. </div>
  17. </div>
  18. <div class="bottom">
  19. <div class="air-info">
  20. <div class="left">
  21. <div class="text">{{ $t(`air.空调`) }}</div>
  22. <div class="status">{{ $t("air." + airSwitchStatus.statusText) }}</div>
  23. </div>
  24. <div class="temp" v-if="airData.isOpen">{{ airData.tempSet || 16 }}<sup>℃</sup></div>
  25. </div>
  26. <!--温度⏭️-->
  27. <div class="temp-box" id="sliderAirId" v-if="airData.isOpen">
  28. <Slider
  29. v-model="airData.tempSet"
  30. :min="airData.minTempSet"
  31. :max="airData.maxTempSet"
  32. @onStart="sendEvent(true)"
  33. @onEnd="setAirStatus('tempSet')"></Slider>
  34. </div>
  35. <!--风量调整-->
  36. <div class="air-volume" v-show="airData.isOpen">
  37. <div class="volume-left">
  38. <div class="volume-top">
  39. <!-- <span :class="airData.gear == 0 ? 'span-active' : ''">0</span> -->
  40. <span :class="airData.gear == 1 ? 'span-active' : ''">1</span>
  41. <span :class="airData.gear == 2 ? 'span-active' : ''">2</span>
  42. <span :class="airData.gear == 3 ? 'span-active' : ''">3</span>
  43. <span :class="airData.gear == 4 ? 'span-active' : ''">4</span>
  44. <span :class="airData.gear == 5 ? 'span-active' : ''">5</span>
  45. </div>
  46. <div class="text">{{ $t(`air.风量调节`) }}</div>
  47. </div>
  48. <div class="volume-right">
  49. <div class="control-item" :ref="setRef" data-type="minus" @click.prevent.stop="handle('minus')">
  50. <img class="icon" :src="buttonStates.minus ? MinusIconActive : MinusIcon" />
  51. </div>
  52. <div class="control-item" :ref="setRef" data-type="plus" @click.prevent.stop="handle('plus')">
  53. <img class="icon" :src="buttonStates.plus ? AddIconActive : AddIcon" />
  54. </div>
  55. <div class="control-item" @click.prevent.stop="handle('auto')">
  56. <img class="icon" :src="airData.isAutoGear ? AutoIconActive : AutoIcon" />
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </template>
  63. <script setup>
  64. import AddIcon from "@/assets/taiguv1/svg/add_icon.svg"
  65. import AddIconActive from "@/assets/taiguv1/svg/add_icon_active.svg"
  66. import AutoIcon from "@/assets/taiguv1/svg/auto_icon.svg"
  67. import AutoIconActive from "@/assets/taiguv1/svg/auto_icon_active.svg"
  68. import MinusIcon from "@/assets/taiguv1/svg/minus_icon.svg"
  69. import MinusIconActive from "@/assets/taiguv1/svg/minus_icon_active.svg"
  70. import FilterIcon from "@/assets/taiguv1/svg/filter_icon.svg"
  71. import Slider from "@/components/slider/Slider.vue"
  72. import SwitchButton from "@/components/switch-button/SwitchButton.vue"
  73. import useDeviceControl from "@/hooks/useDeviceControl"
  74. import { useStore } from "@/store"
  75. import { parseImgUrl } from "@/utils"
  76. import eventBus from "@/utils/eventBus"
  77. import { computed, onMounted, onUnmounted, nextTick, ref, watch } from "vue"
  78. let closeUpdate = false
  79. const store = useStore()
  80. const deviceControl = useDeviceControl()
  81. const controlBtn = ref([])
  82. const setRef = el => {
  83. if (el) {
  84. if (!controlBtn.value.includes(el)) {
  85. controlBtn.value.push(el)
  86. }
  87. }
  88. }
  89. const props = defineProps({
  90. status: {
  91. type: Object,
  92. default: function () {
  93. return {
  94. isOpen: false,
  95. gear: 1,
  96. minTempSet: 16,
  97. maxTempSet: 32,
  98. tempSet: 24,
  99. isAutoGear: false,
  100. switchLoading: false
  101. }
  102. }
  103. },
  104. equipList: {
  105. type: Array,
  106. default: function () {
  107. return []
  108. }
  109. }
  110. })
  111. const airData = ref({
  112. isOpen: false,
  113. gear: 1,
  114. minTempSet: 16,
  115. maxTempSet: 32,
  116. tempSet: 16,
  117. isAutoGear: false,
  118. switchLoading: false
  119. })
  120. watch(
  121. () => props.status,
  122. (newVal, oldVal) => {
  123. if (!newVal || closeUpdate) {
  124. return
  125. }
  126. compareStatus(newVal)
  127. },
  128. { deep: true } // 添加深度监听
  129. )
  130. const compareStatus = data => {
  131. let { minTempSet, maxTempSet } = airData.value
  132. const updateAirData = () => {
  133. airData.value = {
  134. ...data,
  135. isOpen: data.runStatus === 1,
  136. minTempSet,
  137. maxTempSet
  138. }
  139. }
  140. if (allAirStatus.value.all) {
  141. const { lastSwitchStatus } = allAirStatus.value.all
  142. if (lastSwitchStatus == data.runStatus) {
  143. store.dispatch("taiguv1/setAirStatus", {
  144. id: "all",
  145. status: {
  146. loading: false,
  147. lastSwitchStatus: null
  148. }
  149. })
  150. updateAirData()
  151. } else if (lastSwitchStatus === null) {
  152. console.log("debugger")
  153. updateAirData()
  154. } else {
  155. airData.value = {
  156. ...data,
  157. isOpen: lastSwitchStatus,
  158. minTempSet,
  159. maxTempSet
  160. }
  161. }
  162. } else {
  163. updateAirData()
  164. }
  165. emit("getStatus", airData.value.isOpen)
  166. }
  167. const airSwitchStatus = computed(() => {
  168. let statusText = ""
  169. let switchStatus = false
  170. let arr = props.equipList.filter(item => item.runStatus == 1)
  171. if (arr.length == 0) {
  172. statusText = "已关闭"
  173. switchStatus = false
  174. } else {
  175. statusText = arr.length > 0 && arr.length < props.equipList.length ? "部分开启" : "已开启"
  176. switchStatus = true
  177. }
  178. return {
  179. statusText,
  180. switchStatus
  181. }
  182. })
  183. const allAirStatus = computed(() => store.state.taiguv1.airSwtichStatus)
  184. const emit = defineEmits(["getStatus"])
  185. const buttonStates = ref({
  186. minus: false,
  187. plus: false
  188. })
  189. const sendEvent = close => {
  190. closeUpdate = close
  191. eventBus.emit("close_deviece_timer", { close })
  192. }
  193. onMounted(() => {
  194. nextTick(() => {
  195. controlBtn.value.forEach(button => {
  196. button.addEventListener("touchstart", handleTouchStart)
  197. })
  198. })
  199. })
  200. const handleTouchStart = event => {
  201. const button = event.currentTarget
  202. const type = button.dataset.type
  203. button.classList.add("active")
  204. buttonStates.value[type] = true
  205. setTimeout(() => {
  206. button.classList.remove("active")
  207. buttonStates.value[type] = false
  208. }, 200)
  209. }
  210. onUnmounted(() => {
  211. controlBtn.value.forEach(button => {
  212. button.removeEventListener("touchstart", handleTouchStart)
  213. })
  214. })
  215. const debouncedSendEvent = deviceControl.debounce(sendEvent, 1500)
  216. const setAirStatus = type => {
  217. if (type == "isOpen") {
  218. store.dispatch("taiguv1/setAirStatus", {
  219. id: "all",
  220. status: {
  221. loading: true,
  222. lastSwitchStatus: airData.value.isOpen
  223. }
  224. })
  225. }
  226. const params = deviceControl.assemblyAirCommand(airData.value[type], type, props.equipList)
  227. deviceControl.sendCommands(params, () => {
  228. debouncedSendEvent(false)
  229. })
  230. emit("getStatus", airData.value.isOpen)
  231. }
  232. const debouncedSetAirStatus = deviceControl.debounce(setAirStatus, 1500)
  233. const handle = type => {
  234. if (!airData.value.gear) airData.value.gear = 1
  235. sendEvent(true)
  236. if (type === "minus") {
  237. airData.value.gear = Math.max(airData.value.gear - 1, 1)
  238. airData.value.isAutoGear = false
  239. debouncedSetAirStatus("gear")
  240. } else if (type === "plus") {
  241. airData.value.gear += 1
  242. if (airData.value.gear > 5) {
  243. airData.value.gear = 5
  244. }
  245. airData.value.isAutoGear = false
  246. debouncedSetAirStatus("gear")
  247. } else if (type === "auto") {
  248. // TODO:自动风量
  249. airData.value.isAutoGear = true
  250. debouncedSetAirStatus("auto")
  251. }
  252. }
  253. const searchMore = () => {
  254. emit("showMore", "air", true)
  255. }
  256. </script>
  257. <style lang="scss" scoped>
  258. .volumn-box {
  259. box-sizing: border-box;
  260. display: flex;
  261. flex-direction: column;
  262. justify-content: space-between;
  263. padding: 16px;
  264. width: 100%;
  265. height: 100%;
  266. border-radius: 24px 24px 44px 24px;
  267. background-color: rgba(255, 255, 255, 0.2);
  268. -webkit-backdrop-filter: blur(40px);
  269. backdrop-filter: blur(40px);
  270. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
  271. .filter-box {
  272. margin-top: 10px;
  273. display: flex;
  274. justify-content: flex-end;
  275. gap: 10px;
  276. .filter-item {
  277. display: flex;
  278. width: 36px;
  279. height: 36px;
  280. justify-content: center;
  281. align-items: center;
  282. gap: 10px;
  283. flex-shrink: 0;
  284. border-radius: 60px;
  285. background: var(--White-White-40, rgba(255, 255, 255, 0.4));
  286. }
  287. }
  288. .top {
  289. display: flex;
  290. justify-content: space-between;
  291. align-items: center;
  292. img {
  293. width: 30px;
  294. height: 30px;
  295. }
  296. }
  297. .bottom {
  298. width: 100%;
  299. .air-info {
  300. display: flex;
  301. justify-content: space-between;
  302. align-items: end;
  303. .temp {
  304. font-family: Jost;
  305. font-size: 20px;
  306. font-weight: 300;
  307. line-height: 28px;
  308. color: rgba(0, 20, 40, 1);
  309. sup {
  310. font-family: Jost;
  311. font-size: 11px;
  312. font-weight: 400;
  313. line-height: 15px;
  314. color: rgba(0, 20, 40, 1);
  315. }
  316. }
  317. }
  318. .text {
  319. font-family: PingFang SC;
  320. font-size: 16px;
  321. font-weight: 300;
  322. line-height: 22px;
  323. letter-spacing: 0.02em;
  324. text-align: left;
  325. text-underline-position: from-font;
  326. text-decoration-skip-ink: none;
  327. color: rgba(255, 255, 255, 1);
  328. padding-bottom: 2px;
  329. }
  330. .status {
  331. font-family: PingFang SC;
  332. font-size: 11px;
  333. font-weight: 400;
  334. line-height: 15px;
  335. letter-spacing: 0.02em;
  336. color: rgba(255, 255, 255, 0.4);
  337. }
  338. .temp-box {
  339. margin-top: 8px;
  340. background: rgba(255, 255, 255, 0.6);
  341. width: 100%;
  342. height: 34px;
  343. border-radius: 12px;
  344. }
  345. }
  346. .switch-btn {
  347. margin-top: 0;
  348. width: 50px !important;
  349. height: 28px !important;
  350. border: none;
  351. }
  352. }
  353. .activeShow {
  354. background: rgba(255, 255, 255, 0.8);
  355. // -webkit-backdrop-filter: blur(40px);
  356. // backdrop-filter: blur(40px);
  357. box-shadow: 0px 10px 20px 0px rgba(0, 20, 40, 0.1);
  358. .bottom {
  359. .text {
  360. color: rgba(0, 20, 40, 1);
  361. }
  362. .status {
  363. color: rgba(116, 128, 141, 1);
  364. }
  365. }
  366. }
  367. .air-volume {
  368. display: flex;
  369. margin-top: 4px;
  370. .volume-left {
  371. width: 69px;
  372. .volume-top {
  373. padding-bottom: 2px;
  374. height: 3.33vh;
  375. line-height: 1;
  376. span {
  377. display: inline-block;
  378. margin-right: 5px;
  379. font-family: Jost;
  380. font-size: 12px;
  381. font-weight: 400;
  382. line-height: 17px;
  383. color: rgba(116, 128, 141, 1);
  384. }
  385. .span-active {
  386. color: rgba(0, 20, 40, 1);
  387. font-size: 16px;
  388. line-height: 22px;
  389. }
  390. }
  391. .text {
  392. font-family: PingFang SC;
  393. font-size: 11px;
  394. font-weight: 400;
  395. line-height: 15px;
  396. letter-spacing: 0.02em;
  397. color: rgba(0, 20, 40, 1);
  398. }
  399. }
  400. .volume-right {
  401. width: 120px;
  402. display: flex;
  403. justify-content: space-between;
  404. .control-item {
  405. width: 40px;
  406. height: 40px;
  407. text-align: center;
  408. .icon {
  409. margin-top: 8px;
  410. width: 28.3px;
  411. height: 28.3px;
  412. }
  413. }
  414. }
  415. }
  416. </style>