index.js 2.96 KB
Newer Older
ddcat1115's avatar
ddcat1115 committed
1 2 3 4 5 6 7 8
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Form, Tabs } from 'antd';
import classNames from 'classnames';
import LoginItem from './LoginItem';
import LoginTab from './LoginTab';
import LoginSubmit from './LoginSubmit';
import styles from './index.less';
jim's avatar
jim committed
9
import LoginContext from './loginContext';
ddcat1115's avatar
ddcat1115 committed
10 11 12 13 14 15 16 17

class Login extends Component {
  static propTypes = {
    className: PropTypes.string,
    defaultActiveKey: PropTypes.string,
    onTabChange: PropTypes.func,
    onSubmit: PropTypes.func,
  };
jim's avatar
jim committed
18 19 20 21 22 23 24 25

  static defaultProps = {
    className: '',
    defaultActiveKey: '',
    onTabChange: () => {},
    onSubmit: () => {},
  };

ddcat1115's avatar
ddcat1115 committed
26 27 28 29 30
  state = {
    type: this.props.defaultActiveKey,
    tabs: [],
    active: {},
  };
jim's avatar
jim committed
31 32 33 34 35 36 37
  onSwitch = type => {
    this.setState({
      type,
    });
    this.props.onTabChange(type);
  };
  getContext = () => {
ddcat1115's avatar
ddcat1115 committed
38 39
    return {
      tabUtil: {
jim's avatar
jim committed
40
        addTab: id => {
ddcat1115's avatar
ddcat1115 committed
41 42 43 44
          this.setState({
            tabs: [...this.state.tabs, id],
          });
        },
jim's avatar
jim committed
45
        removeTab: id => {
ddcat1115's avatar
ddcat1115 committed
46 47 48 49 50 51
          this.setState({
            tabs: this.state.tabs.filter(currentId => currentId !== id),
          });
        },
      },
      form: this.props.form,
jim's avatar
jim committed
52
      updateActive: activeItem => {
ddcat1115's avatar
ddcat1115 committed
53 54 55 56 57 58 59 60 61 62 63
        const { type, active } = this.state;
        if (active[type]) {
          active[type].push(activeItem);
        } else {
          active[type] = [activeItem];
        }
        this.setState({
          active,
        });
      },
    };
jim's avatar
jim committed
64 65
  };
  handleSubmit = e => {
ddcat1115's avatar
ddcat1115 committed
66 67 68
    e.preventDefault();
    const { active, type } = this.state;
    const activeFileds = active[type];
jim's avatar
jim committed
69 70 71 72
    this.props.form.validateFields(activeFileds, { force: true }, (err, values) => {
      this.props.onSubmit(err, values);
    });
  };
ddcat1115's avatar
ddcat1115 committed
73 74 75 76 77
  render() {
    const { className, children } = this.props;
    const { type, tabs } = this.state;
    const TabChildren = [];
    const otherChildren = [];
jim's avatar
jim committed
78
    React.Children.forEach(children, item => {
79 80 81
      if (!item) {
        return;
      }
ddcat1115's avatar
ddcat1115 committed
82
      // eslint-disable-next-line
83
      if (item.type.typeName === 'LoginTab') {
ddcat1115's avatar
ddcat1115 committed
84 85 86 87 88 89
        TabChildren.push(item);
      } else {
        otherChildren.push(item);
      }
    });
    return (
jim's avatar
jim committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
      <LoginContext.Provider value={this.getContext()}>
        <div className={classNames(className, styles.login)}>
          <Form onSubmit={this.handleSubmit}>
            {tabs.length ? (
              <>
                <Tabs
                  animated={false}
                  className={styles.tabs}
                  activeKey={type}
                  onChange={this.onSwitch}
                >
                  {TabChildren}
                </Tabs>
                {otherChildren}
              </>
            ) : (
              [...children]
            )}
          </Form>
        </div>
      </LoginContext.Provider>
ddcat1115's avatar
ddcat1115 committed
111 112 113 114 115 116
    );
  }
}

Login.Tab = LoginTab;
Login.Submit = LoginSubmit;
jim's avatar
jim committed
117
Object.keys(LoginItem).forEach(item => {
ddcat1115's avatar
ddcat1115 committed
118 119 120
  Login[item] = LoginItem[item];
});

jim's avatar
jim committed
121
export default Form.create()(Login);