123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- import React, { Suspense } from 'react';
- import { Layout } from 'antd';
- import DocumentTitle from 'react-document-title';
- import isEqual from 'lodash/isEqual';
- import memoizeOne from 'memoize-one';
- import { connect } from 'dva';
- import { ContainerQuery } from 'react-container-query';
- import classNames from 'classnames';
- import pathToRegexp from 'path-to-regexp';
- import Media from 'react-media';
- import { formatMessage } from 'umi/locale';
- import Authorized from '@/utils/Authorized';
- import Footer from './Footer';
- import Header from './Header';
- import Context from './MenuContext';
- import Exception403 from '../pages/Exception/403';
- import PageLoading from '@/components/PageLoading';
- import SiderMenu from '@/components/SiderMenu';
- import styles from './BasicLayout.less';
- import Custom from '@/pages/Custom';
- // lazy load SettingDrawer
- const SettingDrawer = React.lazy(() => import('@/components/SettingDrawer'));
- const { Content } = Layout;
- const query = {
- 'screen-xs': {
- maxWidth: 575,
- },
- 'screen-sm': {
- minWidth: 576,
- maxWidth: 767,
- },
- 'screen-md': {
- minWidth: 768,
- maxWidth: 991,
- },
- 'screen-lg': {
- minWidth: 992,
- maxWidth: 1199,
- },
- 'screen-xl': {
- minWidth: 1200,
- maxWidth: 1599,
- },
- 'screen-xxl': {
- minWidth: 1600,
- },
- };
- class BasicLayout extends React.PureComponent {
- constructor(props) {
- super(props);
- this.getPageTitle = memoizeOne(this.getPageTitle);
- this.matchParamsPath = memoizeOne(this.matchParamsPath, isEqual);
- }
- componentDidMount() {
- const {
- dispatch,
- route: { routes, authority },
- } = this.props;
- // dispatch({ type: 'global/get_site_list_data' });
- dispatch({
- type: 'menu/getMenuData',
- payload: { routes, authority },
- });
- }
- componentDidUpdate(preProps) {
- // After changing to phone mode,
- // if collapsed is true, you need to click twice to display
- const { collapsed, isMobile } = this.props;
- if (isMobile && !preProps.isMobile && !collapsed) {
- this.handleMenuCollapse(false);
- }
- }
- getContext() {
- const { location, breadcrumbNameMap } = this.props;
- return {
- location,
- breadcrumbNameMap,
- };
- }
- matchParamsPath = (pathname, breadcrumbNameMap) => {
- const pathKey = Object.keys(breadcrumbNameMap).find(key => pathToRegexp(key).test(pathname));
- return breadcrumbNameMap[pathKey];
- };
- getRouterAuthority = (pathname, routeData) => {
- let routeAuthority = ['noAuthority'];
- const getAuthority = (key, routes) => {
- routes.map(route => {
- if (route.path && pathToRegexp(route.path).test(key)) {
- routeAuthority = route.authority;
- } else if (route.routes) {
- routeAuthority = getAuthority(key, route.routes);
- }
- return route;
- });
- return routeAuthority;
- };
- return getAuthority(pathname, routeData);
- };
- getPageTitle = (pathname, breadcrumbNameMap) => {
- const currRouterData = this.matchParamsPath(pathname, breadcrumbNameMap);
- if (!currRouterData) {
- return '商户后台';
- }
- const pageName = formatMessage({
- id: currRouterData.locale || currRouterData.name,
- defaultMessage: currRouterData.name,
- });
- return `${pageName} - 商户后台`;
- };
- getLayoutStyle = () => {
- const { fixSiderbar, isMobile, collapsed, layout } = this.props;
- if (fixSiderbar && layout !== 'topmenu' && !isMobile) {
- return {
- paddingLeft: collapsed ? '70px' : '150px',
- };
- }
- return null;
- };
- handleMenuCollapse = collapsed => {
- const { dispatch } = this.props;
- dispatch({
- type: 'global/changeLayoutCollapsed',
- payload: collapsed,
- });
- };
- renderSettingDrawer = () => {
- // Do not render SettingDrawer in production
- // unless it is deployed in preview.pro.ant.design as demo
- if (process.env.NODE_ENV === 'production' && APP_TYPE !== 'site') {
- return null;
- }
- return <SettingDrawer />;
- };
- render() {
- const {
- navTheme,
- layout: PropsLayout,
- children,
- location: { pathname },
- isMobile,
- menuData,
- breadcrumbNameMap,
- route: { routes },
- fixedHeader,
- collapsed,
- } = this.props;
- const isTop = PropsLayout === 'topmenu';
- const routerConfig = this.getRouterAuthority(pathname, routes);
- const contentStyle = !fixedHeader ? { paddingTop: 0,marginLeft:collapsed?20:0 } : {marginLeft:collapsed?20:10};
- const layout = (
- <Layout>
- <SiderMenu
- theme={navTheme}
- onCollapse={this.handleMenuCollapse}
- menuData={menuData}
- isMobile={isMobile}
- {...this.props}
- />
- <Layout
- style={{
- ...this.getLayoutStyle(),
- minHeight: '100vh',
- }}
- >
- <Header
- menuData={menuData}
- handleMenuCollapse={this.handleMenuCollapse}
- isMobile={isMobile}
- {...this.props}
- />
- <Content className={styles.show_long_desc} style={contentStyle}>
- <Authorized authority={routerConfig} noMatch={<Exception403 />}>
- {children}
- </Authorized>
- </Content>
- <Footer />
- </Layout>
- </Layout>
- );
- return (
- <React.Fragment>
- <DocumentTitle title={this.getPageTitle(pathname, breadcrumbNameMap)}>
- <ContainerQuery query={query}>
- {params => (
- <Context.Provider value={this.getContext()}>
- <div className={classNames(params)}>{layout}</div>
- </Context.Provider>
- )}
- </ContainerQuery>
- </DocumentTitle>
- <Custom />
- </React.Fragment>
- );
- }
- }
- export default connect(({ global, setting, menu }) => ({
- collapsed: global.collapsed,
- // currentSite: global.currentSite,
- layout: setting.layout,
- menuData: menu.menuData,
- breadcrumbNameMap: menu.breadcrumbNameMap,
- ...setting,
- }))(props => (
- <Media query="(max-width: 599px)">
- {isMobile => <BasicLayout {...props} isMobile={isMobile} />}
- </Media>
- ));
|