BasicLayout.js 12.5 KB
Newer Older
1 2
import React from 'react';
import PropTypes from 'prop-types';
afc163's avatar
afc163 committed
3
import { Layout, Menu, Icon, Avatar, Dropdown, Tag, message, Spin } from 'antd';
4 5
import DocumentTitle from 'react-document-title';
import { connect } from 'dva';
6
import { Link, Route, Redirect, Switch } from 'dva/router';
7 8
import moment from 'moment';
import groupBy from 'lodash/groupBy';
afc163's avatar
afc163 committed
9 10
import { ContainerQuery } from 'react-container-query';
import classNames from 'classnames';
11 12 13
import HeaderSearch from '../components/HeaderSearch';
import NoticeIcon from '../components/NoticeIcon';
import GlobalFooter from '../components/GlobalFooter';
afc163's avatar
afc163 committed
14
import { getNavData } from '../common/nav';
ddcat1115's avatar
ddcat1115 committed
15
import { getRouteData } from '../utils/utils';
afc163's avatar
afc163 committed
16 17
import NotFound from '../routes/Exception/404';
import styles from './BasicLayout.less';
18 19 20 21

const { Header, Sider, Content } = Layout;
const { SubMenu } = Menu;

afc163's avatar
afc163 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
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,
  },
};

