Login.js 3.29 KB
Newer Older
1 2
import React, { Component } from 'react';
import { connect } from 'dva';
afc163's avatar
afc163 committed
3
import { Link } from 'dva/router';
ddcat1115's avatar
ddcat1115 committed
4
import { Checkbox, Alert, Icon } from 'antd';
niko's avatar
niko committed
5
import Login from 'components/Login';
6 7
import styles from './Login.less';

ddcat1115's avatar
ddcat1115 committed
8
const { Tab, UserName, Password, Mobile, Captcha, Submit } = Login;
9

Andreas Cederström's avatar
Andreas Cederström committed
10 11 12
@connect(({ login, loading }) => ({
  login,
  submitting: loading.effects['login/login'],
13
}))
ddcat1115's avatar
ddcat1115 committed
14
export default class LoginPage extends Component {
15 16
  state = {
    type: 'account',
ddcat1115's avatar
ddcat1115 committed
17
    autoLogin: true,
jim's avatar
jim committed
18
  };
19

jim's avatar
jim committed
20
  onTabChange = type => {
afc163's avatar
afc163 committed
21
    this.setState({ type });
jim's avatar
jim committed
22
  };
23

24 25 26 27 28 29
  onGetCaptcha = () => {
    return new Promise((resolve, reject) => {
      this.loginForm.validateFields(['mobile'], {}, (err, values) => {
        if (err) {
          reject(err);
        } else {
陈帅's avatar
陈帅 committed
30 31 32 33 34
          const { dispatch } = this.props;
          dispatch({
            type: 'login/getCaptcha',
            payload: values.mobile,
          })
35 36 37 38 39 40
            .then(resolve)
            .catch(reject);
        }
      });
    });
  };
陈帅's avatar
陈帅 committed
41

ddcat1115's avatar
ddcat1115 committed
42 43 44
  handleSubmit = (err, values) => {
    const { type } = this.state;
    if (!err) {
陈帅's avatar
陈帅 committed
45 46
      const { dispatch } = this.props;
      dispatch({
ddcat1115's avatar
ddcat1115 committed
47 48 49 50 51 52 53
        type: 'login/login',
        payload: {
          ...values,
          type,
        },
      });
    }
jim's avatar
jim committed
54
  };
55

jim's avatar
jim committed
56
  changeAutoLogin = e => {
ddcat1115's avatar
ddcat1115 committed
57 58 59
    this.setState({
      autoLogin: e.target.checked,
    });
jim's avatar
jim committed
60
  };
61

陈帅's avatar
陈帅 committed
62 63
  loginForm;

jim's avatar
jim committed
64 65 66
  renderMessage = content => {
    return <Alert style={{ marginBottom: 24 }} message={content} type="error" showIcon />;
  };
67 68

  render() {
Andreas Cederström's avatar
Andreas Cederström committed
69
    const { login, submitting } = this.props;
陈帅's avatar
陈帅 committed
70
    const { type, autoLogin } = this.state;
71 72
    return (
      <div className={styles.main}>
73 74 75 76 77 78 79 80
        <Login
          defaultActiveKey={type}
          onTabChange={this.onTabChange}
          onSubmit={this.handleSubmit}
          ref={form => {
            this.loginForm = form;
          }}
        >
ddcat1115's avatar
ddcat1115 committed
81
          <Tab key="account" tab="账户密码登录">
jim's avatar
jim committed
82
            {login.status === 'error' &&
ddcat1115's avatar
ddcat1115 committed
83
              login.type === 'account' &&
Amumu's avatar
Amumu committed
84
              !submitting &&
jim's avatar
jim committed
85
              this.renderMessage('账户或密码错误(admin/888888)')}
ddcat1115's avatar
ddcat1115 committed
86 87
            <UserName name="userName" placeholder="admin/user" />
            <Password name="password" placeholder="888888/123456" />
ddcat1115's avatar
ddcat1115 committed
88 89
          </Tab>
          <Tab key="mobile" tab="手机号登录">
jim's avatar
jim committed
90
            {login.status === 'error' &&
ddcat1115's avatar
ddcat1115 committed
91
              login.type === 'mobile' &&
Amumu's avatar
Amumu committed
92
              !submitting &&
jim's avatar
jim committed
93
              this.renderMessage('验证码错误')}
ddcat1115's avatar
ddcat1115 committed
94
            <Mobile name="mobile" />
95
            <Captcha name="captcha" countDown={120} onGetCaptcha={this.onGetCaptcha} />
ddcat1115's avatar
ddcat1115 committed
96 97
          </Tab>
          <div>
陈帅's avatar
陈帅 committed
98
            <Checkbox checked={autoLogin} onChange={this.changeAutoLogin}>
jim's avatar
jim committed
99 100 101 102 103
              自动登录
            </Checkbox>
            <a style={{ float: 'right' }} href="">
              忘记密码
            </a>
ddcat1115's avatar
ddcat1115 committed
104
          </div>
Andreas Cederström's avatar
Andreas Cederström committed
105
          <Submit loading={submitting}>登录</Submit>
ddcat1115's avatar
ddcat1115 committed
106 107 108 109 110
          <div className={styles.other}>
            其他登录方式
            <Icon className={styles.icon} type="alipay-circle" />
            <Icon className={styles.icon} type="taobao-circle" />
            <Icon className={styles.icon} type="weibo-circle" />
jim's avatar
jim committed
111 112 113
            <Link className={styles.register} to="/user/register">
              注册账户
            </Link>
ddcat1115's avatar
ddcat1115 committed
114 115
          </div>
        </Login>
116 117 118 119
      </div>
    );
  }
}