import React, { Component } from 'react'; import { connect } from 'dva'; import { formatMessage, FormattedMessage } from 'umi/locale'; import Link from 'umi/link'; import router from 'umi/router'; import { Form, Input, Button, Select, Row, Col, Popover, Progress } from 'antd'; 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', }; @connect(({ BLOCK_NAME_CAMEL_CASE, loading }) => ({ BLOCK_NAME_CAMEL_CASE, submitting: loading.effects['BLOCK_NAME_CAMEL_CASE/submit'], })) @Form.create() class PAGE_NAME_UPPER_CAMEL_CASE extends Component { state = { count: 0, confirmDirty: false, visible: false, help: '', prefix: '86', }; componentDidUpdate() { const { form, BLOCK_NAME_CAMEL_CASE } = this.props; const account = form.getFieldValue('mail'); if (BLOCK_NAME_CAMEL_CASE.status === 'ok') { router.push({ pathname: '/user/register-result', state: { account, }, }); } } componentWillUnmount() { clearInterval(this.interval); } onGetCaptcha = () => { let count = 59; this.setState({ count }); this.interval = 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 => { e.preventDefault(); const { form, dispatch } = this.props; form.validateFields({ force: true }, (err, values) => { if (!err) { const { prefix } = this.state; dispatch({ type: 'BLOCK_NAME_CAMEL_CASE/submit', payload: { ...values, prefix, }, }); } }); }; handleConfirmBlur = e => { const { value } = e.target; const { confirmDirty } = this.state; this.setState({ confirmDirty: confirmDirty || !!value }); }; checkConfirm = (rule, value, callback) => { const { form } = this.props; if (value && value !== form.getFieldValue('password')) { callback(formatMessage({ id: 'BLOCK_NAME.password.twice' })); } else { callback(); } }; checkPassword = (rule, value, callback) => { const { visible, confirmDirty } = this.state; if (!value) { this.setState({ help: formatMessage({ id: 'BLOCK_NAME.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 => { 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: 'BLOCK_NAME.email.required' }), }, { type: 'email', message: formatMessage({ id: 'BLOCK_NAME.email.wrong-format' }), }, ], })( )} node.parentNode} 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: 'BLOCK_NAME.confirm-password.required' }), }, { validator: this.checkConfirm, }, ], })( )} {getFieldDecorator('mobile', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.phone-number.required' }), }, { pattern: /^\d{11}$/, message: formatMessage({ id: 'BLOCK_NAME.phone-number.wrong-format' }), }, ], })( )} {getFieldDecorator('captcha', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.verification-code.required' }), }, ], })( )}
); } } export default PAGE_NAME_UPPER_CAMEL_CASE;