BasicLayout.js 6.05 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 94 95 96 97 98 99 100
  getRouteAuthority = (pathname, routeData) => {
    const routes = routeData.slice(); // clone
    let authorities;

    while (routes.length > 0) {
      const route = routes.shift();
      // check partial route
      if (pathToRegexp(`${route.path}(.*)`).test(pathname)) {
        if (route.authority) {
          authorities = route.authority;
101
        }
102 103 104 105 106 107 108 109 110 111 112 113
        // is exact route?
        if (pathToRegexp(route.path).test(pathname)) {
          break;
        }

        if (route.routes) {
          route.routes.forEach(r => routes.push(r));
        }
      }
    }

    return authorities;
114 115
  };

116 117
  getPageTitle = (pathname, breadcrumbNameMap) => {
    const currRouterData = this.matchParamsPath(pathname, breadcrumbNameMap);
118

119
    if (!currRouterData) {
120
      return title;
ddcat1115's avatar
ddcat1115 committed
121
    }
122 123 124 125 126 127
    const pageName = menu.disableLocal
      ? currRouterData.name
      : formatMessage({
          id: currRouterData.locale || currRouterData.name,
          defaultMessage: currRouterData.name,
        });
128

129
    return `${pageName} - ${title}`;
130
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
131

jim's avatar
jim committed
132
  getLayoutStyle = () => {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
133
    const { fixSiderbar, isMobile, collapsed, layout } = this.props;
134
    if (fixSiderbar && layout !== 'topmenu' && !isMobile) {
jim's avatar
jim committed
135
      return {
136
        paddingLeft: collapsed ? '80px' : '256px',
jim's avatar
jim committed
137 138 139 140
      };
    }
    return null;
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
141

jim's avatar
jim committed
142
  handleMenuCollapse = collapsed => {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
143 144
    const { dispatch } = this.props;
    dispatch({
145 146 147
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
jim's avatar
jim committed
148
  };
149

้™ˆๅธ…'s avatar
้™ˆๅธ… committed
150
  renderSettingDrawer = () => {
kennylbj's avatar
kennylbj committed
151 152
    // Do not render SettingDrawer in production
    // unless it is deployed in preview.pro.ant.design as demo
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
153
    if (process.env.NODE_ENV === 'production' && APP_TYPE !== 'site') {
154 155 156
      return null;
    }
    return <SettingDrawer />;
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
157
  };
158

159
  render() {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
160
    const {
afc163's avatar
afc163 committed
161
      navTheme,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
162
      layout: PropsLayout,
ๆ„š้“'s avatar
ๆ„š้“ committed
163
      children,
164
      location: { pathname },
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
165
      isMobile,
166
      menuData,
167
      breadcrumbNameMap,
168
      route: { routes },
169
      fixedHeader,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
170
    } = this.props;
171

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

226
export default connect(({ global, setting, menu: menuModel }) => ({
227
  collapsed: global.collapsed,
jim's avatar
jim committed
228
  layout: setting.layout,
229 230
  menuData: menuModel.menuData,
  breadcrumbNameMap: menuModel.breadcrumbNameMap,
jim's avatar
jim committed
231
  ...setting,
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
232 233 234 235 236
}))(props => (
  <Media query="(max-width: 599px)">
    {isMobile => <BasicLayout {...props} isMobile={isMobile} />}
  </Media>
));