BasicLayout.js 6.33 KB
Newer Older
1 2
import React from 'react';
import PropTypes from 'prop-types';
3
import { Layout, Icon, message } from 'antd';
4 5
import DocumentTitle from 'react-document-title';
import { connect } from 'dva';
偏右's avatar
偏右 committed
6
import { Route, Redirect, Switch } from 'dva/router';
afc163's avatar
afc163 committed
7 8
import { ContainerQuery } from 'react-container-query';
import classNames from 'classnames';
jiang's avatar
jiang committed
9
import { enquireScreen } from 'enquire-js';
偏右's avatar
偏右 committed
10
import GlobalHeader from '../components/GlobalHeader';
11
import GlobalFooter from '../components/GlobalFooter';
偏右's avatar
偏右 committed
12
import SiderMenu from '../components/SiderMenu';
afc163's avatar
afc163 committed
13
import NotFound from '../routes/Exception/404';
ddcat1115's avatar
ddcat1115 committed
14
import { getRoutes } from '../utils/utils';
ddcat1115's avatar
ddcat1115 committed
15
import Authorized from '../utils/Authorized';
陈帅's avatar
陈帅 committed
16
import { getMenuData } from '../common/menu';
17
import logo from '../assets/logo.svg';
18

ddcat1115's avatar
ddcat1115 committed
19 20 21
const { Content } = Layout;
const { AuthorizedRoute } = Authorized;

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

afc163's avatar
afc163 committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
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,
  },
};

jiang's avatar
jiang committed
62 63 64 65 66
let isMobile;
enquireScreen((b) => {
  isMobile = b;
});