43 44
class BasicLayout extends React.PureComponent {
  static childContextTypes = {
ddcat1115's avatar
ddcat1115 committed
45 46
    location: PropTypes.object,
    breadcrumbNameMap: PropTypes.object,
47
  }
afc163's avatar
afc163 committed
48 49 50 51
  constructor(props) {
    super(props);
    // 把一级 Layout 的 children 作为菜单项
    this.menus = getNavData().reduce((arr, current) => arr.concat(current.children), []);
afc163's avatar
afc163 committed
52 53 54
    this.state = {
      openKeys: this.getDefaultCollapsedSubMenus(props),
    };
afc163's avatar
afc163 committed
55
  }
56
  getChildContext() {
ddcat1115's avatar
ddcat1115 committed
57 58
    const { location } = this.props;
    const routeData = getRouteData('BasicLayout');
ddcat1115's avatar
ddcat1115 committed
59 60
    const firstMenuData = getNavData().reduce((arr, current) => arr.concat(current.children), []);
    const menuData = this.getMenuData(firstMenuData, '');
ddcat1115's avatar
ddcat1115 committed
61
    const breadcrumbNameMap = {};
ddcat1115's avatar
ddcat1115 committed
62

ddcat1115's avatar
ddcat1115 committed
63 64 65 66
    routeData.concat(menuData).forEach((item) => {
      breadcrumbNameMap[item.path] = item.name;
    });
    return { location, breadcrumbNameMap };
67 68 69 70 71 72
  }
  componentDidMount() {
    this.props.dispatch({
      type: 'user/fetchCurrent',
    });
  }
afc163's avatar
afc163 committed
73 74 75
  componentWillUnmount() {
    clearTimeout(this.resizeTimeout);
  }
76 77 78 79 80 81 82 83
  onCollapse = (collapsed) => {
    this.props.dispatch({
      type: 'global/changeLayoutCollapsed',
      payload: collapsed,
    });
  }
  onMenuClick = ({ key }) => {
    if (key === 'logout') {
ddcat1115's avatar
fix #52  
ddcat1115 committed
84 85 86
      this.props.dispatch({
        type: 'login/logout',
      });
87 88
    }
  }
ddcat1115's avatar
ddcat1115 committed
89 90 91 92 93 94 95 96 97 98
  getMenuData = (data, parentPath) => {
    let arr = [];
    data.forEach((item) => {
      if (item.children) {
        arr.push({ path: `${parentPath}/${item.path}`, name: item.name });
        arr = arr.concat(this.getMenuData(item.children, `${parentPath}/${item.path}`));
      }
    });
    return arr;
  }
afc163's avatar
afc163 committed
99 100
  getDefaultCollapsedSubMenus(props) {
    const currentMenuSelectedKeys = [...this.getCurrentMenuSelectedKeys(props)];
101
    currentMenuSelectedKeys.splice(-1, 1);
afc163's avatar
afc163 committed
102 103 104
    if (currentMenuSelectedKeys.length === 0) {
      return ['dashboard'];
    }
105 106
    return currentMenuSelectedKeys;
  }
afc163's avatar
afc163 committed
107 108
  getCurrentMenuSelectedKeys(props) {
    const { location: { pathname } } = props || this.props;
109 110
    const keys = pathname.split('/').slice(1);
    if (keys.length === 1 && keys[0] === '') {
afc163's avatar
afc163 committed
111
      return [this.menus[0].key];
112 113 114 115
    }
    return keys;
  }
  getNavMenuItems(menusData, parentPath = '') {
afc163's avatar
afc163 committed
116 117 118
    if (!menusData) {
      return [];
    }
119 120 121 122
    return menusData.map((item) => {
      if (!item.name) {
        return null;
      }
afc163's avatar
afc163 committed
123 124 125 126 127 128
      let itemPath;
      if (item.path.indexOf('http') === 0) {
        itemPath = item.path;
      } else {
        itemPath = `${parentPath}/${item.path || ''}`.replace(/\/+/g, '/');
      }
129 130 131 132
      if (item.children && item.children.some(child => child.name)) {
        return (
          <SubMenu
            title={
afc163's avatar
afc163 committed
133 134 135 136 137 138
              item.icon ? (
                <span>
                  <Icon type={item.icon} />
                  <span>{item.name}</span>
                </span>
              ) : item.name
139 140 141 142 143 144 145
            }
            key={item.key || item.path}
          >
            {this.getNavMenuItems(item.children, itemPath)}
          </SubMenu>
        );
      }
afc163's avatar
afc163 committed
146
      const icon = item.icon && <Icon type={item.icon} />;
147 148
      return (
        <Menu.Item key={item.key || item.path}>
afc163's avatar
afc163 committed
149 150 151 152 153 154
          {
            /^https?:\/\//.test(itemPath) ? (
              <a href={itemPath} target={item.target}>
                {icon}<span>{item.name}</span>
              </a>
            ) : (
afc163's avatar
afc163 committed
155 156 157 158 159
              <Link
                to={itemPath}
                target={item.target}
                replace={itemPath === this.props.location.pathname}
              >
afc163's avatar
afc163 committed
160 161
                {icon}<span>{item.name}</span>
              </Link>
WhatAKitty's avatar
WhatAKitty committed
162
            )
afc163's avatar
afc163 committed
163
          }
164 165 166 167 168
        </Menu.Item>
      );
    });
  }
  getPageTitle() {
ddcat1115's avatar
ddcat1115 committed
169 170 171
    const { location } = this.props;
    const { pathname } = location;
    let title = 'Ant Design Pro';
ddcat1115's avatar
ddcat1115 committed
172
    getRouteData('BasicLayout').forEach((item) => {
ddcat1115's avatar
ddcat1115 committed
173 174
      if (item.path === pathname) {
        title = `${item.name} - Ant Design Pro`;
175
      }
ddcat1115's avatar
ddcat1115 committed
176 177
    });
    return title;
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
  }
  getNoticeData() {
    const { notices = [] } = this.props;
    if (notices.length === 0) {
      return {};
    }
    const newNotices = notices.map((notice) => {
      const newNotice = { ...notice };
      if (newNotice.datetime) {
        newNotice.datetime = moment(notice.datetime).fromNow();
      }
      // transform id to item key
      if (newNotice.id) {
        newNotice.key = newNotice.id;
      }
      if (newNotice.extra && newNotice.status) {
        const color = ({
afc163's avatar
afc163 committed
195
          todo: '',
196 197
          processing: 'blue',
          urgent: 'red',
afc163's avatar
afc163 committed
198
          doing: 'gold',
199
        })[newNotice.status];
afc163's avatar
afc163 committed
200
        newNotice.extra = <Tag color={color} style={{ marginRight: 0 }}>{newNotice.extra}</Tag>;
201 202 203 204 205
      }
      return newNotice;
    });
    return groupBy(newNotices, 'type');
  }
