mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-28 05:39:34 +08:00
initial commit
This commit is contained in:
154
src/layouts/default/LayoutHeader.tsx
Normal file
154
src/layouts/default/LayoutHeader.tsx
Normal file
@@ -0,0 +1,154 @@
|
||||
import { defineComponent, unref, computed } from 'vue';
|
||||
import { Layout, Tooltip } from 'ant-design-vue';
|
||||
import Logo from '/@/layouts/Logo.vue';
|
||||
import UserDropdown from './UserDropdown';
|
||||
import LayoutMenu from './LayoutMenu';
|
||||
import { appStore } from '/@/store/modules/app';
|
||||
import { MenuModeEnum, MenuSplitTyeEnum, MenuTypeEnum } from '/@/enums/menuEnum';
|
||||
import LayoutBreadcrumb from './LayoutBreadcrumb';
|
||||
import {
|
||||
RedoOutlined,
|
||||
FullscreenExitOutlined,
|
||||
FullscreenOutlined,
|
||||
GithubFilled,
|
||||
LockOutlined,
|
||||
} from '@ant-design/icons-vue';
|
||||
import { useFullscreen } from '/@/hooks/web/useFullScreen';
|
||||
import { useTabs } from '/@/hooks/web/useTabs';
|
||||
import { GITHUB_URL } from '/@/settings/siteSetting';
|
||||
import LockAction from './actions/LockActionItem';
|
||||
import { useModal } from '/@/components/Modal/index';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'DefaultLayoutHeader',
|
||||
setup() {
|
||||
const { refreshPage } = useTabs();
|
||||
const [register, { openModal }] = useModal();
|
||||
const { toggleFullscreen, isFullscreenRef } = useFullscreen();
|
||||
const getProjectConfigRef = computed(() => {
|
||||
return appStore.getProjectConfig;
|
||||
});
|
||||
|
||||
function goToGithub() {
|
||||
window.open(GITHUB_URL, '__blank');
|
||||
}
|
||||
|
||||
const headerClass = computed(() => {
|
||||
const theme = unref(getProjectConfigRef).headerSetting.theme;
|
||||
return theme ? `layout-header__header--${theme}` : '';
|
||||
});
|
||||
/**
|
||||
* @description: 锁定屏幕
|
||||
*/
|
||||
function handleLockPage() {
|
||||
openModal(true);
|
||||
}
|
||||
return () => {
|
||||
const getProjectConfig = unref(getProjectConfigRef);
|
||||
const {
|
||||
// useErrorHandle,
|
||||
showLogo,
|
||||
headerSetting: { theme: headerTheme, showRedo, showGithub, showFullScreen },
|
||||
menuSetting: { mode, type: menuType, split: splitMenu, topMenuAlign },
|
||||
showBreadCrumb,
|
||||
} = getProjectConfig;
|
||||
|
||||
const isSidebarType = menuType === MenuTypeEnum.SIDEBAR;
|
||||
return (
|
||||
<Layout.Header
|
||||
class={[
|
||||
'layout-header',
|
||||
'bg-white flex p-0 px-4 justify-items-center',
|
||||
unref(headerClass),
|
||||
]}
|
||||
>
|
||||
{() => (
|
||||
<>
|
||||
<div class="flex-grow flex justify-center items-center">
|
||||
{showLogo && !isSidebarType && <Logo class={`layout-header__logo`} />}
|
||||
|
||||
{mode !== MenuModeEnum.HORIZONTAL && showBreadCrumb && !splitMenu && (
|
||||
<LayoutBreadcrumb class="flex-grow " />
|
||||
)}
|
||||
{(mode === MenuModeEnum.HORIZONTAL || splitMenu) && (
|
||||
<div class={[`layout-header__menu flex-grow `, `justify-${topMenuAlign}`]}>
|
||||
<LayoutMenu
|
||||
theme={headerTheme}
|
||||
splitType={splitMenu ? MenuSplitTyeEnum.TOP : MenuSplitTyeEnum.NONE}
|
||||
menuMode={splitMenu ? MenuModeEnum.HORIZONTAL : null}
|
||||
showSearch={false}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div class={`layout-header__action`}>
|
||||
{showGithub && (
|
||||
// @ts-ignore
|
||||
<Tooltip>
|
||||
{{
|
||||
title: () => 'github',
|
||||
default: () => (
|
||||
<div class={`layout-header__action-item`} onClick={goToGithub}>
|
||||
<GithubFilled class={`layout-header__action-icon`} />
|
||||
</div>
|
||||
),
|
||||
}}
|
||||
</Tooltip>
|
||||
)}
|
||||
{showGithub && (
|
||||
// @ts-ignore
|
||||
<Tooltip>
|
||||
{{
|
||||
title: () => '锁定屏幕',
|
||||
default: () => (
|
||||
<div class={`layout-header__action-item`} onClick={handleLockPage}>
|
||||
<LockOutlined class={`layout-header__action-icon`} />
|
||||
</div>
|
||||
),
|
||||
}}
|
||||
</Tooltip>
|
||||
)}
|
||||
{showRedo && (
|
||||
// @ts-ignore
|
||||
<Tooltip>
|
||||
{{
|
||||
title: () => '刷新',
|
||||
default: () => (
|
||||
<div class={`layout-header__action-item`} onClick={refreshPage}>
|
||||
<RedoOutlined class={`layout-header__action-icon`} />
|
||||
</div>
|
||||
),
|
||||
}}
|
||||
</Tooltip>
|
||||
)}
|
||||
{showFullScreen && (
|
||||
// @ts-ignore
|
||||
<Tooltip>
|
||||
{{
|
||||
title: () => (unref(isFullscreenRef) ? '退出全屏' : '全屏'),
|
||||
default: () => {
|
||||
const Icon: any = !unref(isFullscreenRef) ? (
|
||||
<FullscreenOutlined />
|
||||
) : (
|
||||
<FullscreenExitOutlined />
|
||||
);
|
||||
return (
|
||||
<div class={`layout-header__action-item`} onClick={toggleFullscreen}>
|
||||
<Icon class={`layout-header__action-icon`} />
|
||||
</div>
|
||||
);
|
||||
},
|
||||
}}
|
||||
</Tooltip>
|
||||
)}
|
||||
<UserDropdown class={`layout-header__user-dropdown`} />
|
||||
</div>
|
||||
<LockAction onRegister={register} />
|
||||
</>
|
||||
)}
|
||||
</Layout.Header>
|
||||
);
|
||||
};
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user