BasicLayout.js 5.95 KB
Newer Older
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
1
import React, { Suspense } from 'react';
jim's avatar
jim committed
2
import { Layout } from 'antd';
3
import DocumentTitle from 'react-document-title';
afc163's avatar
afc163 committed
4
import isEqual from 'lodash/isEqual';
5
import memoizeOne from 'memoize-one';
6
import { connect } from 'dva';
afc163's avatar
afc163 committed
7 8
import { ContainerQuery } from 'react-container-query';
import classNames from 'classnames';
jim's avatar
jim committed
9
import pathToRegexp from 'path-to-regexp';
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
10
import Media from 'react-media';
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
11
import { formatMessage } from 'umi/locale';
12
import Authorized from '@/utils/Authorized';
13
import logo from '../assets/logo.svg';
jim's avatar
jim committed
14 15
import Footer from './Footer';
import Header from './Header';
16
import Context from './MenuContext';
17
import Exception403 from '../pages/Exception/403';
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
18 19
import PageLoading from '@/components/PageLoading';
import SiderMenu from '@/components/SiderMenu';
20 21
import { menu, title } from '../defaultSettings';

22 23
import styles from './BasicLayout.less';

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
24 25
// lazy load SettingDrawer
const SettingDrawer = React.lazy(() => import('@/components/SettingDrawer'));
26

jim's avatar
jim committed
27
const { Content } = Layout;
ddcat1115's avatar
ddcat1115 committed
28

afc163's avatar
afc163 committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
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,
yoyo837's avatar
yoyo837 committed
47 48 49 50
    maxWidth: 1599,
  },
  'screen-xxl': {
    minWidth: 1600,
afc163's avatar
afc163 committed
51 52 53
  },
};

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
54
class BasicLayout extends React.Component {
55 56
  constructor(props) {
    super(props);
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
57
    this.getPageTitle = memoizeOne(this.getPageTitle);
58
    this.matchParamsPath = memoizeOne(this.matchParamsPath, isEqual);
59
  }
60 61

