vben
2020-11-23 ba068ba1df797627e88dcf61af3ea13d0c2929ab
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
import { defineComponent, unref, computed } from 'vue';
import { Layout, BackTop } from 'ant-design-vue';
import LayoutHeader from './header/LayoutHeader';
 
import { appStore } from '/@/store/modules/app';
import LayoutContent from './LayoutContent';
import LayoutSideBar from './sider/LayoutSideBar';
import SettingBtn from './setting/index.vue';
import MultipleTabs from './multitabs/index';
 
import { MenuModeEnum, MenuTypeEnum } from '/@/enums/menuEnum';
import { useFullContent } from '/@/hooks/web/useFullContent';
 
import LockPage from '/@/views/sys/lock/index.vue';
import { registerGlobComp } from '/@/components/registerGlobComp';
 
import './index.less';
export default defineComponent({
  name: 'DefaultLayout',
  setup() {
    // ! Only register global components here
    // ! Can reduce the size of the first screen code
    // default layout It is loaded after login. So it won’t be packaged to the first screen
    registerGlobComp();
 
    const { getFullContent } = useFullContent();
 
    const getProjectConfigRef = computed(() => appStore.getProjectConfig);
 
    const getLockMainScrollStateRef = computed(() => appStore.getLockMainScrollState);
 
    const showHeaderRef = computed(() => {
      const {
        headerSetting: { show },
      } = unref(getProjectConfigRef);
      return show;
    });
 
    const showMixHeaderRef = computed(() => {
      const {
        menuSetting: { type },
      } = unref(getProjectConfigRef);
      return type !== MenuTypeEnum.SIDEBAR && unref(showHeaderRef);
    });
 
    const getIsLockRef = computed(() => {
      const { getLockInfo } = appStore;
      const { isLock } = getLockInfo;
      return isLock;
    });
 
    const showSideBarRef = computed(() => {
      const {
        menuSetting: { show, mode, split },
      } = unref(getProjectConfigRef);
      return split || (show && mode !== MenuModeEnum.HORIZONTAL && !unref(getFullContent));
    });
 
    const showFullHeaderRef = computed(() => {
      return !unref(getFullContent) && unref(showMixHeaderRef) && unref(showHeaderRef);
    });
 
    const showInsetHeaderRef = computed(() => {
      return !unref(getFullContent) && !unref(showMixHeaderRef) && unref(showHeaderRef);
    });
 
    const fixedHeaderClsRef = computed(() => {
      const {
        headerSetting: { fixed },
      } = unref(getProjectConfigRef);
      const fixedHeaderCls = fixed
        ? 'fixed' + (unref(getLockMainScrollStateRef) ? ' lock' : '')
        : '';
      return fixedHeaderCls;
    });
 
    const showTabsRef = computed(() => {
      const {
        multiTabsSetting: { show },
      } = unref(getProjectConfigRef);
      return show && !unref(getFullContent);
    });
 
    const showClassSideBarRef = computed(() => {
      const {
        menuSetting: { split, hidden },
      } = unref(getProjectConfigRef);
      return split ? hidden : true;
    });
 
    function getTarget(): any {
      const {
        headerSetting: { fixed },
      } = unref(getProjectConfigRef);
      return document.querySelector(`.default-layout__${fixed ? 'main' : 'content'}`);
    }
 
    return () => {
      const { useOpenBackTop, showSettingButton } = unref(getProjectConfigRef);
      return (
        <Layout class="default-layout relative">
          {() => (
            <>
              {/* lock page */}
              {unref(getIsLockRef) && <LockPage />}
              {/* back top */}
              {useOpenBackTop && <BackTop target={getTarget} />}
              {/* open setting drawer */}
              {showSettingButton && <SettingBtn />}
 
              {unref(showFullHeaderRef) && <LayoutHeader />}
 
              <Layout>
                {() => (
                  <>
                    {unref(showSideBarRef) && (
                      <LayoutSideBar class={unref(showClassSideBarRef) ? '' : 'hidden'} />
                    )}
                    <Layout class={[`default-layout__content`, unref(fixedHeaderClsRef)]}>
                      {() => (
                        <>
                          {unref(showInsetHeaderRef) && <LayoutHeader />}
 
                          {unref(showTabsRef) && <MultipleTabs />}
 
                          <LayoutContent class={unref(fixedHeaderClsRef)} />
                        </>
                      )}
                    </Layout>
                  </>
                )}
              </Layout>
            </>
          )}
        </Layout>
      );
    };
  },
});