afc163's avatar
afc163 committed
206
  handleOpenChange = (openKeys) => {
valleykid's avatar
valleykid committed
207 208
    const lastOpenKey = openKeys[openKeys.length - 1];
    const isMainMenu = this.menus.some(
valleykid's avatar
valleykid committed
209
      item => lastOpenKey && (item.key === lastOpenKey || item.path === lastOpenKey)
valleykid's avatar
valleykid committed
210
    );
afc163's avatar
afc163 committed
211
    this.setState({
valleykid's avatar
valleykid committed
212
      openKeys: isMainMenu ? [lastOpenKey] : [...openKeys],
afc163's avatar
afc163 committed
213 214
    });
  }
215 216 217 218 219 220
  toggle = () => {
    const { collapsed } = this.props;
    this.props.dispatch({
      type: 'global/changeLayoutCollapsed',
      payload: !collapsed,
    });
afc163's avatar
afc163 committed
221 222 223 224 225
    this.resizeTimeout = setTimeout(() => {
      const event = document.createEvent('HTMLEvents');
      event.initEvent('resize', true, false);
      window.dispatchEvent(event);
    }, 600);
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
  }
  handleNoticeClear = (type) => {
    message.success(`清空了${type}`);
    this.props.dispatch({
      type: 'global/clearNotices',
      payload: type,
    });
  }
  handleNoticeVisibleChange = (visible) => {
    if (visible) {
      this.props.dispatch({
        type: 'global/fetchNotices',
      });
    }
  }
  render() {
WhatAKitty's avatar
WhatAKitty committed
242
    const { app, currentUser, collapsed, fetchingNotices } = this.props;
243 244 245

    const menu = (
      <Menu className={styles.menu} selectedKeys={[]} onClick={this.onMenuClick}>
afc163's avatar
afc163 committed
246 247
        <Menu.Item disabled><Icon type="user" />个人中心</Menu.Item>
        <Menu.Item disabled><Icon type="setting" />设置</Menu.Item>
248 249 250 251 252 253
        <Menu.Divider />
        <Menu.Item key="logout"><Icon type="logout" />退出登录</Menu.Item>
      </Menu>
    );
    const noticeData = this.getNoticeData();

afc163's avatar
afc163 committed
254 255 256 257 258
    // Don't show popup menu when it is been collapsed
    const menuProps = collapsed ? {} : {
      openKeys: this.state.openKeys,
    };

afc163's avatar
afc163 committed
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
    const layout = (
      <Layout>
        <Sider
          trigger={null}
          collapsible
          collapsed={collapsed}
          breakpoint="md"
          onCollapse={this.onCollapse}
          width={256}
          className={styles.sider}
        >
          <div className={styles.logo}>
            <Link to="/">
              <img src="https://gw.alipayobjects.com/zos/rmsportal/iwWyPinUoseUxIAeElSx.svg" alt="logo" />
              <h1>Ant Design Pro</h1>
            </Link>
          </div>
          <Menu
            theme="dark"
            mode="inline"
            {...menuProps}
            onOpenChange={this.handleOpenChange}
            selectedKeys={this.getCurrentMenuSelectedKeys()}
            style={{ margin: '16px 0', width: '100%' }}
283
          >
afc163's avatar
afc163 committed
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
            {this.getNavMenuItems(this.menus)}
          </Menu>
        </Sider>
        <Layout>
          <Header className={styles.header}>
            <Icon
              className={styles.trigger}
              type={collapsed ? 'menu-unfold' : 'menu-fold'}
              onClick={this.toggle}
            />
            <div className={styles.right}>
              <HeaderSearch
                className={`${styles.action} ${styles.search}`}
                placeholder="站内搜索"
                dataSource={['搜索提示一', '搜索提示二', '搜索提示三']}
                onSearch={(value) => {
                  console.log('input', value); // eslint-disable-line
                }}
                onPressEnter={(value) => {
                  console.log('enter', value); // eslint-disable-line
                }}
305
              />
afc163's avatar
afc163 committed
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
              <NoticeIcon
                className={styles.action}
                count={currentUser.notifyCount}
                onItemClick={(item, tabProps) => {
                  console.log(item, tabProps); // eslint-disable-line
                }}
                onClear={this.handleNoticeClear}
                onPopupVisibleChange={this.handleNoticeVisibleChange}
                loading={fetchingNotices}
                popupAlign={{ offset: [20, -16] }}
              >
                <NoticeIcon.Tab
                  list={noticeData['通知']}
                  title="通知"
                  emptyText="你已查看所有通知"
                  emptyImage="https://gw.alipayobjects.com/zos/rmsportal/wAhyIChODzsoKIOBHcBk.svg"
                />
                <NoticeIcon.Tab
                  list={noticeData['消息']}
                  title="消息"
                  emptyText="您已读完所有消息"
                  emptyImage="https://gw.alipayobjects.com/zos/rmsportal/sAuJeJzSKbUmHfBQRzmZ.svg"
328
                />
afc163's avatar
afc163 committed
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
                <NoticeIcon.Tab
                  list={noticeData['待办']}
                  title="待办"
                  emptyText="你已完成所有待办"
                  emptyImage="https://gw.alipayobjects.com/zos/rmsportal/HsIsxMZiWKrNUavQUXqx.svg"
                />
              </NoticeIcon>
              {currentUser.name ? (
                <Dropdown overlay={menu}>
                  <span className={`${styles.action} ${styles.account}`}>
                    <Avatar size="small" className={styles.avatar} src={currentUser.avatar} />
                    {currentUser.name}
                  </span>
                </Dropdown>
              ) : <Spin size="small" style={{ marginLeft: 8 }} />}
            </div>
          </Header>
          <Content style={{ margin: '24px 24px 0', height: '100%' }}>
            <Switch>
              {
                getRouteData('BasicLayout').map(item =>
                  (
                    <Route
                      exact={item.exact}
                      key={item.path}
                      path={item.path}
WhatAKitty's avatar
WhatAKitty committed
355
                      component={item.component(app)}
afc163's avatar
afc163 committed
356
                    />
ddcat1115's avatar
ddcat1115 committed
357
                  )
afc163's avatar
afc163 committed
358 359
                )
              }
afc163's avatar
afc163 committed
360 361
              <Redirect exact from="/" to="/dashboard/analysis" />
              <Route component={NotFound} />
afc163's avatar
afc163 committed
362 363 364
            </Switch>
            <GlobalFooter
              links={[{
afc163's avatar
afc163 committed
365
                title: 'Pro 首页',
afc163's avatar
afc163 committed
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
                href: 'http://pro.ant.design',
                blankTarget: true,
              }, {
                title: 'GitHub',
                href: 'https://github.com/ant-design/ant-design-pro',
                blankTarget: true,
              }, {
                title: 'Ant Design',
                href: 'http://ant.design',
                blankTarget: true,
              }]}
              copyright={
                <div>
                  Copyright <Icon type="copyright" /> 2017 蚂蚁金服体验技术部出品
                </div>
              }
            />
          </Content>
384
        </Layout>
afc163's avatar
afc163 committed
385 386 387 388 389 390 391 392
      </Layout>
    );

    return (
      <DocumentTitle title={this.getPageTitle()}>
        <ContainerQuery query={query}>
          {params => <div className={classNames(params)}>{layout}</div>}
        </ContainerQuery>
393 394 395 396 397 398 399 400 401 402 403
      </DocumentTitle>
    );
  }
}

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