import React, { Component, Fragment } from 'react'; import { formatMessage, FormattedMessage } from 'umi-plugin-react/locale'; import { Form, Input, Upload, Select, Button } from 'antd'; import { FormComponentProps } from 'antd/lib/form'; import { connect } from 'dva'; import styles from './BaseView.less'; import GeographicView from './GeographicView'; import PhoneView from './PhoneView'; import { CurrentUser } from '../data'; const FormItem = Form.Item; const { Option } = Select; // 头像组件 方便以后独立,增加裁剪之类的功能 const AvatarView = ({ avatar }: { avatar: string }) => (
avatar
); interface SelectItem { label: string; key: string; } const validatorGeographic = ( _: any, value: { province: SelectItem; city: SelectItem; }, callback: (message?: string) => void ) => { const { province, city } = value; if (!province.key) { callback('Please input your province!'); } if (!city.key) { callback('Please input your city!'); } callback(); }; const validatorPhone = (rule: any, value: string, callback: (message?: string) => void) => { const values = value.split('-'); if (!values[0]) { callback('Please input your area code!'); } if (!values[1]) { callback('Please input your phone number!'); } callback(); }; interface BaseViewProps extends FormComponentProps { currentUser?: CurrentUser; } @connect(({ BLOCK_NAME_CAMEL_CASE }: { BLOCK_NAME_CAMEL_CASE: { currentUser: CurrentUser } }) => ({ currentUser: BLOCK_NAME_CAMEL_CASE.currentUser, })) class BaseView extends Component { componentDidMount() { this.setBaseInfo(); } setBaseInfo = () => { const { currentUser, form } = this.props; if (currentUser) { Object.keys(form.getFieldsValue()).forEach(key => { const obj = {}; obj[key] = currentUser[key] || null; form.setFieldsValue(obj); }); } }; getAvatarURL() { const { currentUser } = this.props; if (currentUser) { if (currentUser.avatar) { return currentUser.avatar; } const url = 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png'; return url; } return ''; } view: HTMLDivElement | undefined; getViewDom = (ref: HTMLDivElement) => { this.view = ref; }; render() { const { form: { getFieldDecorator }, } = this.props; return (
{getFieldDecorator('email', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.email-message' }, {}), }, ], })()} {getFieldDecorator('name', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.nickname-message' }, {}), }, ], })()} {getFieldDecorator('profile', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.profile-message' }, {}), }, ], })( )} {getFieldDecorator('country', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.country-message' }, {}), }, ], })( )} {getFieldDecorator('geographic', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.geographic-message' }, {}), }, { validator: validatorGeographic, }, ], })()} {getFieldDecorator('address', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.address-message' }, {}), }, ], })()} {getFieldDecorator('phone', { rules: [ { required: true, message: formatMessage({ id: 'BLOCK_NAME.basic.phone-message' }, {}), }, { validator: validatorPhone }, ], })()}
); } } export default Form.create()(BaseView);