impaktapps-ui-builder 0.0.101-alpha.28 → 0.0.101-alpha.281
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/impaktapps-ui-builder.es.js +466 -223
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +16 -16
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +5 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +1 -0
- package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.d.ts +6 -0
- package/dist/src/impaktapps-ui-builder/builder/services/component.d.ts +2 -0
- package/dist/src/impaktapps-ui-builder/builder/services/event.d.ts +8 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildText.ts +21 -18
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +38 -30
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +7 -4
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +1 -60
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +1 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +0 -52
- package/src/impaktapps-ui-builder/builder/build/uischema/valueTab.ts +0 -50
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +33 -28
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +26 -164
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +23 -97
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +15 -12
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +19 -93
- package/src/impaktapps-ui-builder/builder/services/component.ts +220 -56
- package/src/impaktapps-ui-builder/builder/services/event.ts +175 -58
- package/src/impaktapps-ui-builder/runtime/services/events.ts +8 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +14 -131
- package/dist/src/impaktapps-ui-builder/builder/build/buildPdfViewer.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.d.ts +0 -19
- package/src/impaktapps-ui-builder/builder/build/buildPdfViewer.ts +0 -22
- package/src/impaktapps-ui-builder/builder/build/uischema/pdfViewer.ts +0 -18
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { EventSchema } from "../elements/UiSchema/event/schema";
|
|
2
2
|
import { EventUiSchema } from "../elements/UiSchema/event/uiSchema";
|
|
3
3
|
import Component from "./component";
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
okHandler,
|
|
6
|
+
saveFormdataInSessionStorage,
|
|
7
|
+
saveHandler,
|
|
8
|
+
getFormdataFromSessionStorage,
|
|
9
|
+
} from "./utils";
|
|
5
10
|
import { APISection } from "../build/uischema/apiSection";
|
|
6
|
-
import {
|
|
11
|
+
import {
|
|
12
|
+
emptyBox,
|
|
13
|
+
getRadioInputField,
|
|
14
|
+
getSelectField,
|
|
15
|
+
getTextArea,
|
|
16
|
+
} from "../build/uischema/buildPropertiesSection";
|
|
7
17
|
import { refreshSectionUiSchema } from "../build/uischema/refresh";
|
|
8
18
|
import _ from "lodash";
|
|
9
19
|
|
|
@@ -12,95 +22,178 @@ export default (
|
|
|
12
22
|
dynamicData: any,
|
|
13
23
|
submitHandler: any,
|
|
14
24
|
service: any,
|
|
15
|
-
functionsName?: { const: string
|
|
25
|
+
functionsName?: { const: string; title: string }[]
|
|
16
26
|
) => {
|
|
17
27
|
return {
|
|
18
28
|
setPage: async function () {
|
|
19
29
|
const formdata = await this.getFormData();
|
|
20
30
|
store.setFormdata(formdata);
|
|
21
31
|
const schema = await this.getSchema();
|
|
32
|
+
console.log("SettingSchema>>",schema)
|
|
22
33
|
store.setSchema(schema);
|
|
23
|
-
this.refreshPage(formdata.Handler, store)
|
|
34
|
+
this.refreshPage(formdata.Handler, store);
|
|
24
35
|
},
|
|
25
36
|
refreshPage: (handlerType: any, store: any) => {
|
|
26
37
|
const uiSchema = _.cloneDeep(EventUiSchema(store.theme.myTheme));
|
|
27
|
-
const schema: any = _.cloneDeep(EventSchema)
|
|
38
|
+
const schema: any = _.cloneDeep(EventSchema);
|
|
28
39
|
if (handlerType) {
|
|
29
40
|
if (handlerType === "custom") {
|
|
30
|
-
uiSchema.elements[0].elements[0].elements[2] =
|
|
41
|
+
uiSchema.elements[0].elements[0].elements[2] = getRadioInputField(
|
|
42
|
+
"isSync",
|
|
43
|
+
"Run in Sync",
|
|
44
|
+
["Yes", "No"]
|
|
45
|
+
);
|
|
31
46
|
uiSchema.elements[0].elements[0].elements[3] = {
|
|
32
47
|
type: "Control",
|
|
33
48
|
scope: "#/properties/emptyBox",
|
|
34
49
|
options: {
|
|
35
50
|
widget: "EmptyBox",
|
|
36
51
|
},
|
|
37
|
-
|
|
52
|
+
|
|
38
53
|
config: {
|
|
39
54
|
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
40
55
|
main: {},
|
|
41
|
-
style:{}
|
|
56
|
+
style: {},
|
|
42
57
|
},
|
|
43
58
|
};
|
|
44
|
-
uiSchema.elements[0].elements[0].elements[4] = getTextArea(
|
|
45
|
-
|
|
46
|
-
|
|
59
|
+
uiSchema.elements[0].elements[0].elements[4] = getTextArea(
|
|
60
|
+
"eventCode",
|
|
61
|
+
"Write Custom Code",
|
|
62
|
+
false
|
|
63
|
+
);
|
|
64
|
+
schema.required = ["eventType", "Handler", "eventCode"];
|
|
47
65
|
} else if (handlerType === "api") {
|
|
48
|
-
uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {
|
|
66
|
+
uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {
|
|
67
|
+
xs: 0,
|
|
68
|
+
sm: 0,
|
|
69
|
+
md: 4,
|
|
70
|
+
lg: 6,
|
|
71
|
+
});
|
|
49
72
|
uiSchema.elements[0].elements[0].elements[3] = APISection;
|
|
50
|
-
schema.required = ["eventType", "Handler", "method", "path"]
|
|
73
|
+
schema.required = ["eventType", "Handler", "method", "path"];
|
|
51
74
|
} else if (handlerType === "inBuiltFunction") {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
75
|
+
uiSchema.elements[0].elements[0].elements[2] = getSelectField(
|
|
76
|
+
"inBuiltFunctionType",
|
|
77
|
+
"Function Name",
|
|
78
|
+
[
|
|
79
|
+
{ label: "RankProvider", value: "RankProvider" },
|
|
80
|
+
{ label: "Download File", value: "downloadFile" },
|
|
81
|
+
{ label: "Download Blob File", value: "downloadBlobFile" },
|
|
82
|
+
]
|
|
83
|
+
);
|
|
58
84
|
uiSchema.elements[0].elements[0].elements[3] = {
|
|
59
85
|
type: "Control",
|
|
60
86
|
scope: "#/properties/emptyBox",
|
|
61
87
|
options: {
|
|
62
88
|
widget: "EmptyBox",
|
|
63
89
|
},
|
|
64
|
-
|
|
90
|
+
|
|
65
91
|
config: {
|
|
66
92
|
layout: { xs: 6, sm: 6, md: 0, lg: 3 },
|
|
67
93
|
main: {},
|
|
68
|
-
style:{}
|
|
94
|
+
style: {},
|
|
69
95
|
},
|
|
70
96
|
};
|
|
71
|
-
uiSchema.elements[0].elements[0].elements[4] = getTextArea(
|
|
72
|
-
|
|
97
|
+
uiSchema.elements[0].elements[0].elements[4] = getTextArea(
|
|
98
|
+
"funcParametersCode",
|
|
99
|
+
"Write Custom Code for Functions Parameter",
|
|
100
|
+
true
|
|
101
|
+
);
|
|
102
|
+
schema.required = ["eventType", "Handler", "inBuiltFunctionType"];
|
|
73
103
|
} else if (handlerType === "refresh") {
|
|
74
|
-
uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {
|
|
104
|
+
uiSchema.elements[0].elements[0].elements[2] = emptyBox("emptyBox", {
|
|
105
|
+
xs: 0,
|
|
106
|
+
sm: 0,
|
|
107
|
+
md: 4,
|
|
108
|
+
lg: 6,
|
|
109
|
+
});
|
|
75
110
|
uiSchema.elements[0].elements[0].elements[3] = refreshSectionUiSchema;
|
|
76
|
-
schema.properties.refreshElements.required = ["value"]
|
|
77
|
-
schema.properties.refreshElements.items.required = ["value"]
|
|
78
|
-
schema.required = ["eventType", "Handler", "refreshElements"]
|
|
111
|
+
schema.properties.refreshElements.required = ["value"];
|
|
112
|
+
schema.properties.refreshElements.items.required = ["value"];
|
|
113
|
+
schema.required = ["eventType", "Handler", "refreshElements"];
|
|
79
114
|
}
|
|
80
115
|
}
|
|
81
116
|
if (functionsName) {
|
|
82
117
|
schema.properties.inBuiltFunctionType.oneOf = [
|
|
83
118
|
...schema.properties.inBuiltFunctionType.oneOf,
|
|
84
|
-
...functionsName
|
|
85
|
-
]
|
|
119
|
+
...functionsName,
|
|
120
|
+
];
|
|
86
121
|
}
|
|
87
|
-
if (sessionStorage.getItem("copiedConfig")
|
|
88
|
-
Component(store, dynamicData, submitHandler, service).ElementPathSetter(
|
|
122
|
+
if (sessionStorage.getItem("copiedConfig")) {
|
|
123
|
+
Component(store, dynamicData, submitHandler, service).ElementPathSetter(
|
|
124
|
+
uiSchema
|
|
125
|
+
);
|
|
89
126
|
schema.properties.RemoveItemButton.disabled = false;
|
|
90
127
|
}
|
|
91
|
-
|
|
92
|
-
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
const config = JSON.parse(sessionStorage.getItem("pageFormdata"));
|
|
131
|
+
const path = store.searchParams?.get("path");
|
|
132
|
+
const id = store.searchParams?.get("id");
|
|
133
|
+
|
|
134
|
+
let pathArray = [{label: config.name ?? "NewPage", path: `/PageMaster${id ? `?id=${id}` : ''}`}];
|
|
135
|
+
|
|
136
|
+
if (path) {
|
|
137
|
+
const pathArrayAll = path.split(".");
|
|
138
|
+
const arr: any = [];
|
|
139
|
+
pathArrayAll.map((e: string, i: number) => {
|
|
140
|
+
if (i === 0) {
|
|
141
|
+
arr.push(e);
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
arr.push(`${arr[i - 1]}.${e}`);
|
|
145
|
+
});
|
|
146
|
+
|
|
147
|
+
arr.map((e) => {
|
|
148
|
+
const data = _.get(config, e);
|
|
149
|
+
pathArray.push({
|
|
150
|
+
label: data?.name || data?.eventType || "NewComponent",
|
|
151
|
+
path: data?.eventType ? `/ComponentEvents?path=${e}${id ? `&id=${id}` : ''}` : `/Component?path=${e}${id ? `&id=${id}` : ''}`,
|
|
152
|
+
});
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
schema.properties.pageName.path = pathArray;
|
|
156
|
+
store.setSchema(schema);
|
|
157
|
+
store.setUiSchema(uiSchema);
|
|
93
158
|
},
|
|
94
159
|
|
|
95
|
-
getFormData: Component(store, dynamicData, submitHandler, service)
|
|
160
|
+
getFormData: Component(store, dynamicData, submitHandler, service)
|
|
161
|
+
.getFormdata,
|
|
96
162
|
getUiSchema: function () {
|
|
97
163
|
return EventUiSchema;
|
|
98
164
|
},
|
|
99
165
|
getSchema: () => {
|
|
100
166
|
const schema = _.cloneDeep(EventSchema);
|
|
101
|
-
if (sessionStorage.getItem("copiedConfig")
|
|
167
|
+
if (sessionStorage.getItem("copiedConfig")) {
|
|
102
168
|
schema.properties.RemoveItemButton.disabled = false;
|
|
103
169
|
}
|
|
170
|
+
|
|
171
|
+
const config = JSON.parse(sessionStorage.getItem("pageFormdata"));
|
|
172
|
+
const path = store.searchParams?.get("path");
|
|
173
|
+
const id = store.searchParams?.get("id");
|
|
174
|
+
|
|
175
|
+
let pathArray = [{label: config.name ?? "NewPage", path: `/PageMaster${id ? `?id=${id}` : ''}`}];
|
|
176
|
+
|
|
177
|
+
if (path) {
|
|
178
|
+
const pathArrayAll = path.split(".");
|
|
179
|
+
const arr: any = [];
|
|
180
|
+
pathArrayAll.map((e: string, i: number) => {
|
|
181
|
+
if (i === 0) {
|
|
182
|
+
arr.push(e);
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
arr.push(`${arr[i - 1]}.${e}`);
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
arr.map((e) => {
|
|
189
|
+
const data = _.get(config, e);
|
|
190
|
+
pathArray.push({
|
|
191
|
+
label: data?.name || data?.eventType || "NewComponent",
|
|
192
|
+
path: data?.eventType ? `/ComponentEvents?path=${e}${id ? `&id=${id}` : ''}` : `/Component?path=${e}${id ? `&id=${id}` : ''}`,
|
|
193
|
+
});
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
schema.properties.pageName.path = _.cloneDeep(pathArray);
|
|
104
197
|
return schema;
|
|
105
198
|
},
|
|
106
199
|
okHandler: () => okHandler(store),
|
|
@@ -110,48 +203,72 @@ export default (
|
|
|
110
203
|
store?.formData?.Handler !== store?.newData?.Handler &&
|
|
111
204
|
store?.newData?.Handler !== undefined
|
|
112
205
|
) {
|
|
113
|
-
this.refreshPage(
|
|
206
|
+
this.refreshPage(
|
|
207
|
+
store.newData.Handler || store.formdata.Handler,
|
|
208
|
+
store
|
|
209
|
+
);
|
|
114
210
|
}
|
|
115
211
|
},
|
|
116
212
|
addEvent: function () {
|
|
117
213
|
const path = store.searchParams?.get("path");
|
|
118
214
|
if (!Array.isArray(store.formData.events)) {
|
|
119
|
-
store.formData.events = []
|
|
215
|
+
store.formData.events = [];
|
|
120
216
|
}
|
|
121
|
-
saveFormdataInSessionStorage(store.ctx.core.data, path)
|
|
122
|
-
const finalPath = `${path}.events[${store.formData?.events?.length}]
|
|
123
|
-
store.searchParams.set("path", finalPath)
|
|
124
|
-
store.setSearchParams(store.searchParams)
|
|
125
|
-
this.setPage()
|
|
217
|
+
saveFormdataInSessionStorage(store.ctx.core.data, path);
|
|
218
|
+
const finalPath = `${path}.events[${store.formData?.events?.length}]`;
|
|
219
|
+
store.searchParams.set("path", finalPath);
|
|
220
|
+
store.setSearchParams(store.searchParams);
|
|
221
|
+
this.setPage();
|
|
126
222
|
},
|
|
127
223
|
editEvent: function () {
|
|
128
224
|
const rowId = dynamicData.path.split(".")[1];
|
|
129
225
|
const path = store.searchParams?.get("path");
|
|
130
|
-
saveFormdataInSessionStorage(store.ctx.core.data, path)
|
|
131
|
-
const finalPath = `${path}.events[${rowId}]
|
|
132
|
-
store.searchParams.set("path", finalPath)
|
|
133
|
-
store.setSearchParams(store.searchParams)
|
|
134
|
-
this.setPage()
|
|
135
|
-
|
|
226
|
+
saveFormdataInSessionStorage(store.ctx.core.data, path);
|
|
227
|
+
const finalPath = `${path}.events[${rowId}]`;
|
|
228
|
+
store.searchParams.set("path", finalPath);
|
|
229
|
+
store.setSearchParams(store.searchParams);
|
|
230
|
+
this.setPage();
|
|
136
231
|
},
|
|
137
232
|
deleteEvent: async function () {
|
|
138
|
-
await Component(store, dynamicData, submitHandler, service).deleteEvent(
|
|
233
|
+
await Component(store, dynamicData, submitHandler, service).deleteEvent(
|
|
234
|
+
false
|
|
235
|
+
);
|
|
139
236
|
store.updateDialog("popUpEvent");
|
|
140
237
|
},
|
|
141
238
|
backHandler: function () {
|
|
142
|
-
store.navigate(-1)
|
|
239
|
+
store.navigate(-1);
|
|
143
240
|
},
|
|
144
|
-
deletePopUpEvent: function(){
|
|
241
|
+
deletePopUpEvent: function () {
|
|
145
242
|
const rowId = dynamicData.path.split(".")[1];
|
|
146
|
-
sessionStorage.setItem(
|
|
243
|
+
sessionStorage.setItem("rowId", rowId);
|
|
147
244
|
store.updateDialog("popUpEvent");
|
|
148
245
|
},
|
|
149
|
-
copyPasteElement:
|
|
150
|
-
Component(store, dynamicData, submitHandler, service).copyPasteElement(
|
|
246
|
+
copyPasteElement: function () {
|
|
247
|
+
Component(store, dynamicData, submitHandler, service).copyPasteElement(
|
|
248
|
+
store,
|
|
249
|
+
this.setPage.bind(this)
|
|
250
|
+
);
|
|
151
251
|
},
|
|
152
|
-
RemoveItemButton: function(){
|
|
153
|
-
Component(store, dynamicData, submitHandler, service).RemoveItemButton(
|
|
252
|
+
RemoveItemButton: function () {
|
|
253
|
+
Component(store, dynamicData, submitHandler, service).RemoveItemButton(
|
|
254
|
+
store
|
|
255
|
+
);
|
|
154
256
|
},
|
|
155
|
-
|
|
156
|
-
|
|
257
|
+
onNavigatePopupYes: function() {
|
|
258
|
+
try{
|
|
259
|
+
store.navigate(sessionStorage.getItem("pendingNavigatePath"))
|
|
260
|
+
store.updateDialog(`pageNamepopup`)
|
|
261
|
+
}
|
|
262
|
+
catch(e){
|
|
263
|
+
store.updateDialog(`pageNamepopup`)
|
|
264
|
+
store.setNotify({
|
|
265
|
+
FailMessage: "Couldn't navigate page",
|
|
266
|
+
Fail: true,
|
|
267
|
+
})
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
onNavigatePopupNo: function() {
|
|
271
|
+
store.updateDialog(`pageNamepopup`)
|
|
272
|
+
}
|
|
273
|
+
};
|
|
157
274
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import _
|
|
1
|
+
import _ from "lodash";
|
|
2
2
|
import { handlersProps } from "./interface";
|
|
3
3
|
export const executeEvents = (params: handlersProps) => {
|
|
4
4
|
let nextEvent = [];
|
|
@@ -186,6 +186,13 @@ function mergeFormdata(handlerResponse: any, componentName: string, eventConfig:
|
|
|
186
186
|
store.setFormdata((pre: any) => { return { ...pre, ...handlerResponse?.data } })
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
|
+
else if (eventConfig.type === "Table" && eventConfig.lazyLoading) {
|
|
190
|
+
if (handlerResponse && handlerResponse?.data) {
|
|
191
|
+
formDataHolder[componentName] = handlerResponse.data?.data
|
|
192
|
+
formDataHolder[`${componentName}_RowCount`] = handlerResponse.data?.meta?.totalRowCount
|
|
193
|
+
store.setFormdata((pre) => { return { ...pre, ...formDataHolder } });
|
|
194
|
+
}
|
|
195
|
+
}
|
|
189
196
|
else {
|
|
190
197
|
if (handlerResponse) {
|
|
191
198
|
formDataHolder[componentName] = handlerResponse.data
|
|
@@ -61,33 +61,21 @@ export const extractEvents = (eventConfig: any) => {
|
|
|
61
61
|
return eventGroups;
|
|
62
62
|
};
|
|
63
63
|
export default (funcParams: funcParamsProps) => {
|
|
64
|
-
eventGroups = {}
|
|
65
64
|
const formDataHolder = {}
|
|
66
|
-
if (pageData) {
|
|
67
|
-
if ((!isEmpty(pageData)) && typeof pageData === "object") {
|
|
68
|
-
eventGroups = extractEvents(pageData?.config)
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
65
|
let executeEventsParameters: handlersProps = {
|
|
72
66
|
config: {}, componentName: "",
|
|
73
67
|
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
74
|
-
serviceHolder: { downloadFile, download: doDownload, ...funcParams.functionsProvider },
|
|
68
|
+
serviceHolder: { downloadFile, download: doDownload, ...funcParams.functionsProvider },
|
|
75
69
|
functionsProvider: funcParams.functionsProvider, formDataHolder
|
|
76
70
|
};
|
|
77
71
|
return {
|
|
78
72
|
setPage: async function () {
|
|
73
|
+
funcParams.store.setAdditionalErrors([]);
|
|
79
74
|
funcParams.store.setFormdata({});
|
|
75
|
+
funcParams.store.setSchema({ type: "object", properties: {} });
|
|
80
76
|
funcParams.store.newData = {};
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
pageData = JSON.parse(pageBasicDetailString)
|
|
84
|
-
} else {
|
|
85
|
-
pageData = await funcParams.pageDataProvider();
|
|
86
|
-
sessionStorage.setItem("pagemasterMetaData", JSON.stringify({
|
|
87
|
-
schema: pageData?.schema,
|
|
88
|
-
uiSchema: pageData?.uiSchema, config: pageData?.config
|
|
89
|
-
}))
|
|
90
|
-
}
|
|
77
|
+
eventGroups = {};
|
|
78
|
+
pageData = await funcParams.pageDataProvider();
|
|
91
79
|
const config = pageData?.config;
|
|
92
80
|
const uiSchema = pageData?.uiSchema;
|
|
93
81
|
const event = new CustomEvent('pageNameChanged', {
|
|
@@ -96,112 +84,6 @@ export default (funcParams: funcParamsProps) => {
|
|
|
96
84
|
window.dispatchEvent(event)
|
|
97
85
|
const theme = funcParams?.store?.theme?.myTheme;
|
|
98
86
|
uiSchema.elements.push(
|
|
99
|
-
|
|
100
|
-
// {
|
|
101
|
-
// type: "HorizontalLayout",
|
|
102
|
-
// config: {
|
|
103
|
-
// main: {
|
|
104
|
-
// direction: "row",
|
|
105
|
-
// },
|
|
106
|
-
// style: {
|
|
107
|
-
// flexDirection: "row",
|
|
108
|
-
// position: "absolute",
|
|
109
|
-
// bottom: 0,
|
|
110
|
-
// height: "fit-content",
|
|
111
|
-
// overflow: "hidden",
|
|
112
|
-
// zIndex: 1000,
|
|
113
|
-
// width: "inherit",
|
|
114
|
-
// },
|
|
115
|
-
// },
|
|
116
|
-
// elements: [
|
|
117
|
-
// {
|
|
118
|
-
// type: "Control",
|
|
119
|
-
// scope: "#/properties/FooterText",
|
|
120
|
-
// options: {
|
|
121
|
-
// widget: "Box",
|
|
122
|
-
// },
|
|
123
|
-
// config: {
|
|
124
|
-
// main: {
|
|
125
|
-
// heading: "Copywriter@ACT21.IO",
|
|
126
|
-
// },
|
|
127
|
-
// style: {
|
|
128
|
-
// color: theme?.palette?.text?.disabled || "#AFAFAF",
|
|
129
|
-
// fontSize: "12px",
|
|
130
|
-
// textAlign: "center",
|
|
131
|
-
// lineHeight: 2,
|
|
132
|
-
// width: "fit-content",
|
|
133
|
-
// left: "50%",
|
|
134
|
-
// position: "relative",
|
|
135
|
-
// margin: 0,
|
|
136
|
-
// flexGrow: 1,
|
|
137
|
-
// height: 0,
|
|
138
|
-
// transform: "translate(-50%, 0%)",
|
|
139
|
-
// },
|
|
140
|
-
// },
|
|
141
|
-
// },
|
|
142
|
-
// {
|
|
143
|
-
// type: "Control",
|
|
144
|
-
// scope: "#/properties/FooterBackIcon",
|
|
145
|
-
// options: {
|
|
146
|
-
// widget: "Box",
|
|
147
|
-
// },
|
|
148
|
-
// config: {
|
|
149
|
-
// main: {
|
|
150
|
-
// iconName: "PrevIcon",
|
|
151
|
-
// onClick: "backHandler",
|
|
152
|
-
// width: "fit-content",
|
|
153
|
-
// },
|
|
154
|
-
// style: {
|
|
155
|
-
// fill: theme?.palette?.primary?.main,
|
|
156
|
-
// width: 20,
|
|
157
|
-
// height: 0,
|
|
158
|
-
// // margin: 0,
|
|
159
|
-
// top: 0,
|
|
160
|
-
// right: { xs: "12px", sm: "84px" },
|
|
161
|
-
// position: "absolute",
|
|
162
|
-
// fontSize: "12px",
|
|
163
|
-
// cursor: "pointer",
|
|
164
|
-
// ":hover": {
|
|
165
|
-
// fill: theme?.palette?.primary?.dark,
|
|
166
|
-
// },
|
|
167
|
-
// marginRight: "13px",
|
|
168
|
-
// },
|
|
169
|
-
// },
|
|
170
|
-
// },
|
|
171
|
-
// {
|
|
172
|
-
// type: "Control",
|
|
173
|
-
// scope: "#/properties/FooterBackHandlerText",
|
|
174
|
-
// options: {
|
|
175
|
-
// widget: "Box",
|
|
176
|
-
// },
|
|
177
|
-
// config: {
|
|
178
|
-
// main: {
|
|
179
|
-
// heading: "Previous Page",
|
|
180
|
-
// onClick: "backHandler",
|
|
181
|
-
// },
|
|
182
|
-
// style: {
|
|
183
|
-
// display: { xs: "none", sm: "flex" },
|
|
184
|
-
// textAlign: "left",
|
|
185
|
-
// lineHeight: 1,
|
|
186
|
-
// height: 0,
|
|
187
|
-
// width: "fit-content",
|
|
188
|
-
// color: theme?.palette?.primary?.main,
|
|
189
|
-
// fontSize: "14px",
|
|
190
|
-
// cursor: "pointer",
|
|
191
|
-
// marginLeft: "2px",
|
|
192
|
-
|
|
193
|
-
// top: 3,
|
|
194
|
-
// right: "12px",
|
|
195
|
-
// position: "absolute",
|
|
196
|
-
// ":hover": {
|
|
197
|
-
// color: theme?.palette?.primary?.dark,
|
|
198
|
-
// },
|
|
199
|
-
// marginRight: "4px",
|
|
200
|
-
// },
|
|
201
|
-
// },
|
|
202
|
-
// },
|
|
203
|
-
// ],
|
|
204
|
-
// }
|
|
205
87
|
{
|
|
206
88
|
type: "HorizontalLayout",
|
|
207
89
|
config: {
|
|
@@ -260,7 +142,6 @@ export default (funcParams: funcParamsProps) => {
|
|
|
260
142
|
fill: theme?.palette?.primary?.main,
|
|
261
143
|
width: 20,
|
|
262
144
|
height: 0,
|
|
263
|
-
// margin: 0,
|
|
264
145
|
top: 0,
|
|
265
146
|
right: { xs: "12px", sm: "84px" },
|
|
266
147
|
position: "absolute",
|
|
@@ -294,7 +175,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
294
175
|
fontSize: "12px",
|
|
295
176
|
cursor: "pointer",
|
|
296
177
|
marginLeft: "2px",
|
|
297
|
-
|
|
178
|
+
|
|
298
179
|
top: 3,
|
|
299
180
|
right: "12px",
|
|
300
181
|
position: "absolute",
|
|
@@ -309,22 +190,23 @@ export default (funcParams: funcParamsProps) => {
|
|
|
309
190
|
}
|
|
310
191
|
);
|
|
311
192
|
const schema = pageData?.schema ?? { type: "object", properties: {} };
|
|
312
|
-
|
|
193
|
+
const newEventGroups = extractEvents(config);
|
|
194
|
+
eventGroups = newEventGroups;
|
|
313
195
|
executeEventsParameters = {
|
|
314
196
|
config: {}, componentName: "",
|
|
315
197
|
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
316
198
|
functionsProvider: funcParams.functionsProvider,
|
|
317
|
-
serviceHolder: this, eventGroups, formDataHolder
|
|
199
|
+
serviceHolder: this, eventGroups: newEventGroups, formDataHolder
|
|
318
200
|
}
|
|
319
201
|
await executeRefreshHandler({
|
|
320
202
|
config: {}, componentName: "",
|
|
321
203
|
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
322
|
-
serviceHolder: this, eventGroups, formDataHolder
|
|
204
|
+
serviceHolder: this, eventGroups: newEventGroups, formDataHolder: {}
|
|
323
205
|
})
|
|
324
206
|
funcParams.store.setSchema(
|
|
325
207
|
(pre: any) => {
|
|
326
208
|
return {
|
|
327
|
-
...schema
|
|
209
|
+
...schema, ...pre, properties:
|
|
328
210
|
{ ...schema.properties, ...pre.properties, }
|
|
329
211
|
}
|
|
330
212
|
}
|
|
@@ -336,7 +218,8 @@ export default (funcParams: funcParamsProps) => {
|
|
|
336
218
|
if (eventGroups.onCellRenderer) {
|
|
337
219
|
let finalResponse = {};
|
|
338
220
|
const path = funcParams.dynamicData?.tableButtonPath || funcParams?.dynamicData?.path?.split(".")[0];
|
|
339
|
-
|
|
221
|
+
|
|
222
|
+
for (const eventConfig of eventGroups?.onCellRenderer?.[path]) {
|
|
340
223
|
executeEventsParameters.store.functionParameters = cellParams
|
|
341
224
|
finalResponse = executeEvents({
|
|
342
225
|
...executeEventsParameters,
|
|
@@ -390,7 +273,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
390
273
|
{ key: "searchValue", value: param.serachValue },
|
|
391
274
|
{ key: "currentValue", value: param.currentValue }
|
|
392
275
|
]
|
|
393
|
-
const response = await this.callExecuteEvents(param, apiBody);
|
|
276
|
+
const response = await this.callExecuteEvents(param, apiBody, "onLoad");
|
|
394
277
|
return response?.data;
|
|
395
278
|
}
|
|
396
279
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const buildPdfViewer: (config: any) => any;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
type: string;
|
|
3
|
-
scope: string;
|
|
4
|
-
options: {
|
|
5
|
-
widget: string;
|
|
6
|
-
};
|
|
7
|
-
config: {
|
|
8
|
-
layout: {
|
|
9
|
-
xs: number;
|
|
10
|
-
sm: number;
|
|
11
|
-
md: number;
|
|
12
|
-
lg: number;
|
|
13
|
-
};
|
|
14
|
-
main: {
|
|
15
|
-
title: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export default _default;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import pdfViewer from "./uischema/pdfViewer";
|
|
2
|
-
import buildUiSchema from "./buildUiSchema";
|
|
3
|
-
import _ from "lodash";
|
|
4
|
-
import { createLayoutFormat } from "./buildConfig";
|
|
5
|
-
|
|
6
|
-
export const buildPdfViewer = (config) => {
|
|
7
|
-
const PdfViewer: any = _.cloneDeep(pdfViewer)
|
|
8
|
-
PdfViewer.config.main.label = config.label
|
|
9
|
-
if (config.name) {
|
|
10
|
-
PdfViewer.scope=`#/properties/${config.name}`
|
|
11
|
-
}
|
|
12
|
-
if (config.layout) {
|
|
13
|
-
PdfViewer.config.layout = createLayoutFormat(config.layout);
|
|
14
|
-
}
|
|
15
|
-
if(config.label) {
|
|
16
|
-
PdfViewer.config.main.title = config.label
|
|
17
|
-
}
|
|
18
|
-
if (config.style) {
|
|
19
|
-
PdfViewer.config.style = JSON.parse(config.style)
|
|
20
|
-
}
|
|
21
|
-
return PdfViewer
|
|
22
|
-
}
|