UserLayout.js 2.07 KB
Newer Older
1 2
import React from 'react';
import PropTypes from 'prop-types';
ddcat1115's avatar
ddcat1115 committed
3
import { Link, Route } from 'dva/router';
4 5 6 7
import DocumentTitle from 'react-document-title';
import { Icon } from 'antd';
import GlobalFooter from '../components/GlobalFooter';
import styles from './UserLayout.less';
afc163's avatar
afc163 committed
8
import logo from '../assets/logo.svg';
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

const links = [{
  title: '帮助',
  href: '',
}, {
  title: '隐私',
  href: '',
}, {
  title: '条款',
  href: '',
}];

const copyright = <div>Copyright <Icon type="copyright" /> 2017 蚂蚁金服体验技术部出品</div>;

class UserLayout extends React.PureComponent {
  static childContextTypes = {
ddcat1115's avatar
ddcat1115 committed
25
    location: PropTypes.object,
26 27
  }
  getChildContext() {
ddcat1115's avatar
ddcat1115 committed
28 29
    const { location } = this.props;
    return { location };
30 31
  }
  getPageTitle() {
32
    const { getRouteData, location } = this.props;
ddcat1115's avatar
ddcat1115 committed
33 34 35 36 37
    const { pathname } = location;
    let title = 'Ant Design Pro';
    getRouteData('UserLayout').forEach((item) => {
      if (item.path === pathname) {
        title = `${item.name} - Ant Design Pro`;
38
      }
ddcat1115's avatar
ddcat1115 committed
39 40
    });
    return title;
41 42
  }
  render() {
43 44
    const { getRouteData } = this.props;

45 46 47 48 49
    return (
      <DocumentTitle title={this.getPageTitle()}>
        <div className={styles.container}>
          <div className={styles.top}>
            <div className={styles.header}>
ddcat1115's avatar
ddcat1115 committed
50
              <Link to="/">
afc163's avatar
afc163 committed
51
                <img alt="logo" className={styles.logo} src={logo} />
ddcat1115's avatar
ddcat1115 committed
52 53
                <span className={styles.title}>Ant Design</span>
              </Link>
54
            </div>
afc163's avatar
afc163 committed
55
            <div className={styles.desc}>Ant Design 是西湖区最具影响力的 Web 设计规范</div>
56
          </div>
ddcat1115's avatar
ddcat1115 committed
57 58 59 60 61 62 63
          {
            getRouteData('UserLayout').map(item =>
              (
                <Route
                  exact={item.exact}
                  key={item.path}
                  path={item.path}
64
                  component={item.component}
ddcat1115's avatar
ddcat1115 committed
65 66 67 68
                />
              )
            )
          }
69 70 71 72 73 74 75 76
          <GlobalFooter className={styles.footer} links={links} copyright={copyright} />
        </div>
      </DocumentTitle>
    );
  }
}

export default UserLayout;