BasicLayout.js 8.36 KB
Newer Older
陈帅's avatar
陈帅 committed
1
import React, { Fragment } from 'react';
2
import PropTypes from 'prop-types';
3
import { Layout, Icon, message } from 'antd';
4 5
import DocumentTitle from 'react-document-title';
import { connect } from 'dva';
6
import { Route, Redirect, Switch, routerRedux } from 'dva/router';
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';
jljsj's avatar
jljsj committed
10
import { enquireScreen, unenquireScreen } from 'enquire-js';
偏右's avatar
偏右 committed
11
import GlobalHeader from '../components/GlobalHeader';
12
import GlobalFooter from '../components/GlobalFooter';
偏右's avatar
偏右 committed
13
import SiderMenu from '../components/SiderMenu';
afc163's avatar
afc163 committed
14
import NotFound from '../routes/Exception/404';
ddcat1115's avatar
ddcat1115 committed
15
import { getRoutes } from '../utils/utils';
ddcat1115's avatar
ddcat1115 committed
16
import Authorized from '../utils/Authorized';
陈帅's avatar
陈帅 committed
17
import { getMenuData } from '../common/menu';
18
import logo from '../assets/logo.svg';
19

20
const { Content, Header, Footer } = Layout;
ddcat1115's avatar
ddcat1115 committed
21
const { AuthorizedRoute, check } = Authorized;
ddcat1115's avatar
ddcat1115 committed
22

陈帅's avatar
陈帅 committed
23 24 25 26
/**
 * 根据菜单取得重定向地址.
 */
