BaseView.js 4.31 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
import React, { Component, Fragment } from 'react';
import { Form, Input, Upload, Select, Button } from 'antd';
import styles from './BaseView.less';
import GeographicView from './GeographicView';
import PhoneView from './PhoneView';

const FormItem = Form.Item;
const { Option } = Select;

// ๅคดๅƒ็ป„ไปถ ๆ–นไพฟไปฅๅŽ็‹ฌ็ซ‹๏ผŒๅขžๅŠ ่ฃๅ‰ชไน‹็ฑป็š„ๅŠŸ่ƒฝ
const AvatarView = ({ avatar }) => (
  <Fragment>
    <div className={styles.avatar_title}>ๅคดๅƒ</div>
    <div className={styles.avatar}>
      <img src={avatar} alt="avatar" />
    </div>
    <Upload fileList={[]}>
      <div className={styles.button_view}>
        <Button icon="upload">ๆ›ดๆขๅคดๅƒ</Button>
      </div>
    </Upload>
  </Fragment>
);

const validatorGeographic = (rule, value, callback) => {
  const { province, city } = value;
  if (!province.key) {
    callback('Please input your province!');
  }
  if (!city.key) {
    callback('Please input your city!');
  }
  callback();
};

const validatorPhone = (rule, value, callback) => {
  const values = value.split('-');
  if (!values[0]) {
    callback('Please input your area code!');
  }
  if (!values[1]) {
    callback('Please input your phone number!');
  }
  callback();
};

@Form.create()
export default class BaseView extends Component {
  componentDidMount() {
    this.setBaseInfo();
  }
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
52

53
  setBaseInfo = () => {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
54 55
    const { currentUser, form } = this.props;
    Object.keys(form.getFieldsValue()).forEach(key => {
56 57
      const obj = {};
      obj[key] = currentUser[key] || null;
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
58
      form.setFieldsValue(obj);
59 60
    });
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
61

62
  getAvatarURL() {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
63 64 65
    const { currentUser } = this.props;
    if (currentUser.avatar) {
      return currentUser.avatar;
66
    }
jim's avatar
jim committed
67
    const url = 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png';
68 69
    return url;
  }
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
70

jim's avatar
jim committed
71
  getViewDom = ref => {
72 73
    this.view = ref;
  };
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
74

75
  render() {
้™ˆๅธ…'s avatar
้™ˆๅธ… committed
76 77 78
    const {
      form: { getFieldDecorator },
    } = this.props;
79
    return (
jim's avatar
jim committed
80
      <div className={styles.baseView} ref={this.getViewDom}>
81 82 83 84
        <div className={styles.left}>
          <Form layout="vertical" onSubmit={this.handleSubmit} hideRequiredMark>
            <FormItem label="้‚ฎ็ฎฑ">
              {getFieldDecorator('email', {
jim's avatar
jim committed
85
                rules: [{ required: true, message: 'Please input your email!' }],
86 87 88 89
              })(<Input />)}
            </FormItem>
            <FormItem label="ๆ˜ต็งฐ">
              {getFieldDecorator('name', {
jim's avatar
jim committed
90
                rules: [{ required: true, message: 'Please input your nick name!' }],
91 92 93 94
              })(<Input />)}
            </FormItem>
            <FormItem label="ไธชไบบ็ฎ€ไป‹">
              {getFieldDecorator('profile', {
jim's avatar
jim committed
95
                rules: [{ required: true, message: 'Please input personal profile!' }],
96
              })(<Input.TextArea placeholder="็ฎ€ๅ•็š„ไป‹็ปไธ‹่‡ชๅทฑ" rows={4} />)}
97 98 99
            </FormItem>
            <FormItem label="ๅ›ฝๅฎถ/ๅœฐๅŒบ">
              {getFieldDecorator('country', {
jim's avatar
jim committed
100
                rules: [{ required: true, message: 'Please input your country!' }],
101
              })(
102
                <Select style={{ maxWidth: 220 }}>
103
                  <Option value="China">ไธญๅ›ฝ</Option>
jim's avatar
jim committed
104
                </Select>
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
              )}
            </FormItem>
            <FormItem label="ๆ‰€ๅœจ็œๅธ‚">
              {getFieldDecorator('geographic', {
                rules: [
                  {
                    required: true,
                    message: 'Please input your geographic info!',
                  },
                  {
                    validator: validatorGeographic,
                  },
                ],
              })(<GeographicView />)}
            </FormItem>
            <FormItem label="่ก—้“ๅœฐๅ€">
              {getFieldDecorator('address', {
jim's avatar
jim committed
122
                rules: [{ required: true, message: 'Please input your address!' }],
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
              })(<Input />)}
            </FormItem>
            <FormItem label="่”็ณป็”ต่ฏ">
              {getFieldDecorator('phone', {
                rules: [
                  { required: true, message: 'Please input your phone!' },
                  { validator: validatorPhone },
                ],
              })(<PhoneView />)}
            </FormItem>
            <Button type="primary">ๆ›ดๆ–ฐไฟกๆฏ</Button>
          </Form>
        </div>
        <div className={styles.right}>
          <AvatarView avatar={this.getAvatarURL()} />
        </div>
      </div>
    );
  }
}