UserLayout.js 1.96 KB
Newer Older
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
1
import React, { Fragment } from 'react';
2
import { formatMessage } from 'umi/locale';
zinkey's avatar
zinkey committed
3
import Link from 'umi/link';
4
import { Icon } from 'antd';
5
import GlobalFooter from 'ant-design-pro/lib/GlobalFooter';
6
import SelectLang from '@/components/SelectLang';
7
import styles from './UserLayout.less';
8
import logo from '../assets/logo.svg';
xiaohu's avatar
xiaohu committed
9

jim's avatar
jim committed
10 11 12
const links = [
  {
    key: 'help',
13
    title: formatMessage({ id: 'layout.user.link.help' }),
jim's avatar
jim committed
14 15 16 17
    href: '',
  },
  {
    key: 'privacy',
18
    title: formatMessage({ id: 'layout.user.link.privacy' }),
jim's avatar
jim committed
19 20 21 22
    href: '',
  },
  {
    key: 'terms',
23
    title: formatMessage({ id: 'layout.user.link.terms' }),
jim's avatar
jim committed
24 25 26
    href: '',
  },
];
27

jim's avatar
jim committed
28 29 30 31 32
const copyright = (
  <Fragment>
    Copyright <Icon type="copyright" /> 2018 ่š‚่š้‡‘ๆœไฝ“้ชŒๆŠ€ๆœฏ้ƒจๅ‡บๅ“
  </Fragment>
);
33

34
class UserLayout extends React.PureComponent {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
35
  // @TODO title
36 37 38 39 40 41 42 43 44
  // getPageTitle() {
  //   const { routerData, location } = this.props;
  //   const { pathname } = location;
  //   let title = 'Ant Design Pro';
  //   if (routerData[pathname] && routerData[pathname].name) {
  //     title = `${routerData[pathname].name} - Ant Design Pro`;
  //   }
  //   return title;
  // }
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
45

46
  render() {
xiaohu's avatar
xiaohu committed
47
    const { children } = this.props;
48
    return (
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
49
      // @TODO <DocumentTitle title={this.getPageTitle()}>
50
      <div className={styles.container}>
51 52 53
        <div className={styles.lang}>
          <SelectLang />
        </div>
54 55 56 57 58 59 60
        <div className={styles.content}>
          <div className={styles.top}>
            <div className={styles.header}>
              <Link to="/">
                <img alt="logo" className={styles.logo} src={logo} />
                <span className={styles.title}>Ant Design</span>
              </Link>
61
            </div>
62 63 64
            <div className={styles.desc}>Ant Design ๆ˜ฏ่ฅฟๆน–ๅŒบๆœ€ๅ…ทๅฝฑๅ“ๅŠ›็š„ Web ่ฎพ่ฎก่ง„่Œƒ</div>
          </div>
          {children}
65
        </div>
66 67
        <GlobalFooter links={links} copyright={copyright} />
      </div>
68 69 70 71 72
    );
  }
}

export default UserLayout;