/** * 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 type { MenuDataItem, BasicLayoutProps as ProLayoutProps, Settings, } from '@ant-design/pro-layout'; import ProLayout, { SettingDrawer } from '@ant-design/pro-layout'; import React, { useEffect, useMemo, useRef } from 'react'; import type { Dispatch } from 'umi'; import { Link, useIntl, connect, history } from 'umi'; import { Result, Button } from 'antd'; import Authorized from '@/utils/Authorized'; import RightContent from '@/components/GlobalHeader/RightContent'; import type { ConnectState } from '@/models/connect'; import { getMatchMenu } from '@umijs/route-utils'; import { BASE_URL } from '@/utils/eventkey'; const noMatch = ( Go Login } /> ); export type BasicLayoutProps = { breadcrumbNameMap: Record; route: ProLayoutProps['route'] & { authority: string[]; }; settings: Settings; dispatch: Dispatch; } & ProLayoutProps; export type BasicLayoutContext = { [K in 'location']: BasicLayoutProps[K] } & { breadcrumbNameMap: Record; }; /** * use Authorized check all menu item */ const menuDataRender = (menuList: MenuDataItem[]): MenuDataItem[] => menuList.map((item) => { const localItem = { ...item, children: item.children ? menuDataRender(item.children) : undefined, }; return Authorized.check(item.authority, localItem, null) as MenuDataItem; }); const defaultFooterDom = ( // , // href: 'https://github.com/ant-design/ant-design-pro', // blankTarget: true, // }, // { // key: 'Ant Design', // title: 'Ant Design', // href: 'https://ant.design', // blankTarget: true, // }, // ]} // /> ); const BasicLayout: React.FC = (props) => { const { dispatch, children, settings, location = { pathname: '/', }, } = props; const menuDataRef = useRef([]); useEffect(() => { console.log('hello'); if (!window.localStorage.getItem('token')) { if (process.env.NODE_ENV === 'development') { window.location.href = `${BASE_URL}/#/user/login`; } else { const { origin } = window.location; window.location.href = `${origin}/tieba-admin/#/user/login`; } } // if (dispatch) { // dispatch({ // type: 'user/fetchCurrent', // }); // } }, []); /** * init variables */ const handleMenuCollapse = (payload: boolean): void => { if (dispatch) { dispatch({ type: 'global/changeLayoutCollapsed', payload, }); } }; // get children authority const authorized = useMemo( () => getMatchMenu(location.pathname || '/', menuDataRef.current).pop() || { authority: undefined, }, [location.pathname], ); const { formatMessage } = useIntl(); return ( <> history.push('/')} menuItemRender={(menuItemProps, defaultDom) => { if ( menuItemProps.isUrl || !menuItemProps.path || location.pathname === menuItemProps.path ) { return defaultDom; } return {defaultDom}; }} breadcrumbRender={(routers = []) => [ { path: '/', breadcrumbName: formatMessage({ id: 'menu.home', }), }, ...routers, ]} itemRender={(route, params, routes, paths) => { const first = routes.indexOf(route) === 0; return first ? ( {route.breadcrumbName} ) : ( {route.breadcrumbName} ); }} footerRender={() => defaultFooterDom} menuDataRender={menuDataRender} rightContentRender={() => } postMenuData={(menuData) => { menuDataRef.current = menuData || []; return menuData || []; }} > {children} dispatch({ type: 'settings/changeSetting', payload: config, }) } /> ); }; export default connect(({ global, settings }: ConnectState) => ({ collapsed: global.collapsed, settings, }))(BasicLayout);