67 68
class BasicLayout extends React.PureComponent {
  static childContextTypes = {
ddcat1115's avatar
ddcat1115 committed
69 70
    location: PropTypes.object,
    breadcrumbNameMap: PropTypes.object,
71
  }
jiang's avatar
jiang committed
72 73 74
  state = {
    isMobile,
  };
75
  getChildContext() {
ddcat1115's avatar
ddcat1115 committed
76 77 78 79 80
    const { location, routerData } = this.props;
    return {
      location,
      breadcrumbNameMap: routerData,
    };
81
  }
jiang's avatar
jiang committed
82
  componentDidMount() {
afc163's avatar
afc163 committed
83
    enquireScreen((mobile) => {
jiang's avatar
jiang committed
84
      this.setState({
afc163's avatar
afc163 committed
85
        isMobile: mobile,
jiang's avatar
jiang committed
86 87
      });
    });
88 89 90
    this.props.dispatch({
      type: 'user/fetchCurrent',
    });
jiang's avatar
jiang committed
91
  }
92
  getPageTitle() {
ddcat1115's avatar
ddcat1115 committed
93
    const { routerData, location } = this.props;
ddcat1115's avatar
ddcat1115 committed
94 95
    const { pathname } = location;
    let title = 'Ant Design Pro';
ddcat1115's avatar
ddcat1115 committed
96 97 98
    if (routerData[pathname] && routerData[pathname].name) {
      title = `${routerData[pathname].name} - Ant Design Pro`;
    }
ddcat1115's avatar
ddcat1115 committed
99
    return title;
100
  }
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
  handleMenuCollapse = (collapsed) => {
    this.props.dispatch({
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
  }
  handleNoticeClear = (type) => {
    message.success(`清空了${type}`);
    this.props.dispatch({
      type: 'global/clearNotices',
      payload: type,
    });
  }
  handleMenuClick = ({ key }) => {
    if (key === 'logout') {
      this.props.dispatch({
        type: 'login/logout',
      });
    }
  }
  handleNoticeVisibleChange = (visible) => {
    if (visible) {
      this.props.dispatch({
        type: 'global/fetchNotices',
      });
    }
  }
128
  render() {
偏右's avatar
偏右 committed
129
    const {
130
      currentUser, collapsed, fetchingNotices, notices, routerData, match, location,
偏右's avatar
偏右 committed
131
    } = this.props;
afc163's avatar
afc163 committed
132 133
    const layout = (
      <Layout>
偏右's avatar
偏右 committed
134
        <SiderMenu
ddcat1115's avatar
ddcat1115 committed
135
          logo={logo}
ddcat1115's avatar
ddcat1115 committed
136 137 138 139
          // 不带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
140
          menuData={getMenuData()}
afc163's avatar
afc163 committed
141
          collapsed={collapsed}
偏右's avatar
偏右 committed
142
          location={location}
jiang's avatar
jiang committed
143
          isMobile={this.state.isMobile}
144
          onCollapse={this.handleMenuCollapse}
偏右's avatar
偏右 committed
145
        />
afc163's avatar
afc163 committed
146
        <Layout>
偏右's avatar
偏右 committed
147
          <GlobalHeader
148
            logo={logo}
偏右's avatar
偏右 committed
149 150 151 152
            currentUser={currentUser}
            fetchingNotices={fetchingNotices}
            notices={notices}
            collapsed={collapsed}
jiang's avatar
jiang committed
153
            isMobile={this.state.isMobile}
154 155 156 157
            onNoticeClear={this.handleNoticeClear}
            onCollapse={this.handleMenuCollapse}
            onMenuClick={this.handleMenuClick}
            onNoticeVisibleChange={this.handleNoticeVisibleChange}
偏右's avatar
偏右 committed
158
          />
afc163's avatar
afc163 committed
159
          <Content style={{ margin: '24px 24px 0', height: '100%' }}>
afc163's avatar
afc163 committed
160 161 162
            <div style={{ minHeight: 'calc(100vh - 260px)' }}>
              <Switch>
                {
ddcat1115's avatar
ddcat1115 committed
163 164 165 166 167 168 169 170 171 172 173
                  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"
                      />
                    )
ddcat1115's avatar
ddcat1115 committed
174
                  )
afc163's avatar
afc163 committed
175
                }
陈帅's avatar
陈帅 committed
176
                {
ddcat1115's avatar
ddcat1115 committed
177 178 179
                  redirectData.map(item =>
                    <Redirect key={item.from} exact from={item.from} to={item.to} />
                  )
陈帅's avatar
陈帅 committed
180
                }
afc163's avatar
afc163 committed
181
                <Redirect exact from="/" to="/dashboard/analysis" />
ddcat1115's avatar
ddcat1115 committed
182
                <Route render={NotFound} />
afc163's avatar
afc163 committed
183 184
              </Switch>
            </div>
afc163's avatar
afc163 committed
185 186
            <GlobalFooter
              links={[{
187
                key: 'Pro 首页',
afc163's avatar
afc163 committed
188
                title: 'Pro 首页',
afc163's avatar
afc163 committed
189 190 191
                href: 'http://pro.ant.design',
                blankTarget: true,
              }, {
192 193
                key: 'github',
                title: <Icon type="github" />,
afc163's avatar
afc163 committed
194 195 196
                href: 'https://github.com/ant-design/ant-design-pro',
                blankTarget: true,
              }, {
197
                key: 'Ant Design',
afc163's avatar
afc163 committed
198 199 200 201 202 203 204 205 206 207 208
                title: 'Ant Design',
                href: 'http://ant.design',
                blankTarget: true,
              }]}
              copyright={
                <div>
                  Copyright <Icon type="copyright" /> 2017 蚂蚁金服体验技术部出品
                </div>
              }
            />
          </Content>
209
        </Layout>
afc163's avatar
afc163 committed
210 211 212 213 214 215 216 217
      </Layout>
    );

    return (
      <DocumentTitle title={this.getPageTitle()}>
        <ContainerQuery query={query}>
          {params => <div className={classNames(params)}>{layout}</div>}
        </ContainerQuery>
218 219 220 221 222 223 224 225 226 227 228
      </DocumentTitle>
    );
  }
}

export default connect(state => ({
  currentUser: state.user.currentUser,
  collapsed: state.global.collapsed,
  fetchingNotices: state.global.fetchingNotices,
  notices: state.global.notices,
}))(BasicLayout);