123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /**
- * 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 ProLayout from '@ant-design/pro-layout'
- import React, { useEffect, useMemo, useRef } from 'react'
- import { Link, useIntl, connect, history } from 'umi'
- import { Result, Button } from 'antd'
- import Authorized from '@/utils/Authorized'
- import RightContent from '@/components/GlobalHeader/RightContent'
- import { getMatchMenu } from '@umijs/route-utils'
- import logo from '../assets/logo.svg'
- import styles from './BasicLayout.less'
- const noMatch = (
- <Result
- status={403}
- title="403"
- subTitle="Sorry, you are not authorized to access this page."
- extra={
- <Button type="primary">
- <Link to="/user/login">Go Login</Link>
- </Button>
- }
- />
- )
- /**
- * use Authorized check all menu item
- */
- const menuDataRender = menuList =>
- menuList.map(item => {
- const localItem = {
- ...item,
- children: item.children ? menuDataRender(item.children) : undefined
- }
- return Authorized.check(item.authority, localItem, null)
- })
- // const defaultFooterDom = (
- // <DefaultFooter
- // copyright={`${new Date().getFullYear()} 蚂蚁集团体验技术部出品`}
- // links={[
- // {
- // key: 'Ant Design Pro',
- // title: 'Ant Design Pro',
- // href: 'https://pro.ant.design',
- // blankTarget: true,
- // },
- // {
- // key: 'github',
- // title: <GithubOutlined />,
- // 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 = props => {
- const {
- dispatch,
- children,
- settings,
- location = {
- pathname: '/'
- }
- } = props
- const menuDataRef = useRef([])
- useEffect(() => {
- if (dispatch) {
- dispatch({
- type: 'user/fetchCurrent'
- })
- }
- }, [ dispatch ])
- /**
- * init variables
- */
- const handleMenuCollapse = payload => {
- 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 (
- <ProLayout
- className={styles.layoutBg}
- logo={logo}
- formatMessage={formatMessage}
- {...props}
- {...settings}
- onCollapse={handleMenuCollapse}
- onMenuHeaderClick={() => history.push('/')}
- menuItemRender={(menuItemProps, defaultDom) => {
- if (menuItemProps.isUrl || !menuItemProps.path) {
- return defaultDom
- }
- return <Link to={menuItemProps.path}>{defaultDom}</Link>
- }}
- breadcrumbRender={(routers = []) => [
- {
- path: '/',
- breadcrumbName: formatMessage({
- id: 'menu.home'
- })
- },
- ...routers
- ]}
- itemRender={(route, params, routes, paths) => {
- const first = routes.indexOf(route) === 0
- return first ? (
- <Link to={paths.join('/')}>{route.breadcrumbName}</Link>
- ) : (
- <span>{route.breadcrumbName}</span>
- )
- }}
- // footerRender={() => defaultFooterDom}
- menuDataRender={menuDataRender}
- rightContentRender={() => <RightContent />}
- postMenuData={menuData => {
- menuDataRef.current = menuData || []
- return menuData || []
- }}>
- <Authorized authority={authorized.authority} noMatch={noMatch}>
- {children}
- </Authorized>
- </ProLayout>
- )
- }
- export default connect(({ global, settings }) => ({
- collapsed: global.collapsed,
- settings
- }))(BasicLayout)
|