vue-vben-admin/src/layouts/default/index.tsx

138 lines
4.4 KiB
TypeScript
Raw Normal View History

2020-10-31 19:51:24 +08:00
import { defineComponent, unref, computed } from 'vue';
2020-09-28 20:19:10 +08:00
import { Layout, BackTop } from 'ant-design-vue';
import LayoutHeader from './LayoutHeader';
import { appStore } from '/@/store/modules/app';
import LayoutContent from './LayoutContent';
import LayoutSideBar from './LayoutSideBar';
import SettingBtn from './setting/index.vue';
import MultipleTabs from './multitabs/index';
import { FullLoading } from '/@/components/Loading/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';
2020-09-28 20:19:10 +08:00
import './index.less';
export default defineComponent({
name: 'DefaultLayout',
setup() {
// ! 在这里才注册全局组件
// ! 可以减少首屏代码体积
// default layout是在登录后才加载的。所以不会打包到首屏去
registerGlobComp();
2020-09-28 20:19:10 +08:00
// 获取项目配置
const { getFullContent } = useFullContent();
const getProjectConfigRef = computed(() => {
return appStore.getProjectConfig;
});
2020-10-31 19:51:24 +08:00
2020-09-28 20:19:10 +08:00
const getLockMainScrollStateRef = computed(() => {
return appStore.getLockMainScrollState;
});
const showHeaderRef = computed(() => {
const {
headerSetting: { show },
} = unref(getProjectConfigRef);
return show;
});
2020-10-31 19:51:24 +08:00
2020-09-28 20:19:10 +08:00
const isShowMixHeaderRef = computed(() => {
const {
menuSetting: { type },
} = unref(getProjectConfigRef);
return type !== MenuTypeEnum.SIDEBAR && unref(showHeaderRef);
});
const showSideBarRef = computed(() => {
const {
2020-11-02 23:04:25 +08:00
menuSetting: { show, mode, split },
2020-09-28 20:19:10 +08:00
} = unref(getProjectConfigRef);
2020-11-02 23:04:25 +08:00
return split || (show && mode !== MenuModeEnum.HORIZONTAL && !unref(getFullContent));
2020-09-28 20:19:10 +08:00
});
// Get project configuration
// const { getFullContent } = useFullContent(currentRoute);
function getTarget(): any {
const {
headerSetting: { fixed },
} = unref(getProjectConfigRef);
return document.querySelector(`.default-layout__${fixed ? 'main' : 'content'}`);
}
2020-10-31 19:51:24 +08:00
2020-09-28 20:19:10 +08:00
return () => {
const { getPageLoading, getLockInfo } = appStore;
const {
openPageLoading,
useOpenBackTop,
showSettingButton,
multiTabsSetting: { show: showTabs },
headerSetting: { fixed },
2020-11-06 22:41:00 +08:00
menuSetting: { split, hidden },
2020-09-28 20:19:10 +08:00
} = unref(getProjectConfigRef);
2020-10-31 19:51:24 +08:00
2020-09-28 20:19:10 +08:00
const fixedHeaderCls = fixed
? 'fixed' + (unref(getLockMainScrollStateRef) ? ' lock' : '')
: '';
2020-10-31 19:51:24 +08:00
2020-09-28 20:19:10 +08:00
const { isLock } = getLockInfo;
2020-11-02 23:04:25 +08:00
2020-11-06 22:41:00 +08:00
const showSideBar = split ? hidden : true;
2020-09-28 20:19:10 +08:00
return (
<Layout class="default-layout relative">
{() => (
<>
{isLock && <LockPage />}
2020-10-14 21:08:07 +08:00
2020-09-28 20:19:10 +08:00
{!unref(getFullContent) && unref(isShowMixHeaderRef) && unref(showHeaderRef) && (
<LayoutHeader />
)}
2020-10-14 21:08:07 +08:00
2020-09-28 20:19:10 +08:00
{showSettingButton && <SettingBtn />}
2020-10-14 21:08:07 +08:00
2020-09-28 20:19:10 +08:00
<Layout>
{() => (
<>
2020-11-02 23:04:25 +08:00
{unref(showSideBarRef) && <LayoutSideBar class={showSideBar ? '' : 'hidden'} />}
2020-09-28 20:19:10 +08:00
<Layout class={[`default-layout__content`, fixedHeaderCls]}>
{() => (
<>
{!unref(getFullContent) &&
!unref(isShowMixHeaderRef) &&
unref(showHeaderRef) && <LayoutHeader />}
{showTabs && !unref(getFullContent) && (
2020-11-08 23:13:47 +08:00
<Layout.Header class={`default-layout__tabs`}>
{() => <MultipleTabs />}
</Layout.Header>
2020-09-28 20:19:10 +08:00
)}
2020-10-14 21:08:07 +08:00
2020-09-28 20:19:10 +08:00
{useOpenBackTop && <BackTop target={getTarget} />}
2020-10-14 21:08:07 +08:00
2020-09-28 20:19:10 +08:00
<div class={[`default-layout__main`, fixedHeaderCls]}>
{openPageLoading && (
<FullLoading
class={[`default-layout__loading`, !getPageLoading && 'hidden']}
/>
)}
<LayoutContent />
</div>
</>
)}
</Layout>
</>
)}
</Layout>
</>
)}
</Layout>
);
};
},
});