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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* eslint react/no-multi-comp:0, no-console:0 */
import { createForm } from '../index';
import { regionStyle, errorStyle } from './styles';
import BaseMixin from '../../_util/BaseMixin';
var Email = {
props: {
form: Object
},
methods: {
checkSpecial: function checkSpecial(rule, value, callback) {
setTimeout(function () {
if (value === 'yiminghe@gmail.com') {
callback('can not be!');
} else {
callback();
}
}, 1000);
}
},
render: function render() {
var h = arguments[0];
var _form = this.form,
getFieldProps = _form.getFieldProps,
getFieldError = _form.getFieldError,
isFieldValidating = _form.isFieldValidating;
var errors = getFieldError('email');
return h(
'div',
{ style: regionStyle },
[h('div', ['email validate onBlur']), h('div', [h('input', getFieldProps('email', {
initialValue: '',
validateFirst: true,
rules: [{
required: true
}, {
type: 'email',
message: '错误的 email 格式'
}, this.checkSpecial],
validateTrigger: 'blur'
}))]), h(
'div',
{ style: errorStyle },
[errors ? errors.join(',') : null]
), h(
'div',
{ style: errorStyle },
[isFieldValidating('email') ? 'validating' : null]
)]
);
}
};
var Form = {
mixins: [BaseMixin],
props: {
form: Object
},
data: function data() {
return {
loading: true
};
},
mounted: function mounted() {
var _this = this;
setTimeout(function () {
_this.setState({
loading: false
}, function () {
setTimeout(function () {
_this.form.setFieldsInitialValue({
email: 'xx@gmail.com'
});
}, 1000);
});
}, 1000);
},
methods: {
onSubmit: function onSubmit(e) {
var _this2 = this;
e.preventDefault();
this.form.submit(function (callback) {
setTimeout(function () {
_this2.form.validateFields(function (error, values) {
if (!error) {
console.log('ok', values);
} else {
console.log('error', error, values);
}
callback();
});
}, 1000);
});
},
reset: function reset(e) {
e.preventDefault();
this.form.resetFields();
}
},
render: function render() {
var h = arguments[0];
if (this.loading) {
return h('b', ['loading']);
}
var form = this.form;
var disabled = form.isFieldsValidating() || form.isSubmitting();
return h(
'div',
{ style: { margin: 20 } },
[h('h2', ['async init field']), h(
'form',
{
on: {
'submit': this.onSubmit
}
},
[h(Email, {
attrs: { form: form }
}), h(
'div',
{ style: regionStyle },
[h(
'button',
{
attrs: { disabled: disabled, type: 'submit' }
},
['submit']
), '\xA0', disabled ? h(
'span',
{ style: { color: 'red' } },
['disabled']
) : null, '\xA0', h(
'button',
{
attrs: { disabled: disabled },
on: {
'click': this.reset
}
},
['reset']
)]
)]
)]
);
}
};
export default createForm()(Form);