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
class BasicLayout extends React.PureComponent {
  static childContextTypes = {
ddcat1115's avatar
ddcat1115 committed
93 94
    location: PropTypes.object,
    breadcrumbNameMap: PropTypes.object,
jim's avatar
jim committed
95
  };
陈帅's avatar
陈帅 committed
96

jiang's avatar
jiang committed
97 98 99
  state = {
    isMobile,
  };
陈帅's avatar
陈帅 committed
100

101
  getChildContext() {
ddcat1115's avatar
ddcat1115 committed
102 103 104
    const { location, routerData } = this.props;
    return {
      location,
105
      breadcrumbNameMap: getBreadcrumbNameMap(getMenuData(), routerData),
ddcat1115's avatar
ddcat1115 committed
106
    };
107
  }
陈帅's avatar
陈帅 committed
108

jiang's avatar
jiang committed
109
  componentDidMount() {
jljsj's avatar
jljsj committed
110
    this.enquireHandler = enquireScreen(mobile => {
jiang's avatar
jiang committed
111
      this.setState({
afc163's avatar
afc163 committed
112
        isMobile: mobile,
jiang's avatar
jiang committed
113 114
      });
    });
115 116
    const { dispatch } = this.props;
    dispatch({
117 118
      type: 'user/fetchCurrent',
    });
jiang's avatar
jiang committed
119
  }
陈帅's avatar
陈帅 committed
120

jim's avatar
jim committed
121
  componentWillUnmount() {
jljsj's avatar
jljsj committed
122 123
    unenquireScreen(this.enquireHandler);
  }
陈帅's avatar
陈帅 committed
124

125
  getPageTitle() {
ddcat1115's avatar
ddcat1115 committed
126
    const { routerData, location } = this.props;
ddcat1115's avatar
ddcat1115 committed
127 128
    const { pathname } = location;
    let title = 'Ant Design Pro';
jim's avatar
jim committed
129 130 131 132 133 134 135 136 137
    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
138
    }
ddcat1115's avatar
ddcat1115 committed
139
    return title;
140
  }
陈帅's avatar
陈帅 committed
141

wangyun122's avatar
wangyun122 committed
142
  getBaseRedirect = () => {
143 144 145
    // According to the url parameter to redirect
    // 这里是重定向的,重定向到 url 的 redirect 参数所示地址
    const urlParams = new URL(window.location.href);
jim's avatar
jim committed
146 147

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

jim's avatar
jim committed
163
  handleMenuCollapse = collapsed => {
164 165
    const { dispatch } = this.props;
    dispatch({
166 167 168
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
jim's avatar
jim committed
169
  };
陈帅's avatar
陈帅 committed
170

jim's avatar
jim committed
171
  handleNoticeClear = type => {
172
    message.success(`清空了${type}`);
173 174
    const { dispatch } = this.props;
    dispatch({
175 176 177
      type: 'global/clearNotices',
      payload: type,
    });
jim's avatar
jim committed
178
  };
陈帅's avatar
陈帅 committed
179

180
  handleMenuClick = ({ key }) => {
181
    const { dispatch } = this.props;
182
    if (key === 'triggerError') {
183
      dispatch(routerRedux.push('/exception/trigger'));
184 185
      return;
    }
186
    if (key === 'logout') {
187
      dispatch({
188 189 190
        type: 'login/logout',
      });
    }
jim's avatar
jim committed
191
  };
陈帅's avatar
陈帅 committed
192

jim's avatar
jim committed
193
  handleNoticeVisibleChange = visible => {
194
    const { dispatch } = this.props;
195
    if (visible) {
196
      dispatch({
197 198 199
        type: 'global/fetchNotices',
      });
    }
jim's avatar
jim committed
200
  };
陈帅's avatar
陈帅 committed
201

202
  render() {
偏右's avatar
偏右 committed
203
    const {
jim's avatar
jim committed
204 205 206 207 208 209 210
      currentUser,
      collapsed,
      fetchingNotices,
      notices,
      routerData,
      match,
      location,
偏右's avatar
偏右 committed
211
    } = this.props;
212
    const { isMobile: mb } = this.state;
wangyun122's avatar
wangyun122 committed
213
    const bashRedirect = this.getBaseRedirect();
afc163's avatar
afc163 committed
214 215
    const layout = (
      <Layout>
偏右's avatar
偏右 committed
216
        <SiderMenu
ddcat1115's avatar
ddcat1115 committed
217
          logo={logo}
ddcat1115's avatar
ddcat1115 committed
218 219 220 221
          // 不带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
222
          menuData={getMenuData()}
afc163's avatar
afc163 committed
223
          collapsed={collapsed}
偏右's avatar
偏右 committed
224
          location={location}
225
          isMobile={mb}
226
          onCollapse={this.handleMenuCollapse}
偏右's avatar
偏右 committed
227
        />
afc163's avatar
afc163 committed
228
        <Layout>
229 230 231 232 233 234 235
          <Header style={{ padding: 0 }}>
            <GlobalHeader
              logo={logo}
              currentUser={currentUser}
              fetchingNotices={fetchingNotices}
              notices={notices}
              collapsed={collapsed}
236
              isMobile={mb}
237 238 239 240 241 242
              onNoticeClear={this.handleNoticeClear}
              onCollapse={this.handleMenuCollapse}
              onMenuClick={this.handleMenuClick}
              onNoticeVisibleChange={this.handleNoticeVisibleChange}
            />
          </Header>
afc163's avatar
afc163 committed
243
          <Content style={{ margin: '24px 24px 0', height: '100%' }}>
244
            <Switch>
jim's avatar
jim committed
245 246 247 248 249 250 251 252 253 254 255 256 257
              {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"
                />
              ))}
258 259 260
              <Redirect exact from="/" to={bashRedirect} />
              <Route render={NotFound} />
            </Switch>
afc163's avatar
afc163 committed
261
          </Content>
262 263
          <Footer style={{ padding: 0 }}>
            <GlobalFooter
jim's avatar
jim committed
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
              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,
                },
              ]}
284
              copyright={
陈帅's avatar
陈帅 committed
285
                <Fragment>
286
                  Copyright <Icon type="copyright" /> 2018 蚂蚁金服体验技术部出品
陈帅's avatar
陈帅 committed
287
                </Fragment>
288 289 290
              }
            />
          </Footer>
291
        </Layout>
afc163's avatar
afc163 committed
292 293 294 295 296 297 298 299
      </Layout>
    );

    return (
      <DocumentTitle title={this.getPageTitle()}>
        <ContainerQuery query={query}>
          {params => <div className={classNames(params)}>{layout}</div>}
        </ContainerQuery>
300 301 302 303 304
      </DocumentTitle>
    );
  }
}

Amumu's avatar
Amumu committed
305
export default connect(({ user, global = {}, loading }) => ({
Andreas Cederström's avatar
Andreas Cederström committed
306 307 308 309
  currentUser: user.currentUser,
  collapsed: global.collapsed,
  fetchingNotices: loading.effects['global/fetchNotices'],
  notices: global.notices,
310
}))(BasicLayout);