forked from inveniosoftware/react-invenio-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomFields.js
137 lines (126 loc) · 4.17 KB
/
CustomFields.js
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
// This file is part of React-Invenio-Forms
// Copyright (C) 2022 CERN.
// Copyright (C) 2022 Northwestern University.
//
// React-Invenio-Forms is free software; you can redistribute it and/or modify it
// under the terms of the MIT License; see LICENSE file for more details.
import React, { Component } from "react";
import PropTypes from "prop-types";
import { DiscoverFieldsSection } from "./DiscoverFieldsSection";
import { AccordionField } from "../../AccordionField";
import { loadWidgetsFromConfig } from "../loader";
import { Container } from "semantic-ui-react";
export class CustomFields extends Component {
constructor(props) {
super(props);
this.state = { sections: undefined, discoverFieldsSections: undefined };
}
componentDidMount() {
this.populateConfig();
}
populateConfig = async () => {
const { includesPaths, fieldPathPrefix } = this.props;
try {
const { sectionsConfig, discoverFieldsConfig } =
await this.loadCustomFieldsWidgets();
const sections = sectionsConfig.map((sectionCfg) => {
const paths = includesPaths(sectionCfg.fields, fieldPathPrefix);
return { ...sectionCfg, paths };
});
const discoverFieldsSections = discoverFieldsConfig.map((sectionCfg) => {
const paths = includesPaths(sectionCfg.fields, fieldPathPrefix);
return { ...sectionCfg, paths };
});
this.setState({
sections: sections,
discoverFieldsSections: discoverFieldsSections,
});
} catch (error) {
console.error("Couldn't load custom fields widgets.", error);
}
};
async loadCustomFieldsWidgets() {
const { config, fieldPathPrefix, templateLoaders, record } = this.props;
const sections = [];
const discoverFieldsSections = []; // finds sections with discoverable fields
for (const sectionCfg of config) {
// Path to end user's folder defining custom fields ui widgets
const fields = await loadWidgetsFromConfig({
templateLoaders: templateLoaders,
fieldPathPrefix: fieldPathPrefix,
fields: sectionCfg.fields,
record: record,
});
if (sectionCfg.discoverable_fields) {
discoverFieldsSections.push({
...sectionCfg,
fields: fields,
fieldsConfig: sectionCfg.fields,
});
} else {
sections.push({ ...sectionCfg, fields });
}
}
return { sectionsConfig: sections, discoverFieldsConfig: discoverFieldsSections };
}
render() {
const { sections, discoverFieldsSections } = this.state;
const { templateLoaders, record } = this.props;
return (
<>
{sections &&
sections.map((section) => {
const {
fields,
paths,
displaySection = true,
section: sectionName,
id: sectionId,
} = section;
return displaySection ? (
<AccordionField
key={`section-${sectionName}`}
includesPaths={paths}
label={sectionName}
active
id={sectionId}
>
{fields}
</AccordionField>
) : (
<Container key="custom-fields-section">{fields}</Container>
);
})}
{discoverFieldsSections && discoverFieldsSections.length > 0 && (
<DiscoverFieldsSection
templateLoaders={templateLoaders}
sections={discoverFieldsSections}
record={record}
/>
)}
</>
);
}
}
CustomFields.propTypes = {
config: PropTypes.arrayOf(
PropTypes.shape({
section: PropTypes.string.isRequired,
displaySection: PropTypes.bool,
fields: PropTypes.arrayOf(
PropTypes.shape({
field: PropTypes.string.isRequired,
ui_widget: PropTypes.string.isRequired,
props: PropTypes.object,
})
),
})
).isRequired,
templateLoaders: PropTypes.array.isRequired,
fieldPathPrefix: PropTypes.string.isRequired,
includesPaths: PropTypes.func,
record: PropTypes.object.isRequired,
};
CustomFields.defaultProps = {
includesPaths: (fields) => fields.map((field) => field.key),
};