forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.jsx
514 lines (457 loc) · 16.1 KB
/
item.jsx
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import Grid from '../grid';
import RGrid from '../responsive-grid';
import { obj } from '../util';
import Error from './error';
import { getFieldInitCfg } from './enhance';
const { Row, Col } = Grid;
const { Cell } = RGrid;
const { isNil } = obj;
/** Form.Item
* @description 手动传递了 wrapCol labelCol 会使用 Grid 辅助布局; labelAlign='top' 会强制禁用 Grid
* @order 1
*/
export default class Item extends React.Component {
static propTypes = {
/**
* 样式前缀
*/
prefix: PropTypes.string,
rtl: PropTypes.bool,
/**
* label 标签的文本
*/
label: PropTypes.node,
/**
* label 标签布局,通 `<Col>` 组件,设置 span offset 值,如 {span: 8, offset: 16},该项仅在垂直表单有效
*/
labelCol: PropTypes.object,
/**
* 需要为输入控件设置布局样式时,使用该属性,用法同 labelCol
*/
wrapperCol: PropTypes.object,
/**
* 自定义提示信息,如不设置,则会根据校验规则自动生成.
*/
help: PropTypes.node,
/**
* 字段名,默认赋值给第一个子元素
*/
name: PropTypes.string,
/**
* 额外的提示信息,和 help 类似,当需要错误信息和提示文案同时出现时,可以使用这个。 位于错误信息后面
*/
extra: PropTypes.node,
/**
* 校验状态,如不设置,则会根据校验规则自动生成
* @enumdesc 失败, 成功, 校验中, 警告
*/
validateState: PropTypes.oneOf(['error', 'success', 'loading', 'warning']),
/**
* 配合 validateState 属性使用,是否展示 success/loading 的校验状态图标, 目前只有Input支持
*/
hasFeedback: PropTypes.bool, //TODO: hasFeedback => validateStatus=[error,success,loading]
/**
* 自定义内联样式
*/
style: PropTypes.object,
id: PropTypes.string,
/**
* node 或者 function(values)
*/
children: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
/**
* 单个 Item 的 size 自定义,优先级高于 Form 的 size, 并且当组件与 Item 一起使用时,组件自身设置 size 属性无效。
*/
size: PropTypes.oneOf(['large', 'small', 'medium']),
/**
* 单个 Item 中表单类组件宽度是否是100%
*/
fullWidth: PropTypes.bool,
/**
* 标签的位置, 如果不设置 labelCol 和 wrapperCol 那么默认是标签在上
* @enumdesc 上, 左, 内
*/
labelAlign: PropTypes.oneOf(['top', 'left', 'inset']),
/**
* 标签的左右对齐方式
* @enumdesc 左, 右
*/
labelTextAlign: PropTypes.oneOf(['left', 'right']),
/**
* 扩展class
*/
className: PropTypes.string,
/**
* [表单校验] 不能为空
*/
required: PropTypes.bool,
/**
* required 的星号是否显示
*/
asterisk: PropTypes.bool,
/**
* required 自定义错误信息
*/
requiredMessage: PropTypes.string,
/**
* required 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
requiredTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* [表单校验] 最小值
*/
min: PropTypes.number,
/**
* [表单校验] 最大值
*/
max: PropTypes.number,
/**
* min/max 自定义错误信息
*/
minmaxMessage: PropTypes.string,
/**
* min/max 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
minmaxTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* [表单校验] 字符串最小长度 / 数组最小个数
*/
minLength: PropTypes.number,
/**
* [表单校验] 字符串最大长度 / 数组最大个数
*/
maxLength: PropTypes.number,
/**
* minLength/maxLength 自定义错误信息
*/
minmaxLengthMessage: PropTypes.string,
/**
* minLength/maxLength 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
minmaxLengthTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* [表单校验] 字符串精确长度 / 数组精确个数
*/
length: PropTypes.number,
/**
* length 自定义错误信息
*/
lengthMessage: PropTypes.string,
/**
* length 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
lengthTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* 正则校验
*/
pattern: PropTypes.any,
/**
* pattern 自定义错误信息
*/
patternMessage: PropTypes.string,
/**
* pattern 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
patternTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* [表单校验] 四种常用的 pattern
*/
format: PropTypes.oneOf(['number', 'email', 'url', 'tel']),
/**
* format 自定义错误信息
*/
formatMessage: PropTypes.string,
/**
* format 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
formatTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* [表单校验] 自定义校验函数
*/
validator: PropTypes.func,
/**
* validator 校验何时触发,默认值 onChange, 原生事件均可使用 onChange/onBlur/onFocus/...
*/
validatorTrigger: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
/**
* 是否修改数据时自动触发校验
*/
autoValidate: PropTypes.bool,
/**
* 预设屏幕宽度
*/
device: PropTypes.oneOf(['phone', 'tablet', 'desktop']),
responsive: PropTypes.bool,
/**
* 在响应式布局模式下,表单项占多少列
*/
colSpan: PropTypes.number,
/**
* 在响应式布局下,且label在左边时,label的宽度是多少
*/
labelWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
* 是否开启预览态
*/
isPreview: PropTypes.bool,
/**
* 预览态模式下渲染的内容
* @param {any} value 根据包裹的组件的 value 类型而决定
*/
renderPreview: PropTypes.func,
/**
* 是否使用 label 替换校验信息的 name 字段
*/
useLabelForErrorMessage: PropTypes.bool,
/**
* 表示是否显示 label 后面的冒号
*/
colon: PropTypes.bool,
/**
* 是否禁用表单
*/
disabled: PropTypes.bool,
/**
* 子元素的 value 名称
*/
valueName: PropTypes.string,
};
static defaultProps = {
prefix: 'next-',
hasFeedback: false,
labelWidth: 100,
};
static contextTypes = {
_formField: PropTypes.object,
_formSize: PropTypes.oneOf(['large', 'small', 'medium']),
_formDisabled: PropTypes.bool,
_formPreview: PropTypes.bool,
_formFullWidth: PropTypes.bool,
_formLabelForErrorMessage: PropTypes.bool,
};
static _typeMark = 'form_item';
/**
* 从子元素里面提取表单组件. TODO: 2.x 中改为只获取一个元素
*/
getNames(children) {
const { name } = this.props;
const childrenList = React.Children.toArray(children);
const nameList = childrenList
.filter(c => {
return c.props && ('name' in c.props || 'data-meta' in c.props);
})
.map(c => {
return c.props.name || c.props.id;
});
if (nameList.length) {
return nameList;
} else if (name) {
return [name];
}
return [];
}
getHelper(children) {
const help = this.props.help;
const _formField = this.context._formField;
return (
<Error name={help === undefined ? this.getNames(children) : undefined} field={_formField}>
{help}
</Error>
);
}
getState(children) {
const { validateState } = this.props;
if (validateState) {
return validateState;
}
if (this.context._formField) {
const { getState } = this.context._formField;
const names = this.getNames(children);
if (!names.length) {
return '';
}
// get first name
return getState(names[0]);
}
return undefined;
}
getSize() {
return this.props.size || this.context._formSize;
}
getDisabled() {
return 'disabled' in this.props ? this.props.disabled : this.context._formDisabled;
}
getIsPreview() {
return 'isPreview' in this.props ? this.props.isPreview : this.context._formPreview;
}
getFullWidth() {
return isNil(this.props.fullWidth) ? !!this.context._formFullWidth : this.props.fullWidth;
}
getLabelForErrorMessage() {
let label = this.props.label;
if (!label || typeof label !== 'string') {
return null;
}
label = label.replace(':', '').replace(':', '');
const labelForErrorMessage =
'useLabelForErrorMessage' in this.props
? this.props.useLabelForErrorMessage
: this.context._formLabelForErrorMessage;
if (labelForErrorMessage && label) {
return label;
}
return null;
}
getItemLabel(children) {
const {
id,
required,
asterisk = required,
label,
labelCol,
wrapperCol,
prefix,
responsive,
labelWidth,
labelTextAlign,
colon,
} = this.props;
const labelAlign = this.getLabelAlign(this.props.labelAlign, this.props.device);
if (!label) {
return null;
}
const ele = (
<label htmlFor={id || this.getNames(children)[0]} required={asterisk} key="label">
{label}
</label>
);
const cls = classNames({
[`${prefix}form-item-label`]: true,
'has-colon': colon,
[`${prefix}left`]: labelTextAlign === 'left',
});
if (responsive && labelWidth && labelAlign !== 'top') {
return (
<div className={cls} style={{ width: labelWidth }}>
{ele}
</div>
);
}
if ((wrapperCol || labelCol) && labelAlign !== 'top') {
return (
<Col {...labelCol} className={cls}>
{ele}
</Col>
);
}
return <div className={cls}>{ele}</div>;
}
getItemWrapper(children) {
const { hasFeedback, labelCol, wrapperCol, extra, prefix, renderPreview, name } = this.props;
const labelAlign = this.getLabelAlign(this.props.labelAlign, this.props.device);
const state = this.getState(children);
const isPreview = this.getIsPreview();
const childrenProps = {
size: this.getSize(),
};
if (isPreview) {
childrenProps.isPreview = true;
}
if ('renderPreview' in this.props && typeof renderPreview === 'function') {
childrenProps.renderPreview = renderPreview;
}
if (state && (state === 'error' || hasFeedback)) {
childrenProps.state = state;
}
if (labelAlign === 'inset') {
childrenProps.label = this.getItemLabel(children);
}
if (this.getDisabled()) {
childrenProps.disabled = true;
}
const labelForErrorMessage = this.getLabelForErrorMessage();
const ele = React.Children.map(children, (child, idx) => {
if (
child &&
['function', 'object'].indexOf(typeof child.type) > -1 &&
child.type._typeMark !== 'form_item' &&
child.type._typeMark !== 'form_error'
) {
let extraProps = childrenProps;
// 自己直接使用 field.init 会在 props 上面留下 data-meta
// name 挪到 FormItem 上面,默认把第一个元素当做 Form 组件
if (
this.context._formField &&
!('data-meta' in child.props) &&
('name' in child.props || (name && idx === 0)) //TODO:1.x 为了不BR, 2.x 中把优先级调换下,优先取 FormItem 的 name
) {
const initName = 'name' in child.props && child.props.name ? child.props.name : name;
extraProps = this.context._formField.init(
initName,
{
...getFieldInitCfg(this.props, child.type.displayName, labelForErrorMessage),
props: { ...child.props, ref: child.ref },
},
childrenProps
);
} else {
extraProps = Object.assign({}, child.props, extraProps);
}
return React.cloneElement(child, extraProps);
}
return child;
});
const help = this.getHelper(children);
if ((wrapperCol || labelCol) && labelAlign !== 'top') {
return (
<Col {...wrapperCol} className={`${prefix}form-item-control`} key="item">
{ele} {help} {extra}
</Col>
);
}
return (
<div className={`${prefix}form-item-control`}>
{ele} {help} {extra}
</div>
);
}
getLabelAlign(labelAlign, device) {
if (device === 'phone') {
return 'top';
}
return labelAlign;
}
render() {
const { className, style, prefix, wrapperCol, labelCol, responsive, children } = this.props;
const labelAlign = this.getLabelAlign(this.props.labelAlign, this.props.device);
let childrenNode = children;
if (typeof children === 'function' && this.context._formField) {
childrenNode = children(this.context._formField.getValues());
}
const state = this.getState(childrenNode);
const size = this.getSize();
const fullWidth = this.getFullWidth();
const isPreview = this.getIsPreview();
const itemClassName = classNames({
[`${prefix}form-item`]: true,
[`${prefix}${labelAlign}`]: labelAlign,
[`has-${state}`]: !!state,
[`${prefix}${size}`]: !!size,
[`${prefix}form-item-fullwidth`]: fullWidth,
[`${className}`]: !!className,
[`${prefix}form-preview`]: isPreview,
});
// 垂直模式并且左对齐才用到
const Tag = responsive ? Cell : (wrapperCol || labelCol) && labelAlign !== 'top' ? Row : 'div';
const label = labelAlign === 'inset' ? null : this.getItemLabel(childrenNode);
return (
<Tag {...obj.pickOthers(Item.propTypes, this.props)} className={itemClassName} style={style}>
{label}
{this.getItemWrapper(childrenNode)}
</Tag>
);
}
}