BasicLayout.js 5.81 KB
Newer Older
愚道's avatar
愚道 committed
1 2
/* eslint-disable no-unused-vars */
// TODO remove eslint-disable
jim's avatar
jim committed
3 4
import React from 'react';
import { Layout } from 'antd';
5 6
import DocumentTitle from 'react-document-title';
import { connect } from 'dva';
愚道's avatar
愚道 committed
7
// import { Route, Redirect, Switch } from 'dva/router';
afc163's avatar
afc163 committed
8 9
import { ContainerQuery } from 'react-container-query';
import classNames from 'classnames';
jim's avatar
jim committed
10
import pathToRegexp from 'path-to-regexp';
愚道's avatar
愚道 committed
11 12 13 14 15 16
import SiderMenu from '../../components/SiderMenu';
// import NotFound from '../Exception/404';
// import { getRoutes } from '../utils/utils';
import Authorized from '../../utils/Authorized';
import SettingDarwer from '../../components/SettingDarwer';
import logo from '../../assets/logo.svg';
jim's avatar
jim committed
17 18
import Footer from './Footer';
import Header from './Header';
19
import Context from './MenuContext';
20

jim's avatar
jim committed
21
const { Content } = Layout;
ddcat1115's avatar
ddcat1115 committed
22
const { AuthorizedRoute, check } = Authorized;
ddcat1115's avatar
ddcat1115 committed
23

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/**
 * 获取面包屑映射
 * @param {Object} menuData 菜单配置
 * @param {Object} routerData 路由配置
 */
const getBreadcrumbNameMap = (menuData, routerData) => {
  const result = {};
  const childResult = {};
  for (const i of menuData) {
    if (!routerData[i.path]) {
      result[i.path] = i;
    }
    if (i.children) {
      Object.assign(childResult, getBreadcrumbNameMap(i.children, routerData));
    }
  }
  return Object.assign({}, routerData, result, childResult);
};

afc163's avatar
afc163 committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
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
61 62 63 64
    maxWidth: 1599,
  },
  'screen-xxl': {
    minWidth: 1600,
afc163's avatar
afc163 committed
65 66 67
  },
};

68
class BasicLayout extends React.PureComponent {
jim's avatar
jim committed
69
  getContext() {
ddcat1115's avatar
ddcat1115 committed
70
    const { location, routerData, menuData } = this.props;
ddcat1115's avatar
ddcat1115 committed
71 72
    return {
      location,
ddcat1115's avatar
ddcat1115 committed
73
      breadcrumbNameMap: getBreadcrumbNameMap(menuData, routerData),
ddcat1115's avatar
ddcat1115 committed
74
    };
75
  }
陈帅's avatar
陈帅 committed
76

77
  getPageTitle() {
ddcat1115's avatar
ddcat1115 committed
78
    const { routerData, location } = this.props;
ddcat1115's avatar
ddcat1115 committed
79 80
    const { pathname } = location;
    let title = 'Ant Design Pro';
jim's avatar
jim committed
81 82 83 84 85 86 87 88 89
    let currRouterData = null;
    // match params path
    Object.keys(routerData).forEach(key => {
      if (pathToRegexp(key).test(pathname)) {
        currRouterData = routerData[key];
      }
    });
    if (currRouterData && currRouterData.name) {
      title = `${currRouterData.name} - Ant Design Pro`;
ddcat1115's avatar
ddcat1115 committed
90
    }
ddcat1115's avatar
ddcat1115 committed
91
    return title;
92
  }
陈帅's avatar
陈帅 committed
93

jim's avatar
jim committed
94
  getLayoutStyle = () => {
陈帅's avatar
陈帅 committed
95 96
    const { fixSiderbar, collapsed, layout } = this.props;
    if (fixSiderbar && layout !== 'topmenu') {
jim's avatar
jim committed
97
      return {
98
        paddingLeft: collapsed ? '80px' : '256px',
jim's avatar
jim committed
99 100 101 102
      };
    }
    return null;
  };
陈帅's avatar
陈帅 committed
103

jim's avatar
jim committed
104 105 106 107 108 109 110
  getContentStyle = () => {
    const { fixedHeader } = this.props;
    return {
      margin: '24px 24px 0',
      paddingTop: fixedHeader ? 64 : 0,
    };
  };
陈帅's avatar
陈帅 committed
111

112 113 114 115
  getBashRedirect = () => {
    // According to the url parameter to redirect
    // 这里是重定向的,重定向到 url 的 redirect 参数所示地址
    const urlParams = new URL(window.location.href);
jim's avatar
jim committed
116 117

    const redirect = urlParams.searchParams.get('redirect');
118
    // Remove the parameters in the url
jim's avatar
jim committed
119 120 121 122
    if (redirect) {
      urlParams.searchParams.delete('redirect');
      window.history.replaceState(null, 'redirect', urlParams.href);
    } else {
ddcat1115's avatar
ddcat1115 committed
123 124
      const { routerData } = this.props;
      // get the first authorized route path in routerData
jim's avatar
jim committed
125 126 127
      const authorizedPath = Object.keys(routerData).find(
        item => check(routerData[item].authority, item) && item !== '/'
      );
ddcat1115's avatar
ddcat1115 committed
128
      return authorizedPath;
jim's avatar
jim committed
129
    }
130
    return redirect;
jim's avatar
jim committed
131
  };
陈帅'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
  };
