123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- import './index.less';
- import type { PropType, CSSProperties } from 'vue';
- import { computed, defineComponent, unref, toRef } from 'vue';
- import { BasicMenu } from '/@/components/Menu';
- import { AppLogo } from '/@/components/Application';
- import { MenuModeEnum, MenuSplitTyeEnum } from '/@/enums/menuEnum';
- import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
- import { ScrollContainer } from '/@/components/Container';
- import { useGo } from '/@/hooks/web/usePage';
- import { useSplitMenu } from './useLayoutMenu';
- import { openWindow } from '/@/utils';
- import { propTypes } from '/@/utils/propTypes';
- import { isUrl } from '/@/utils/is';
- import { useRootSetting } from '/@/hooks/setting/useRootSetting';
- import { useAppInject } from '/@/hooks/web/useAppInject';
- import { useDesign } from '/@/hooks/web/useDesign';
- export default defineComponent({
- name: 'LayoutMenu',
- props: {
- theme: propTypes.oneOf(['light', 'dark']),
- splitType: {
- type: Number as PropType<MenuSplitTyeEnum>,
- default: MenuSplitTyeEnum.NONE,
- },
- isHorizontal: propTypes.bool,
- // menu Mode
- menuMode: {
- type: [String] as PropType<Nullable<MenuModeEnum>>,
- default: '',
- },
- },
- setup(props) {
- const go = useGo();
- const {
- getMenuMode,
- getMenuType,
- getMenuTheme,
- getCollapsed,
- getAccordion,
- getIsHorizontal,
- getIsSidebarType,
- } = useMenuSetting();
- const { getShowLogo } = useRootSetting();
- const { prefixCls } = useDesign('layout-menu');
- const { menusRef } = useSplitMenu(toRef(props, 'splitType'));
- const { getIsMobile } = useAppInject();
- const getComputedMenuMode = computed(() =>
- unref(getIsMobile) ? MenuModeEnum.INLINE : props.menuMode || unref(getMenuMode)
- );
- const getComputedMenuTheme = computed(() => props.theme || unref(getMenuTheme));
- const getIsShowLogo = computed(() => unref(getShowLogo) && unref(getIsSidebarType));
- const getUseScroll = computed(() => {
- return (
- !unref(getIsHorizontal) &&
- (unref(getIsSidebarType) ||
- props.splitType === MenuSplitTyeEnum.LEFT ||
- props.splitType === MenuSplitTyeEnum.NONE)
- );
- });
- const getWrapperStyle = computed(
- (): CSSProperties => {
- return {
- height: `calc(100% - ${unref(getIsShowLogo) ? '48px' : '0px'})`,
- };
- }
- );
- const getLogoClass = computed(() => {
- return [
- `${prefixCls}-logo`,
- unref(getComputedMenuTheme),
- {
- [`${prefixCls}--mobile`]: unref(getIsMobile),
- },
- ];
- });
- /**
- * click menu
- * @param menu
- */
- function handleMenuClick(path: string) {
- go(path);
- }
- /**
- * before click menu
- * @param menu
- */
- async function beforeMenuClickFn(path: string) {
- if (!isUrl(path)) {
- return true;
- }
- openWindow(path);
- return false;
- }
- function renderHeader() {
- if (!unref(getIsShowLogo) && !unref(getIsMobile)) return null;
- return (
- <AppLogo
- showTitle={!unref(getCollapsed)}
- class={unref(getLogoClass)}
- theme={unref(getComputedMenuTheme)}
- />
- );
- }
- function renderMenu() {
- return (
- <BasicMenu
- beforeClickFn={beforeMenuClickFn}
- isHorizontal={props.isHorizontal}
- type={unref(getMenuType)}
- mode={unref(getComputedMenuMode)}
- theme={unref(getComputedMenuTheme)}
- items={unref(menusRef)}
- accordion={unref(getAccordion)}
- onMenuClick={handleMenuClick}
- />
- );
- }
- return () => {
- return (
- <>
- {renderHeader()}
- {unref(getUseScroll) ? (
- <ScrollContainer style={unref(getWrapperStyle)}>{() => renderMenu()}</ScrollContainer>
- ) : (
- renderMenu()
- )}
- </>
- );
- };
- },
- });
|