Login.js 3.25 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 30 31 32 33 34 35 36 37 38 39 40 41
  onGetCaptcha = () => {
    return new Promise((resolve, reject) => {
      this.loginForm.validateFields(['mobile'], {}, (err, values) => {
        if (err) {
          reject(err);
        } else {
          this.props
            .dispatch({
              type: 'login/getCaptcha',
              payload: values.mobile,
            })
            .then(resolve)
            .catch(reject);
        }
      });
    });
  };
  loginForm;
ddcat1115's avatar
ddcat1115 committed
42 43 44 45 46 47 48 49 50 51 52
  handleSubmit = (err, values) => {
    const { type } = this.state;
    if (!err) {
      this.props.dispatch({
        type: 'login/login',
        payload: {
          ...values,
          type,
        },
      });
    }
jim's avatar
jim committed
53
  };
54

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

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

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