jim's avatar
jim committed
140

141
  render() {
愚道's avatar
愚道 committed
142
    // TODO remove old router code
陈帅's avatar
陈帅 committed
143 144
    const {
      isMobile,
愚道's avatar
愚道 committed
145 146
      // redirectData,
      // routerData,
陈帅's avatar
陈帅 committed
147 148
      silderTheme,
      layout: PropsLayout,
愚道's avatar
愚道 committed
149 150
      children,
      // match,
陈帅's avatar
陈帅 committed
151 152
    } = this.props;
    const isTop = PropsLayout === 'topmenu';
愚道's avatar
愚道 committed
153 154
    // const bashRedirect = this.getBashRedirect();
    // const myRedirectData = redirectData || [];
afc163's avatar
afc163 committed
155 156
    const layout = (
      <Layout>
jim's avatar
jim committed
157
        {isTop && !isMobile ? null : (
jim's avatar
jim committed
158 159 160
          <SiderMenu
            logo={logo}
            Authorized={Authorized}
陈帅's avatar
陈帅 committed
161
            theme={silderTheme}
jim's avatar
jim committed
162
            onCollapse={this.handleMenuCollapse}
jim's avatar
jim committed
163
            {...this.props}
jim's avatar
jim committed
164 165
          />
        )}
jim's avatar
jim committed
166
        <Layout style={this.getLayoutStyle()}>
jim's avatar
jim committed
167
          <Header handleMenuCollapse={this.handleMenuCollapse} logo={logo} {...this.props} />
jim's avatar
jim committed
168
          <Content style={this.getContentStyle()}>
愚道's avatar
愚道 committed
169 170
            {children}
            {/* <Switch> TODO remove
jim's avatar
jim committed
171 172 173 174 175 176 177 178 179 180 181 182 183
              {myRedirectData.map(item => (
                <Redirect key={item.from} exact from={item.from} to={item.to} />
              ))}
              {getRoutes(match.path, routerData).map(item => (
                <AuthorizedRoute
                  key={item.key}
                  path={item.path}
                  component={item.component}
                  exact={item.exact}
                  authority={item.authority}
                  redirectPath="/exception/403"
                />
              ))}
184 185
              <Redirect exact from="/" to={bashRedirect} />
              <Route render={NotFound} />
愚道's avatar
愚道 committed
186
            </Switch> */}
afc163's avatar
afc163 committed
187
          </Content>
jim's avatar
jim committed
188
          <Footer />
189
        </Layout>
afc163's avatar
afc163 committed
190 191 192 193 194 195
      </Layout>
    );

    return (
      <DocumentTitle title={this.getPageTitle()}>
        <ContainerQuery query={query}>
jim's avatar
jim committed
196
          {params => (
jim's avatar
jim committed
197 198 199
            <Context.Provider value={this.getContext()}>
              <div className={classNames(params)}>
                {layout}
jim's avatar
jim committed
200
                <SettingDarwer />
jim's avatar
jim committed
201 202
              </div>
            </Context.Provider>
jim's avatar
jim committed
203
          )}
afc163's avatar
afc163 committed
204
        </ContainerQuery>
205 206 207 208 209
      </DocumentTitle>
    );
  }
}

jim's avatar
jim committed
210
export default connect(({ global, setting }) => ({
Andreas Cederström's avatar
Andreas Cederström committed
211
  collapsed: global.collapsed,
jim's avatar
jim committed
212 213
  layout: setting.layout,
  ...setting,
214
}))(BasicLayout);