@arquimedes.co/eureka-forms 1.9.53-test → 1.9.55-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@Types/GenericFormSteps.d.ts +1 -0
- package/dist/App.d.ts +1 -1
- package/dist/App.js +1 -1
- package/dist/FormComponents/Form/ColumnForm/ColumnForm.js +10 -6
- package/dist/FormComponents/Form/Form.d.ts +1 -1
- package/dist/FormComponents/Section/MaterialSection/MaterialSection.js +1 -1
- package/dist/FormComponents/Section/Section.d.ts +1 -1
- package/dist/FormComponents/Step/MapperStep/MaterialMapperStep/Element/MapperElement.js +2 -1
- package/dist/FormComponents/Step/Step.d.ts +1 -0
- package/dist/FormComponents/Step/Step.js +16 -15
- package/package.json +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface AppProps {
|
|
|
26
26
|
/** Custom steps to display */
|
|
27
27
|
customSteps?: Record<string, CustomStep>;
|
|
28
28
|
/** Custom function to call on send */
|
|
29
|
-
customSend?: (values: any, reload: Function
|
|
29
|
+
customSend?: (values: any, reload: Function) => Promise<void>;
|
|
30
30
|
/** Custom submit buttons */
|
|
31
31
|
customSubmit?: JSX.Element;
|
|
32
32
|
/** Function to call on postview to fetch the download url of a file */
|
package/dist/App.js
CHANGED
|
@@ -384,7 +384,7 @@ var mapOriginalValues = function (originalValues, form) {
|
|
|
384
384
|
}
|
|
385
385
|
for (var _f = 0, _g = Object.keys(element); _f < _g.length; _f++) {
|
|
386
386
|
var idValue_1 = _g[_f];
|
|
387
|
-
if (!step.steps[idValue_1]) {
|
|
387
|
+
if (!step.steps[idValue_1] && idValue_1 !== 'id') {
|
|
388
388
|
newValues[idValue_1] = element[idValue_1];
|
|
389
389
|
}
|
|
390
390
|
}
|
|
@@ -94,7 +94,7 @@ function ColumnForm(_a) {
|
|
|
94
94
|
return _jsx("div", {});
|
|
95
95
|
}
|
|
96
96
|
var onSubmit = function (token) { return __awaiter(_this, void 0, void 0, function () {
|
|
97
|
-
var valid, values, newValues, _i, _a, idStep, payload, url, resp, _b, error_1;
|
|
97
|
+
var valid, values, newValues, _i, _a, idStep, customResp, payload, url, resp, _b, error_1;
|
|
98
98
|
return __generator(this, function (_c) {
|
|
99
99
|
switch (_c.label) {
|
|
100
100
|
case 0:
|
|
@@ -116,11 +116,14 @@ function ColumnForm(_a) {
|
|
|
116
116
|
newValues = {};
|
|
117
117
|
for (_i = 0, _a = Object.keys(values); _i < _a.length; _i++) {
|
|
118
118
|
idStep = _a[_i];
|
|
119
|
-
newValues[idStep] = calcValue(idStep, form.steps, values, customSteps);
|
|
119
|
+
newValues[idStep] = calcValue(newValues, idStep, form.steps, values, customSteps);
|
|
120
120
|
}
|
|
121
121
|
if (!customSend) return [3 /*break*/, 4];
|
|
122
|
-
return [4 /*yield*/, customSend(newValues, reload
|
|
123
|
-
case 3:
|
|
122
|
+
return [4 /*yield*/, customSend(newValues, reload)];
|
|
123
|
+
case 3:
|
|
124
|
+
customResp = _c.sent();
|
|
125
|
+
setLoading(false);
|
|
126
|
+
return [2 /*return*/, customResp];
|
|
124
127
|
case 4:
|
|
125
128
|
payload = {
|
|
126
129
|
formValues: { steps: newValues },
|
|
@@ -217,7 +220,7 @@ function calcNextSection(form, idSection, sections) {
|
|
|
217
220
|
}
|
|
218
221
|
}
|
|
219
222
|
}
|
|
220
|
-
var calcValue = function (idStep, steps, values, customSteps, value) {
|
|
223
|
+
var calcValue = function (newValues, idStep, steps, values, customSteps, value) {
|
|
221
224
|
var _a, _b;
|
|
222
225
|
if (value === void 0) { value = values[idStep]; }
|
|
223
226
|
var step = steps[idStep];
|
|
@@ -269,7 +272,8 @@ var calcValue = function (idStep, steps, values, customSteps, value) {
|
|
|
269
272
|
var idStep_1 = _d[_c];
|
|
270
273
|
var mappedId = element.ids[idStep_1];
|
|
271
274
|
if (values[mappedId] !== undefined) {
|
|
272
|
-
newValue[idStep_1] = calcValue(idStep_1, step.steps, values, customSteps, values[mappedId]);
|
|
275
|
+
newValue[idStep_1] = calcValue(newValues, idStep_1, step.steps, values, customSteps, values[mappedId]);
|
|
276
|
+
delete newValues[mappedId];
|
|
273
277
|
}
|
|
274
278
|
}
|
|
275
279
|
mappedValues.push(newValue);
|
|
@@ -13,7 +13,7 @@ export interface FormComponentProps {
|
|
|
13
13
|
organization: Organization;
|
|
14
14
|
originalValues: Record<string, unknown>;
|
|
15
15
|
customSteps: Record<string, CustomStep>;
|
|
16
|
-
customSend?: (values: any, reload: Function
|
|
16
|
+
customSend?: (values: any, reload: Function) => Promise<any>;
|
|
17
17
|
customSubmit?: JSX.Element;
|
|
18
18
|
widthStats: WidthStats;
|
|
19
19
|
internal: boolean;
|
|
@@ -43,7 +43,7 @@ function MaterialSection(_a) {
|
|
|
43
43
|
return _jsx("div", {}, idStep);
|
|
44
44
|
}
|
|
45
45
|
else if (step) {
|
|
46
|
-
return (_createElement(StepComponent, __assign({}, others, { widthStats: widthStats, form: form, step: step, key: idStep, level: 0 })));
|
|
46
|
+
return (_createElement(StepComponent, __assign({}, others, { globalEditable: others.editable, widthStats: widthStats, form: form, step: step, key: idStep, level: 0 })));
|
|
47
47
|
}
|
|
48
48
|
else {
|
|
49
49
|
console.error('Step not found:', idStep);
|
|
@@ -9,7 +9,7 @@ export interface RecursiveData {
|
|
|
9
9
|
organization: Organization;
|
|
10
10
|
control: Control<FieldValues, object>;
|
|
11
11
|
formStyle: FormStyle;
|
|
12
|
-
/** If the formsteps can be edited (For
|
|
12
|
+
/** If the formsteps can be edited (For internal) */
|
|
13
13
|
editable: boolean;
|
|
14
14
|
postview: boolean;
|
|
15
15
|
partial: boolean;
|
|
@@ -30,10 +30,11 @@ function MapperElementComponent(_a) {
|
|
|
30
30
|
return _jsx("div", {});
|
|
31
31
|
}
|
|
32
32
|
return (_jsx(PillElementContainer, __assign({ handleDelete: handleDelete }, others, { step: step, size: form.size }, { children: step.rootSteps.map(function (idSubStep) {
|
|
33
|
+
var _a;
|
|
33
34
|
var subStep = form.steps[element.ids[idSubStep]];
|
|
34
35
|
if (!subStep)
|
|
35
36
|
return _jsx("div", {});
|
|
36
|
-
return (_createElement(StepComponent, __assign({}, others, { form: form, step: subStep, key: idSubStep, level: level + 1 })));
|
|
37
|
+
return (_createElement(StepComponent, __assign({}, others, { globalEditable: others.editable ? (_a = step.editable) !== null && _a !== void 0 ? _a : true : false, form: form, step: subStep, key: idSubStep, level: level + 1 })));
|
|
37
38
|
}) })));
|
|
38
39
|
}
|
|
39
40
|
export default MapperElementComponent;
|
|
@@ -38,51 +38,52 @@ import EntityValuePickerStep from './EntityValueStep/EntityValueStep';
|
|
|
38
38
|
import MapperStep from './MapperStep/MapperStep';
|
|
39
39
|
import CollapsibleStep from './CollapsibleStep/CollapsibleStep';
|
|
40
40
|
function StepComponent(_a) {
|
|
41
|
-
var _b;
|
|
41
|
+
var _b, _c;
|
|
42
42
|
var step = _a.step, props = __rest(_a, ["step"]);
|
|
43
43
|
var customStep = props.customSteps[step.type];
|
|
44
|
+
var editable = props.globalEditable ? (_b = step.editable) !== null && _b !== void 0 ? _b : true : false;
|
|
44
45
|
if (customStep) {
|
|
45
|
-
return customStep.component(__assign(__assign({
|
|
46
|
+
return customStep.component(__assign(__assign(__assign({}, props), ((_c = customStep.componentProps) !== null && _c !== void 0 ? _c : {})), { step: step, editable: editable }));
|
|
46
47
|
}
|
|
47
48
|
switch (step.type) {
|
|
48
49
|
case Types.TITLE: {
|
|
49
|
-
return _jsx(TitleStep, __assign({ step: step }
|
|
50
|
+
return (_jsx(TitleStep, __assign({}, props, { step: step, editable: editable })));
|
|
50
51
|
}
|
|
51
52
|
case Types.SELECTOR: {
|
|
52
|
-
return _jsx(SelectorStep, __assign({ step: step }
|
|
53
|
+
return (_jsx(SelectorStep, __assign({}, props, { step: step, editable: editable })));
|
|
53
54
|
}
|
|
54
55
|
case Types.CHECKBOX: {
|
|
55
|
-
return _jsx(CheckBoxStep, __assign({ step: step }
|
|
56
|
+
return (_jsx(CheckBoxStep, __assign({}, props, { step: step, editable: editable })));
|
|
56
57
|
}
|
|
57
58
|
case Types.CLASSIFIER_SELECTOR: {
|
|
58
|
-
return (_jsx(ClassifierSelectorStep, __assign({ step: step }
|
|
59
|
+
return (_jsx(ClassifierSelectorStep, __assign({}, props, { step: step, editable: editable })));
|
|
59
60
|
}
|
|
60
61
|
case Types.TEXTAREA: {
|
|
61
|
-
return _jsx(TextAreaStep, __assign({ step: step }
|
|
62
|
+
return (_jsx(TextAreaStep, __assign({}, props, { step: step, editable: editable })));
|
|
62
63
|
}
|
|
63
64
|
case Types.TEXTINPUT: {
|
|
64
|
-
return _jsx(TextInputStep, __assign({ step: step }
|
|
65
|
+
return (_jsx(TextInputStep, __assign({}, props, { step: step, editable: editable })));
|
|
65
66
|
}
|
|
66
67
|
case Types.DATEPICKER: {
|
|
67
|
-
return _jsx(DatePickerStep, __assign({ step: step }
|
|
68
|
+
return (_jsx(DatePickerStep, __assign({}, props, { step: step, editable: editable })));
|
|
68
69
|
}
|
|
69
70
|
case Types.SEPARATOR: {
|
|
70
|
-
return _jsx(SeparatorStep, __assign({ step: step }
|
|
71
|
+
return (_jsx(SeparatorStep, __assign({}, props, { step: step, editable: editable })));
|
|
71
72
|
}
|
|
72
73
|
case Types.FILEUPLOAD: {
|
|
73
|
-
return _jsx(FileUploadStep, __assign({ step: step }
|
|
74
|
+
return (_jsx(FileUploadStep, __assign({}, props, { step: step, editable: editable })));
|
|
74
75
|
}
|
|
75
76
|
case Types.RATING: {
|
|
76
|
-
return _jsx(RatingStep, __assign({ step: step }
|
|
77
|
+
return (_jsx(RatingStep, __assign({}, props, { step: step, editable: editable })));
|
|
77
78
|
}
|
|
78
79
|
case Types.COLLAPSIBLE: {
|
|
79
|
-
return _jsx(CollapsibleStep, __assign({ step: step }
|
|
80
|
+
return (_jsx(CollapsibleStep, __assign({}, props, { step: step, editable: editable })));
|
|
80
81
|
}
|
|
81
82
|
case Types.ENTITYVALUEPICKER: {
|
|
82
|
-
return (_jsx(EntityValuePickerStep, __assign({ step: step }
|
|
83
|
+
return (_jsx(EntityValuePickerStep, __assign({}, props, { step: step, editable: editable })));
|
|
83
84
|
}
|
|
84
85
|
case Types.MAPPER: {
|
|
85
|
-
return _jsx(MapperStep, __assign({ step: step }
|
|
86
|
+
return (_jsx(MapperStep, __assign({}, props, { step: step, editable: editable })));
|
|
86
87
|
}
|
|
87
88
|
default:
|
|
88
89
|
break;
|
package/package.json
CHANGED