-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathReadOnlyArrayField.jsx
89 lines (80 loc) · 2.58 KB
/
ReadOnlyArrayField.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
import PropTypes from 'prop-types';
import React from 'react';
import {
toIdSchema,
deepEquals
} from '@department-of-veterans-affairs/react-jsonschema-form/lib/utils';
class ReadOnlyArrayField extends React.Component {
shouldComponentUpdate = (nextProps) => {
return !deepEquals(this.props, nextProps);
}
getItemSchema = (index) => {
return this.props.schema.items[index];
}
render() {
const {
uiSchema,
errorSchema,
idSchema,
formData,
disabled,
readonly,
registry
} = this.props;
const definitions = registry.definitions;
const { SchemaField } = registry.fields;
const uiOptions = uiSchema['ui:options'] || {};
const items = formData || [];
return (
<div className="schemaform-field-container">
<div>
{items.map((item, index) => {
const itemSchema = this.getItemSchema(index);
const itemIdPrefix = `${idSchema.$id}_${index}`;
const itemIdSchema = toIdSchema(itemSchema, itemIdPrefix, definitions);
return (
<div key={index} className="usfs-growable-background">
<div className="row small-collapse">
<div className="small-12 columns">
<h5 className="schemaform-array-readonly-header">{uiOptions.itemName}</h5>
<SchemaField key={index}
schema={itemSchema}
uiSchema={uiSchema.items}
errorSchema={errorSchema ? errorSchema[index] : undefined}
idSchema={itemIdSchema}
formData={item}
onChange={f => f}
onBlur={f => f}
registry={this.props.registry}
required={false}
disabled={disabled}
readonly={readonly}/>
</div>
</div>
</div>
);
})}
</div>
</div>
);
}
}
ReadOnlyArrayField.propTypes = {
schema: PropTypes.object.isRequired,
uiSchema: PropTypes.object,
errorSchema: PropTypes.object,
idSchema: PropTypes.object,
formData: PropTypes.array,
disabled: PropTypes.bool,
readonly: PropTypes.bool,
registry: PropTypes.shape({
widgets: PropTypes.objectOf(PropTypes.oneOfType([
PropTypes.func,
PropTypes.object,
])).isRequired,
fields: PropTypes.objectOf(PropTypes.func).isRequired,
definitions: PropTypes.object.isRequired,
formContext: PropTypes.object.isRequired,
})
};
export default ReadOnlyArrayField;