zhengyiming
2025-02-10 958b79ed89b9e742540f714a80261d222c0fc09b
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
import { useAppStore } from '@/store/modules/app';
import { useThrottleFn } from '@vueuse/core';
import { ScreenBreakPoints, DeviceType } from '@bole-core/core';
// import { watch, onBeforeMount, onMounted, onBeforeUnmount } from 'vue';
// import { useRoute } from 'vue-router';
 
const { body } = document;
 
export function useResizeHander() {
  const appStore = useAppStore();
 
  const { isMobile, sidebar, deviceType: currentDeviceType } = storeToRefs(appStore);
 
  const route = useRoute();
 
  const $_createDeviceType = () => {
    const rect = body.getBoundingClientRect();
    const width = rect.width;
    if (width >= ScreenBreakPoints.md) {
      return DeviceType.Desktop;
    } else if (width >= ScreenBreakPoints.sm) {
      return DeviceType.Pad;
    } else {
      return DeviceType.Phone;
    }
  };
 
  const $_resizeHandler = useThrottleFn(() => {
    if (!document.hidden) {
      appStore.changeClientHeight(document.body.clientHeight);
      const deviceType = $_createDeviceType();
      if (deviceType !== currentDeviceType.value) {
        appStore.toggleDevice(deviceType);
      }
      if (isMobile.value) {
        appStore.closeSideBar({ withoutAnimation: true });
      }
    }
  }, 300);
 
  watch(route, () => {
    if (isMobile.value && sidebar.value.opened) {
      appStore.closeSideBar({ withoutAnimation: false });
    }
  });
 
  onBeforeMount(() => {
    window.addEventListener('resize', $_resizeHandler);
  });
 
  onMounted(() => {
    const deviceType = $_createDeviceType();
    appStore.changeClientHeight(document.body.clientHeight);
    if (deviceType) {
      appStore.toggleDevice(deviceType);
      if (isMobile.value) {
        appStore.closeSideBar({ withoutAnimation: true });
      }
    }
  });
 
  onBeforeUnmount(() => {
    window.removeEventListener('resize', $_resizeHandler);
  });
}