const redirectData = [];
jim's avatar
jim committed
27
const getRedirect = item => {
陈帅's avatar
陈帅 committed
28 29 30
  if (item && item.children) {
    if (item.children[0] && item.children[0].path) {
      redirectData.push({
jim's avatar
jim committed
31 32
        from: `${item.path}`,
        to: `${item.children[0].path}`,
陈帅's avatar
陈帅 committed
33
      });
jim's avatar
jim committed
34
      item.children.forEach(children => {
陈帅's avatar
陈帅 committed
35 36 37 38 39 40 41
        getRedirect(children);
      });
    }
  }
};
getMenuData().forEach(getRedirect);

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/**
 * 获取面包屑映射
 * @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
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
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
79 80 81 82
    maxWidth: 1599,
  },
  'screen-xxl': {
    minWidth: 1600,
afc163's avatar
afc163 committed
83 84 85
  },
};

jiang's avatar
jiang committed
86
let isMobile;
jim's avatar
jim committed
87
enquireScreen(b => {
jiang's avatar
jiang committed
88 89 90
  isMobile = b;
});

91 92 93 94 95 96 97
@connect(({ user, global = {}, loading }) => ({
  currentUser: user.currentUser,
  collapsed: global.collapsed,
  fetchingNotices: loading.effects['global/fetchNotices'],
  notices: global.notices,
}))
export default class BasicLayout extends React.PureComponent {
98
  static childContextTypes = {
ddcat1115's avatar
ddcat1115 committed
99 100
    location: PropTypes.object,
    breadcrumbNameMap: PropTypes.object,
jim's avatar
jim committed
101
  };
陈帅's avatar
陈帅 committed
102

jiang's avatar
jiang committed
103 104 105
  state = {
    isMobile,
  };
陈帅's avatar
陈帅 committed
106

107
  getChildContext() {
ddcat1115's avatar
ddcat1115 committed
108 109 110
    const { location, routerData } = this.props;
    return {
      location,
111
      breadcrumbNameMap: getBreadcrumbNameMap(getMenuData(), routerData),
ddcat1115's avatar
ddcat1115 committed
112
    };
113
  }
陈帅's avatar
陈帅 committed
114

jiang's avatar
jiang committed
115
  componentDidMount() {
jljsj's avatar
jljsj committed
116
    this.enquireHandler = enquireScreen(mobile => {
jiang's avatar
jiang committed
117
      this.setState({
afc163's avatar
afc163 committed
118
        isMobile: mobile,
jiang's avatar
jiang committed
119 120
      });
    });
121 122
    const { dispatch } = this.props;
    dispatch({
123 124
      type: 'user/fetchCurrent',
    });
jiang's avatar
jiang committed
125
  }
陈帅's avatar
陈帅 committed
126

jim's avatar
jim committed
127
  componentWillUnmount() {
jljsj's avatar
jljsj committed
128 129
    unenquireScreen(this.enquireHandler);
  }
陈帅's avatar
陈帅 committed
130

131
  getPageTitle() {
ddcat1115's avatar
ddcat1115 committed
132
    const { routerData, location } = this.props;
ddcat1115's avatar
ddcat1115 committed
133 134
    const { pathname } = location;
    let title = 'Ant Design Pro';
yoyo837's avatar
for in  
yoyo837 committed
135
    let currRouterData = null;
jim's avatar
jim committed
136
    // match params path
afc163's avatar
afc163 committed
137
    for (const key in Object.keys(routerData)) {
yoyo837's avatar
for in  
yoyo837 committed
138 139
      if (pathToRegexp(key).test(pathname)) {
        currRouterData = routerData[key];
afc163's avatar
afc163 committed
140
        break;
yoyo837's avatar
for in  
yoyo837 committed
141 142
      }
    }
jim's avatar
jim committed
143 144
    if (currRouterData && currRouterData.name) {
      title = `${currRouterData.name} - Ant Design Pro`;
ddcat1115's avatar
ddcat1115 committed
145
    }
ddcat1115's avatar
ddcat1115 committed
146
    return title;
147
  }
陈帅's avatar
陈帅 committed
148

wangyun122's avatar
wangyun122 committed
149
  getBaseRedirect = () => {
150 151 152
    // According to the url parameter to redirect
    // 这里是重定向的,重定向到 url 的 redirect 参数所示地址
    const urlParams = new URL(window.location.href);
jim's avatar
jim committed
153 154

    const redirect = urlParams.searchParams.get('redirect');
155
    // Remove the parameters in the url
jim's avatar
jim committed
156 157 158 159
    if (redirect) {
      urlParams.searchParams.delete('redirect');
      window.history.replaceState(null, 'redirect', urlParams.href);
    } else {
ddcat1115's avatar
ddcat1115 committed
160 161
      const { routerData } = this.props;
      // get the first authorized route path in routerData
jim's avatar
jim committed
162 163 164
      const authorizedPath = Object.keys(routerData).find(
        item => check(routerData[item].authority, item) && item !== '/'
      );
ddcat1115's avatar
ddcat1115 committed
165
      return authorizedPath;
jim's avatar
jim committed
166
    }
167
    return redirect;
jim's avatar
jim committed
168
  };
陈帅's avatar
陈帅 committed
169

jim's avatar
jim committed
170
  handleMenuCollapse = collapsed => {
171 172
    const { dispatch } = this.props;
    dispatch({
173 174 175
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
jim's avatar
jim committed
176
  };
陈帅's avatar
陈帅 committed
177

jim's avatar
jim committed
178
  handleNoticeClear = type => {
179
    message.success(`清空了${type}`);
180 181
    const { dispatch } = this.props;
    dispatch({
182 183 184
      type: 'global/clearNotices',
      payload: type,
    });
jim's avatar
jim committed
185
  };
陈帅's avatar
陈帅 committed
186

187
  handleMenuClick = ({ key }) => {
188
    const { dispatch } = this.props;
189
    if (key === 'triggerError') {
190
      dispatch(routerRedux.push('/exception/trigger'));
191 192
      return;
    }
193
    if (key === 'logout') {
194
      dispatch({
195 196 197
        type: 'login/logout',
      });
    }
jim's avatar
jim committed
198
  };
陈帅's avatar
陈帅 committed
199

jim's avatar
jim committed
200
  handleNoticeVisibleChange = visible => {
201
    const { dispatch } = this.props;
202
    if (visible) {
203
      dispatch({
204 205 206
        type: 'global/fetchNotices',
      });
    }
jim's avatar
jim committed
207
  };
陈帅's avatar
陈帅 committed
208

209
  render() {
偏右's avatar
偏右 committed
210
    const {
jim's avatar
jim committed
211 212 213 214 215 216 217
      currentUser,
      collapsed,
      fetchingNotices,
      notices,
      routerData,
      match,
      location,
偏右's avatar
偏右 committed
218
    } = this.props;
219
    const { isMobile: mb } = this.state;
220
    const baseRedirect = this.getBaseRedirect();
afc163's avatar
afc163 committed
221 222
    const layout = (
      <Layout>
偏右's avatar
偏右 committed
223
        <SiderMenu
ddcat1115's avatar
ddcat1115 committed
224
          logo={logo}
ddcat1115's avatar
ddcat1115 committed
225 226 227 228
          // 不带Authorized参数的情况下如果没有权限,会强制跳到403界面
          // If you do not have the Authorized parameter
          // you will be forced to jump to the 403 interface without permission
          Authorized={Authorized}
ddcat1115's avatar
ddcat1115 committed
229
          menuData={getMenuData()}
afc163's avatar
afc163 committed
230
          collapsed={collapsed}
偏右's avatar
偏右 committed
231
          location={location}
232
          isMobile={mb}
233
          onCollapse={this.handleMenuCollapse}
偏右's avatar
偏右 committed
234
        />
afc163's avatar
afc163 committed
235
        <Layout>
236 237 238 239 240 241 242
          <Header style={{ padding: 0 }}>
            <GlobalHeader
              logo={logo}
              currentUser={currentUser}
              fetchingNotices={fetchingNotices}
              notices={notices}
              collapsed={collapsed}
243
              isMobile={mb}
244 245 246 247 248 249
              onNoticeClear={this.handleNoticeClear}
              onCollapse={this.handleMenuCollapse}
              onMenuClick={this.handleMenuClick}
              onNoticeVisibleChange={this.handleNoticeVisibleChange}
            />
          </Header>
afc163's avatar
afc163 committed
250
          <Content style={{ margin: '24px 24px 0', height: '100%' }}>
251
            <Switch>
jim's avatar
jim committed
252 253 254 255 256 257 258 259 260 261 262 263 264
              {redirectData.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"
                />
              ))}
265
              <Redirect exact from="/" to={baseRedirect} />
266 267
              <Route render={NotFound} />
            </Switch>
afc163's avatar
afc163 committed
268
          </Content>
269 270
          <Footer style={{ padding: 0 }}>
            <GlobalFooter
jim's avatar
jim committed
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
              links={[
                {
                  key: 'Pro 首页',
                  title: 'Pro 首页',
                  href: 'http://pro.ant.design',
                  blankTarget: true,
                },
                {
                  key: 'github',
                  title: <Icon type="github" />,
                  href: 'https://github.com/ant-design/ant-design-pro',
                  blankTarget: true,
                },
                {
                  key: 'Ant Design',
                  title: 'Ant Design',
                  href: 'http://ant.design',
                  blankTarget: true,
                },
              ]}
291
              copyright={
陈帅's avatar
陈帅 committed
292
                <Fragment>
293
                  Copyright <Icon type="copyright" /> 2018 蚂蚁金服体验技术部出品
陈帅's avatar
陈帅 committed
294
                </Fragment>
295 296 297
              }
            />
          </Footer>
298
        </Layout>
afc163's avatar
afc163 committed
299 300 301 302 303 304 305 306
      </Layout>
    );

    return (
      <DocumentTitle title={this.getPageTitle()}>
        <ContainerQuery query={query}>
          {params => <div className={classNames(params)}>{layout}</div>}
        </ContainerQuery>
307 308 309 310
      </DocumentTitle>
    );
  }
}