  componentDidMount() {
62 63 64 65
    const {
      dispatch,
      route: { routes, authority },
    } = this.props;
afc163's avatar
afc163 committed
66 67 68 69 70 71
    dispatch({
      type: 'user/fetchCurrent',
    });
    dispatch({
      type: 'setting/getSetting',
    });
72 73 74 75
    dispatch({
      type: 'menu/getMenuData',
      payload: { routes, authority },
    });
76 77
  }

jim's avatar
jim committed
78
  getContext() {
79
    const { location, breadcrumbNameMap } = this.props;
ddcat1115's avatar
ddcat1115 committed
80 81
    return {
      location,
82
      breadcrumbNameMap,
ddcat1115's avatar
ddcat1115 committed
83
    };
84
  }
85

86 87 88
  matchParamsPath = (pathname, breadcrumbNameMap) => {
    const pathKey = Object.keys(breadcrumbNameMap).find(key => pathToRegexp(key).test(pathname));
    return breadcrumbNameMap[pathKey];
89 90
  };

91 92 93
  getRouterAuthority = (pathname, routeData) => {
    let routeAuthority = ['noAuthority'];
    const getAuthority = (key, routes) => {
94
      routes.forEach(route => {
95
        if (route.path && pathToRegexp(route.path).test(key)) {
96 97 98 99 100 101 102 103 104 105 106
          routeAuthority = route.authority;
        } else if (route.routes) {
          routeAuthority = getAuthority(key, route.routes);
        }
        return route;
      });
      return routeAuthority;
    };
    return getAuthority(pathname, routeData);
  };

107 108
  getPageTitle = (pathname, breadcrumbNameMap) => {
    const currRouterData = this.matchParamsPath(pathname, breadcrumbNameMap);
109

110
    if (!currRouterData) {
111
      return title;
ddcat1115's avatar
ddcat1115 committed
112
    }
113 114 115 116 117 118
    const pageName = menu.disableLocal
      ? currRouterData.name
      : formatMessage({
          id: currRouterData.locale || currRouterData.name,
          defaultMessage: currRouterData.name,
        });
119

120
    return `${pageName} - ${title}`;
121
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
122

jim's avatar
jim committed
123
  getLayoutStyle = () => {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
124
    const { fixSiderbar, isMobile, collapsed, layout } = this.props;
125
    if (fixSiderbar && layout !== 'topmenu' && !isMobile) {
jim's avatar
jim committed
126
      return {
127
        paddingLeft: collapsed ? '80px' : '256px',
jim's avatar
jim committed
128 129 130 131
      };
    }
    return null;
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
132

jim's avatar
jim committed
133
  handleMenuCollapse = collapsed => {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
134 135
    const { dispatch } = this.props;
    dispatch({
136 137 138
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
jim's avatar
jim committed
139
  };
140

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
141
  renderSettingDrawer = () => {
kennylbj's avatar
kennylbj committed
142 143
    // Do not render SettingDrawer in production
    // unless it is deployed in preview.pro.ant.design as demo
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
144
    if (process.env.NODE_ENV === 'production' && APP_TYPE !== 'site') {
145 146 147
      return null;
    }
    return <SettingDrawer />;
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
148
  };
149

150
  render() {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
151
    const {
afc163's avatar
afc163 committed
152
      navTheme,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
153
      layout: PropsLayout,
ๆ„š้“'s avatar
ๆ„š้“ committed
154
      children,
155
      location: { pathname },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
156
      isMobile,
157
      menuData,
158
      breadcrumbNameMap,
159
      route: { routes },
160
      fixedHeader,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
161
    } = this.props;
162

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
163
    const isTop = PropsLayout === 'topmenu';
164
    const routerConfig = this.getRouterAuthority(pathname, routes);
165
    const contentStyle = !fixedHeader ? { paddingTop: 0 } : {};
afc163's avatar
afc163 committed
166 167
    const layout = (
      <Layout>
jim's avatar
jim committed
168
        {isTop && !isMobile ? null : (
jim's avatar
jim committed
169 170
          <SiderMenu
            logo={logo}
afc163's avatar
afc163 committed
171
            theme={navTheme}
jim's avatar
jim committed
172
            onCollapse={this.handleMenuCollapse}
173
            menuData={menuData}
174
            isMobile={isMobile}
jim's avatar
jim committed
175
            {...this.props}
jim's avatar
jim committed
176 177
          />
        )}
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
178 179 180 181 182 183
        <Layout
          style={{
            ...this.getLayoutStyle(),
            minHeight: '100vh',
          }}
        >
184 185 186 187
          <Header
            menuData={menuData}
            handleMenuCollapse={this.handleMenuCollapse}
            logo={logo}
188
            isMobile={isMobile}
189 190
            {...this.props}
          />
191
          <Content className={styles.content} style={contentStyle}>
192
            <Authorized authority={routerConfig} noMatch={<Exception403 />}>
193 194 195
              {children}
            </Authorized>
          </Content>
jim's avatar
jim committed
196
          <Footer />
197
        </Layout>
afc163's avatar
afc163 committed
198 199 200
      </Layout>
    );
    return (
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
201
      <React.Fragment>
202
        <DocumentTitle title={this.getPageTitle(pathname, breadcrumbNameMap)}>
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
203 204 205 206 207 208 209 210
          <ContainerQuery query={query}>
            {params => (
              <Context.Provider value={this.getContext()}>
                <div className={classNames(params)}>{layout}</div>
              </Context.Provider>
            )}
          </ContainerQuery>
        </DocumentTitle>
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
211
        <Suspense fallback={<PageLoading />}>{this.renderSettingDrawer()}</Suspense>
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
212
      </React.Fragment>
213 214 215 216
    );
  }
}

217
export default connect(({ global, setting, menu: menuModel }) => ({
218
  collapsed: global.collapsed,
jim's avatar
jim committed
219
  layout: setting.layout,
220 221
  menuData: menuModel.menuData,
  breadcrumbNameMap: menuModel.breadcrumbNameMap,
jim's avatar
jim committed
222
  ...setting,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
223 224 225 226 227
}))(props => (
  <Media query="(max-width: 599px)">
    {isMobile => <BasicLayout {...props} isMobile={isMobile} />}
  </Media>
));