vben
2021-01-02 5091a875ab520c51aec4c57cdd200d68016958ab
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<template>
  <ScrollContainer ref="wrapperRef" :style="wrapStyle">
    <div ref="spinRef" :style="spinStyle" v-loading="loading" :loading-tip="loadingTip">
      <slot />
    </div>
  </ScrollContainer>
</template>
<script lang="ts">
  import type { ModalWrapperProps } from '../types';
  import type { CSSProperties } from 'vue';
 
  import {
    defineComponent,
    computed,
    ref,
    watchEffect,
    unref,
    watch,
    onMounted,
    nextTick,
    onUnmounted,
  } from 'vue';
  import { Spin } from 'ant-design-vue';
 
  import { useWindowSizeFn } from '/@/hooks/event/useWindowSizeFn';
  import { ScrollContainer } from '/@/components/Container';
 
  // import { useElResize } from '/@/hooks/event/useElResize';
  import { propTypes } from '/@/utils/propTypes';
  import { createModalContext } from '../hooks/useModalContext';
 
  export default defineComponent({
    name: 'ModalWrapper',
    components: { Spin, ScrollContainer },
    props: {
      loading: propTypes.bool,
      useWrapper: propTypes.bool.def(true),
      modalHeaderHeight: propTypes.number.def(50),
      modalFooterHeight: propTypes.number.def(54),
      minHeight: propTypes.number.def(200),
      height: propTypes.number,
      footerOffset: propTypes.number.def(0),
      visible: propTypes.bool,
      fullScreen: propTypes.bool,
      loadingTip: propTypes.string,
    },
    emits: ['height-change', 'ext-height'],
    setup(props: ModalWrapperProps, { emit }) {
      const wrapperRef = ref<ComponentRef>(null);
      const spinRef = ref<ElRef>(null);
      const realHeightRef = ref(0);
      const minRealHeightRef = ref(0);
 
      let stopElResizeFn: Fn = () => {};
 
      useWindowSizeFn(setModalHeight);
 
      createModalContext({
        redoModalHeight: setModalHeight,
      });
 
      const wrapStyle = computed(
        (): CSSProperties => {
          return {
            minHeight: `${props.minHeight}px`,
            height: `${unref(realHeightRef)}px`,
            // overflow: 'auto',
          };
        }
      );
 
      const spinStyle = computed(
        (): CSSProperties => {
          return {
            // padding 28
            height: `${unref(realHeightRef) - 28}px`,
          };
        }
      );
 
      watchEffect(() => {
        props.useWrapper && setModalHeight();
      });
 
      watch(
        () => props.fullScreen,
        (v) => {
          setModalHeight();
          if (!v) {
            realHeightRef.value = minRealHeightRef.value;
          } else {
            minRealHeightRef.value = realHeightRef.value;
          }
        }
      );
 
      onMounted(() => {
        const { modalHeaderHeight, modalFooterHeight } = props;
        emit('ext-height', modalHeaderHeight + modalFooterHeight);
        // listenElResize();
      });
 
      onUnmounted(() => {
        stopElResizeFn && stopElResizeFn();
      });
 
      async function setModalHeight() {
        // 解决在弹窗关闭的时候监听还存在,导致再次打开弹窗没有高度
        // 加上这个,就必须在使用的时候传递父级的visible
        if (!props.visible) return;
        const wrapperRefDom = unref(wrapperRef);
        if (!wrapperRefDom) return;
        const bodyDom = wrapperRefDom.$el.parentElement;
        if (!bodyDom) return;
        bodyDom.style.padding = '0';
        await nextTick();
 
        try {
          const modalDom = bodyDom.parentElement && bodyDom.parentElement.parentElement;
          if (!modalDom) return;
 
          const modalRect = getComputedStyle(modalDom).top;
          const modalTop = Number.parseInt(modalRect);
          let maxHeight =
            window.innerHeight -
            modalTop * 2 +
            (props.footerOffset! || 0) -
            props.modalFooterHeight -
            props.modalHeaderHeight;
 
          // 距离顶部过进会出现滚动条
          if (modalTop < 40) {
            maxHeight -= 26;
          }
          await nextTick();
          const spinEl = unref(spinRef);
 
          if (!spinEl) return;
 
          const realHeight = spinEl.scrollHeight;
 
          if (props.fullScreen) {
            realHeightRef.value =
              window.innerHeight - props.modalFooterHeight - props.modalHeaderHeight;
          } else {
            realHeightRef.value = props.height
              ? props.height
              : realHeight > maxHeight
              ? maxHeight
              : realHeight + 16 + 30;
          }
          emit('height-change', unref(realHeightRef));
        } catch (error) {
          console.log(error);
        }
      }
 
      return { wrapStyle, wrapperRef, spinRef, spinStyle };
    },
  });
</script>