import { Button, Col, Form, Input, Popover, Progress, Row, Select, message } from 'antd'; import { FormattedMessage, formatMessage } from 'umi-plugin-react/locale'; import React, { Component } from 'react'; import { Dispatch } from 'redux'; import { FormComponentProps } from 'antd/es/form'; import Link from 'umi/link'; import { connect } from 'dva'; import router from 'umi/router'; import { StateType } from './model'; import styles from './style.less'; const FormItem = Form.Item; const { Option } = Select; const InputGroup = Input.Group; const passwordStatusMap = { ok: (
), pass: (
), poor: (
), }; const passwordProgressMap: { ok: 'success'; pass: 'normal'; poor: 'exception'; } = { ok: 'success', pass: 'normal', poor: 'exception', }; interface userRegisterProps extends FormComponentProps { dispatch: Dispatch; userRegister: StateType; submitting: boolean; } interface userRegisterState { count: number; confirmDirty: boolean; visible: boolean; help: string; prefix: string; } export interface UserRegisterParams { mail: string; password: string; confirm: string; mobile: string; captcha: string; prefix: string; } @connect( ({ userRegister, loading, }: { userRegister: StateType; loading: { effects: { [key: string]: string; }; }; }) => ({ userRegister, submitting: loading.effects['userRegister/submit'], }), ) class Register extends Component< userRegisterProps, userRegisterState > { state: userRegisterState = { count: 0, confirmDirty: false, visible: false, help: '', prefix: '86', }; interval: number | undefined = undefined; componentDidUpdate() { const { userRegister, form } = this.props; const account = form.getFieldValue('mail'); if (userRegister.status === 'ok') { message.success('注册成功!'); router.push({ pathname: '/user/register-result', state: { account, }, }); } } componentWillUnmount() { clearInterval(this.interval); } onGetCaptcha = () => { let count = 59; this.setState({ count }); this.interval = window.setInterval(() => { count -= 1; this.setState({ count }); if (count === 0) { clearInterval(this.interval); } }, 1000); }; getPasswordStatus = () => { const { form } = this.props; const value = form.getFieldValue('password'); if (value && value.length > 9) { return 'ok'; } if (value && value.length > 5) { return 'pass'; } return 'poor'; }; handleSubmit = (e: React.FormEvent) => { e.preventDefault(); const { form, dispatch } = this.props; form.validateFields({ force: true }, (err, values) => { if (!err) { const { prefix } = this.state; dispatch({ type: 'userRegister/submit', payload: { ...values, prefix, }, }); } }); }; checkConfirm = (rule: any, value: string, callback: (messgae?: string) => void) => { const { form } = this.props; if (value && value !== form.getFieldValue('password')) { callback(formatMessage({ id: 'user-register.password.twice' })); } else { callback(); } }; checkPassword = (rule: any, value: string, callback: (messgae?: string) => void) => { const { visible, confirmDirty } = this.state; if (!value) { this.setState({ help: formatMessage({ id: 'user-register.password.required' }), visible: !!value, }); callback('error'); } else { this.setState({ help: '', }); if (!visible) { this.setState({ visible: !!value, }); } if (value.length < 6) { callback('error'); } else { const { form } = this.props; if (value && confirmDirty) { form.validateFields(['confirm'], { force: true }); } callback(); } } }; changePrefix = (value: string) => { this.setState({ prefix: value, }); }; renderPasswordProgress = () => { const { form } = this.props; const value = form.getFieldValue('password'); const passwordStatus = this.getPasswordStatus(); return value && value.length ? (
100 ? 100 : value.length * 10} showInfo={false} />
) : null; }; render() { const { form, submitting } = this.props; const { getFieldDecorator } = form; const { count, prefix, help, visible } = this.state; return (

{getFieldDecorator('mail', { rules: [ { required: true, message: formatMessage({ id: 'user-register.email.required' }), }, { type: 'email', message: formatMessage({ id: 'user-register.email.wrong-format' }), }, ], })( , )} { if (node && node.parentNode) { return node.parentNode as HTMLElement; } return node; }} content={
{passwordStatusMap[this.getPasswordStatus()]} {this.renderPasswordProgress()}
} overlayStyle={{ width: 240 }} placement="right" visible={visible} > {getFieldDecorator('password', { rules: [ { validator: this.checkPassword, }, ], })( , )}
{getFieldDecorator('confirm', { rules: [ { required: true, message: formatMessage({ id: 'user-register.confirm-password.required' }), }, { validator: this.checkConfirm, }, ], })( , )} {getFieldDecorator('mobile', { rules: [ { required: true, message: formatMessage({ id: 'user-register.phone-number.required' }), }, { pattern: /^\d{11}$/, message: formatMessage({ id: 'user-register.phone-number.wrong-format' }), }, ], })( , )} {getFieldDecorator('captcha', { rules: [ { required: true, message: formatMessage({ id: 'user-register.verification-code.required' }), }, ], })( , )}
); } } export default Form.create()(Register);