You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
3.3 KiB
135 lines
3.3 KiB
/**
|
|
* Ant Design Pro v4 use `@ant-design/pro-layout` to handle Layout.
|
|
* You can view component api by:
|
|
* https://github.com/ant-design/ant-design-pro-layout
|
|
*/
|
|
|
|
import { ConnectProps, ConnectState } from '@/models/connect';
|
|
import {
|
|
MenuDataItem,
|
|
BasicLayout as ProLayoutComponents,
|
|
BasicLayoutProps as ProLayoutComponentsProps,
|
|
Settings,
|
|
} from '@ant-design/pro-layout';
|
|
import React, { useState } from 'react';
|
|
|
|
import Authorized from '@/utils/Authorized';
|
|
import Link from 'umi/link';
|
|
import RightContent from '@/components/GlobalHeader/RightContent';
|
|
import { connect } from 'dva';
|
|
import { formatMessage } from 'umi-plugin-react/locale';
|
|
import { isAntDesignPro } from '@/utils/utils';
|
|
import logo from '../assets/logo.svg';
|
|
|
|
export interface BasicLayoutProps extends ProLayoutComponentsProps, ConnectProps {
|
|
breadcrumbNameMap: {
|
|
[path: string]: MenuDataItem;
|
|
};
|
|
settings: Settings;
|
|
}
|
|
export type BasicLayoutContext = { [K in 'location']: BasicLayoutProps[K] } & {
|
|
breadcrumbNameMap: {
|
|
[path: string]: MenuDataItem;
|
|
};
|
|
};
|
|
/**
|
|
* use Authorized check all menu item
|
|
*/
|
|
|
|
const menuDataRender = (menuList: MenuDataItem[]): MenuDataItem[] => {
|
|
return menuList.map(item => {
|
|
const localItem = {
|
|
...item,
|
|
children: item.children ? menuDataRender(item.children) : [],
|
|
};
|
|
return Authorized.check(item.authority, localItem, null) as MenuDataItem;
|
|
});
|
|
};
|
|
|
|
const footerRender: BasicLayoutProps['footerRender'] = (_, defaultDom) => {
|
|
if (!isAntDesignPro()) {
|
|
return defaultDom;
|
|
}
|
|
return (
|
|
<>
|
|
{defaultDom}
|
|
<div
|
|
style={{
|
|
padding: '0px 24px 24px',
|
|
textAlign: 'center',
|
|
}}
|
|
>
|
|
<a href="https://www.netlify.com" target="_blank" rel="noopener noreferrer">
|
|
<img
|
|
src="https://www.netlify.com/img/global/badges/netlify-color-bg.svg"
|
|
width="82px"
|
|
alt="netlify logo"
|
|
/>
|
|
</a>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const BasicLayout: React.FC<BasicLayoutProps> = props => {
|
|
const { dispatch, children, settings } = props;
|
|
/**
|
|
* constructor
|
|
*/
|
|
|
|
useState(() => {
|
|
if (dispatch) {
|
|
dispatch({
|
|
type: 'user/fetchCurrent',
|
|
});
|
|
dispatch({
|
|
type: 'settings/getSetting',
|
|
});
|
|
}
|
|
});
|
|
|
|
/**
|
|
* init variables
|
|
*/
|
|
const handleMenuCollapse = (payload: boolean): void =>
|
|
dispatch &&
|
|
dispatch({
|
|
type: 'global/changeLayoutCollapsed',
|
|
payload,
|
|
});
|
|
|
|
return (
|
|
<ProLayoutComponents
|
|
logo={logo}
|
|
onCollapse={handleMenuCollapse}
|
|
menuItemRender={(menuItemProps, defaultDom) => {
|
|
return <Link to={menuItemProps.path}>{defaultDom}</Link>;
|
|
}}
|
|
breadcrumbRender={(routers = []) => {
|
|
return [
|
|
{
|
|
path: '/',
|
|
breadcrumbName: formatMessage({
|
|
id: 'menu.home',
|
|
defaultMessage: 'Home',
|
|
}),
|
|
},
|
|
...routers,
|
|
];
|
|
}}
|
|
footerRender={footerRender}
|
|
menuDataRender={menuDataRender}
|
|
formatMessage={formatMessage}
|
|
rightContentRender={rightProps => <RightContent {...rightProps} />}
|
|
{...props}
|
|
{...settings}
|
|
>
|
|
{children}
|
|
</ProLayoutComponents>
|
|
);
|
|
};
|
|
|
|
export default connect(({ global, settings }: ConnectState) => ({
|
|
collapsed: global.collapsed,
|
|
settings,
|
|
}))(BasicLayout);
|
|
|