impaktapps-ui-builder 0.0.392 → 0.0.393-alpha.10
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 +22 -108
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +9 -9
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/lazyLoadingTable.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/table.d.ts +0 -1
- package/dist/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.d.ts +0 -6
- package/dist/src/impaktapps-ui-builder/builder/services/pageMaster.d.ts +0 -6
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +0 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildLeaderboard.ts +6 -8
- package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +2 -5
- package/src/impaktapps-ui-builder/builder/build/buildUiSchema.ts +33 -15
- package/src/impaktapps-ui-builder/builder/build/buildWrapperSection.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -9
- package/src/impaktapps-ui-builder/builder/build/uischema/lazyLoadingTable.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/table.ts +0 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/schema.ts +1 -8
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +4 -8
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +1 -2
- package/src/impaktapps-ui-builder/builder/services/component.ts +0 -1
- package/src/impaktapps-ui-builder/builder/services/pageMaster.ts +4 -11
- package/src/impaktapps-ui-builder/builder/services/utils.ts +1 -1
- package/src/impaktapps-ui-builder/runtime/services/events.ts +2 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +2 -5
- package/dist/src/impaktapps-ui-builder/builder/build/buildInputSlider.d.ts +0 -1
- package/src/impaktapps-ui-builder/builder/build/buildInputSlider.ts +0 -46
|
@@ -22,13 +22,6 @@ const PageMasterSchema = {
|
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
template: {
|
|
26
|
-
oneOf: [
|
|
27
|
-
{ const: "Template-1", title: "template1" },
|
|
28
|
-
{ const: "Template-2", title: "template2" },
|
|
29
|
-
{ const: "Template-3", title: "template3" }
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
25
|
sectionLabels: {
|
|
33
26
|
type: "array",
|
|
34
27
|
items: {
|
|
@@ -41,7 +34,7 @@ const PageMasterSchema = {
|
|
|
41
34
|
}
|
|
42
35
|
}
|
|
43
36
|
},
|
|
44
|
-
required: ["
|
|
37
|
+
required: ["label", "name"]
|
|
45
38
|
};
|
|
46
39
|
const PageMasterUiSchema = {
|
|
47
40
|
type: "HorizontalLayout",
|
|
@@ -121,19 +114,15 @@ const PageMasterUiSchema = {
|
|
|
121
114
|
},
|
|
122
115
|
{
|
|
123
116
|
type: "Control",
|
|
124
|
-
scope: "#/properties/
|
|
117
|
+
scope: "#/properties/label",
|
|
125
118
|
options: {
|
|
126
|
-
widget: "
|
|
119
|
+
widget: "InputField"
|
|
127
120
|
},
|
|
128
121
|
config: {
|
|
129
122
|
layout: { xs: 11, sm: 11, md: 5.5, lg: 5.5 },
|
|
130
123
|
main: {
|
|
131
|
-
label: "
|
|
132
|
-
options: [
|
|
133
|
-
{ const: "template1", title: "template1" },
|
|
134
|
-
{ const: "template2", title: "template2" },
|
|
135
|
-
{ const: "template3", title: "template3" }
|
|
136
|
-
],
|
|
124
|
+
label: "Label",
|
|
125
|
+
options: [],
|
|
137
126
|
color: "secondary",
|
|
138
127
|
required: true
|
|
139
128
|
}
|
|
@@ -5888,7 +5877,6 @@ const ComponentSchema = {
|
|
|
5888
5877
|
{ title: "Empty Box", const: "EmptyBox" },
|
|
5889
5878
|
{ title: "File", const: "FileInput" },
|
|
5890
5879
|
{ title: "Graph", const: "Graph" },
|
|
5891
|
-
{ title: "Input Slider", const: "InputSlider" },
|
|
5892
5880
|
{ title: "Label", const: "Box" },
|
|
5893
5881
|
{ title: "LeaderBoard", const: "LeaderBoard" },
|
|
5894
5882
|
{ title: "MultipleSelect", const: "MultipleSelect" },
|
|
@@ -6896,14 +6884,6 @@ const GraphSection = {
|
|
|
6896
6884
|
const buildPropertiesSection = function(type) {
|
|
6897
6885
|
let uiSchema = _.cloneDeep(GraphSection);
|
|
6898
6886
|
switch (type) {
|
|
6899
|
-
case "InputSlider":
|
|
6900
|
-
uiSchema.elements = [
|
|
6901
|
-
getInputField("max", "Max Limit"),
|
|
6902
|
-
getInputField("step", "Step"),
|
|
6903
|
-
getInputField("min", "Min Limit"),
|
|
6904
|
-
getRadioInputField("limitToMax", "Applly Max. Limit", ["YES", "NO"])
|
|
6905
|
-
];
|
|
6906
|
-
break;
|
|
6907
6887
|
case "DataGrid":
|
|
6908
6888
|
uiSchema.elements = [
|
|
6909
6889
|
getRadioInputField("divider", "Use Header divider", ["YES", "NO"]),
|
|
@@ -7020,8 +7000,6 @@ const buildPropertiesSection = function(type) {
|
|
|
7020
7000
|
break;
|
|
7021
7001
|
case "TabSection":
|
|
7022
7002
|
uiSchema.elements = [
|
|
7023
|
-
getRadioInputField("verticalOrientation", "Vertical Orientation", ["YES", "NO"]),
|
|
7024
|
-
EmptyBox,
|
|
7025
7003
|
getArrayControl("sectionLabels", "label")
|
|
7026
7004
|
];
|
|
7027
7005
|
break;
|
|
@@ -7415,14 +7393,14 @@ const getFormdataFromLocalStorage = (path) => {
|
|
|
7415
7393
|
};
|
|
7416
7394
|
async function saveHandler(store2, service2, submitHandler, pageName) {
|
|
7417
7395
|
var _a, _b;
|
|
7418
|
-
(_a = store2.searchParams) == null ? void 0 : _a.get("id");
|
|
7396
|
+
const id = (_a = store2.searchParams) == null ? void 0 : _a.get("id");
|
|
7419
7397
|
const path = (_b = store2.searchParams) == null ? void 0 : _b.get("path");
|
|
7420
7398
|
saveFormdataInLocalStorage(store2.ctx.core.data, path);
|
|
7421
7399
|
const config = JSON.parse(localStorage.getItem("pageFormdata"));
|
|
7422
7400
|
if (_.isEmpty(store2.ctx.core.errors)) {
|
|
7423
7401
|
try {
|
|
7424
7402
|
const saveReturn = await submitHandler(store2, service2, config);
|
|
7425
|
-
navigateHandler(store2, true, pageName ? `/${pageName}?id=${
|
|
7403
|
+
navigateHandler(store2, true, pageName ? `/${pageName}?id=${id}` : "/PageMasterRecords");
|
|
7426
7404
|
} catch (err) {
|
|
7427
7405
|
navigateHandler(store2, false);
|
|
7428
7406
|
}
|
|
@@ -7489,8 +7467,7 @@ const sectionLabels = {
|
|
|
7489
7467
|
TextArea: ["Core", "Properties", "style", "Event", "Validation"],
|
|
7490
7468
|
PopUp: ["Core", "Components", "Properties", "style"],
|
|
7491
7469
|
Stepper: ["Core", "Components", "Properties", "Event", "style"],
|
|
7492
|
-
DataGrid: ["Core", "Components", "Properties", "Event", "style"]
|
|
7493
|
-
InputSlider: ["Core", "Properties", "style", "Event", "Validation"]
|
|
7470
|
+
DataGrid: ["Core", "Components", "Properties", "Event", "style"]
|
|
7494
7471
|
};
|
|
7495
7472
|
const refreshPage = (type, store2) => {
|
|
7496
7473
|
var _a;
|
|
@@ -7645,15 +7622,9 @@ var pageMaster = (funcParams) => {
|
|
|
7645
7622
|
store2.formData.elements = [];
|
|
7646
7623
|
}
|
|
7647
7624
|
const response2 = saveFormdataInLocalStorage(store2.ctx.core.data);
|
|
7648
|
-
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
);
|
|
7652
|
-
} else {
|
|
7653
|
-
store2.navigate(
|
|
7654
|
-
`/Component?path=${`elements[${response2 == null ? void 0 : response2.elements.length}]`}`
|
|
7655
|
-
);
|
|
7656
|
-
}
|
|
7625
|
+
store2.navigate(
|
|
7626
|
+
`/Component?path=${`elements[${response2 == null ? void 0 : response2.elements.length}]`}&id=${id}`
|
|
7627
|
+
);
|
|
7657
7628
|
},
|
|
7658
7629
|
saveHandler: async () => await saveHandler(store2, service2, submitHandler),
|
|
7659
7630
|
Edit_Components: Component(store2, dynamicData2, submitHandler, service2).editComponents,
|
|
@@ -7727,7 +7698,6 @@ const EventSchema = {
|
|
|
7727
7698
|
{ title: "Click Event", const: "onClick" },
|
|
7728
7699
|
{ title: "Load Event", const: "onLoad" },
|
|
7729
7700
|
{ title: "Change Event", const: "onChange" },
|
|
7730
|
-
{ title: "Mount Event", const: "onMount" },
|
|
7731
7701
|
{ title: "Success", const: "Success" },
|
|
7732
7702
|
{ title: "onStart", const: "onStart" },
|
|
7733
7703
|
{ title: "File Upload Event", const: "onUpload" },
|
|
@@ -8439,7 +8409,7 @@ async function executeInBuiltFunctionHandler(params) {
|
|
|
8439
8409
|
const makeFunc = eval(params.config.funcParametersCode);
|
|
8440
8410
|
parameter = makeFunc(params.store, params.dynamicData, params.userValue, params.parentEventOutput, params.service);
|
|
8441
8411
|
}
|
|
8442
|
-
params.serviceHolder[params.config.inBuiltFunctionType](parameter
|
|
8412
|
+
params.serviceHolder[params.config.inBuiltFunctionType](parameter);
|
|
8443
8413
|
}
|
|
8444
8414
|
async function executeCustomHandler(params) {
|
|
8445
8415
|
const makeFunc = eval(params.config.eventCode);
|
|
@@ -8487,8 +8457,7 @@ async function mergeFormdata(handlerResponse, componentName, eventConfig, store2
|
|
|
8487
8457
|
} else {
|
|
8488
8458
|
if (handlerResponse) {
|
|
8489
8459
|
store2.setFormdata((pre) => {
|
|
8490
|
-
|
|
8491
|
-
return { ...pre, [componentName]: eventConfig.lazyLoading ? (_a = handlerResponse == null ? void 0 : handlerResponse.data) == null ? void 0 : _a.data : handlerResponse.data };
|
|
8460
|
+
return { ...pre, [componentName]: eventConfig.lazyLoading ? handlerResponse.data.data : handlerResponse.data };
|
|
8492
8461
|
});
|
|
8493
8462
|
await asyncOperation();
|
|
8494
8463
|
}
|
|
@@ -8647,7 +8616,7 @@ var service = (funcParams) => {
|
|
|
8647
8616
|
(pre) => {
|
|
8648
8617
|
return {
|
|
8649
8618
|
...funcParams.schema,
|
|
8650
|
-
properties: { ...
|
|
8619
|
+
properties: { ...pre.properties, ...funcParams.schema.properties }
|
|
8651
8620
|
};
|
|
8652
8621
|
}
|
|
8653
8622
|
);
|
|
@@ -8667,9 +8636,6 @@ var service = (funcParams) => {
|
|
|
8667
8636
|
onClick: async function() {
|
|
8668
8637
|
await this.callHandler("onClick");
|
|
8669
8638
|
},
|
|
8670
|
-
onMount: async function() {
|
|
8671
|
-
await this.callHandler("onMount");
|
|
8672
|
-
},
|
|
8673
8639
|
onFileDownload: async function() {
|
|
8674
8640
|
await this.callHandler("onDownload");
|
|
8675
8641
|
},
|
|
@@ -9126,7 +9092,6 @@ const buildLeaderBoard = (config) => {
|
|
|
9126
9092
|
});
|
|
9127
9093
|
LeaderBoard.elements[9].elements = modifyColumns;
|
|
9128
9094
|
}
|
|
9129
|
-
LeaderBoard.config.main.label = config.label;
|
|
9130
9095
|
if (config.name) {
|
|
9131
9096
|
LeaderBoard.elements[0].scope = `#/properties/${config.name}/properties/firstImage`;
|
|
9132
9097
|
LeaderBoard.elements[3].scope = `#/properties/${config.name}/properties/firstName`;
|
|
@@ -9146,7 +9111,7 @@ const buildLeaderBoard = (config) => {
|
|
|
9146
9111
|
LeaderBoard.elements[2].config.main.url = config.thirdImage;
|
|
9147
9112
|
}
|
|
9148
9113
|
if (config.layout) {
|
|
9149
|
-
LeaderBoard.config.layout =
|
|
9114
|
+
LeaderBoard.config.layout = config.layout;
|
|
9150
9115
|
}
|
|
9151
9116
|
return LeaderBoard;
|
|
9152
9117
|
};
|
|
@@ -9579,10 +9544,6 @@ var Tabsection = {
|
|
|
9579
9544
|
};
|
|
9580
9545
|
const buildTabSection = (config, componentScope) => {
|
|
9581
9546
|
const tab = _.cloneDeep(Tabsection);
|
|
9582
|
-
tab.scopeName = componentScope;
|
|
9583
|
-
if (config.orientation) {
|
|
9584
|
-
tab.config.main.orientation = config.orientation === "YES" ? "vertical" : "horizontal";
|
|
9585
|
-
}
|
|
9586
9547
|
if (config.sectionLabels) {
|
|
9587
9548
|
tab.config.main.tabLabels = config.sectionLabels.map((e) => e.label);
|
|
9588
9549
|
}
|
|
@@ -9602,7 +9563,6 @@ var WrapperSection = {
|
|
|
9602
9563
|
};
|
|
9603
9564
|
const buildWrapperSection = (config, componentScope) => {
|
|
9604
9565
|
const wrapper = _.cloneDeep(WrapperSection);
|
|
9605
|
-
wrapper.scopeName = componentScope;
|
|
9606
9566
|
wrapper.config.main.label = config.label;
|
|
9607
9567
|
wrapper.config.main.divider = config.divider === "YES" ? true : false;
|
|
9608
9568
|
if (config.style) {
|
|
@@ -9759,7 +9719,6 @@ var Table = {
|
|
|
9759
9719
|
elements: [],
|
|
9760
9720
|
config: {
|
|
9761
9721
|
main: {
|
|
9762
|
-
onMount: "onMount",
|
|
9763
9722
|
allRowData: [],
|
|
9764
9723
|
downloadAllData: false,
|
|
9765
9724
|
columns: {
|
|
@@ -9778,7 +9737,6 @@ var lazyLoadingTable = {
|
|
|
9778
9737
|
elements: [],
|
|
9779
9738
|
config: {
|
|
9780
9739
|
main: {
|
|
9781
|
-
onMount: "onMount",
|
|
9782
9740
|
columns: {}
|
|
9783
9741
|
}
|
|
9784
9742
|
}
|
|
@@ -10620,47 +10578,6 @@ const buildDataGrid = (config, componentScope) => {
|
|
|
10620
10578
|
}
|
|
10621
10579
|
return DataGrid;
|
|
10622
10580
|
};
|
|
10623
|
-
const InputSlider = {
|
|
10624
|
-
type: "Control",
|
|
10625
|
-
scope: "#/properties/inputSlider",
|
|
10626
|
-
options: {
|
|
10627
|
-
widget: "InputSlider"
|
|
10628
|
-
},
|
|
10629
|
-
config: {
|
|
10630
|
-
layout: 12,
|
|
10631
|
-
main: {
|
|
10632
|
-
limitToMax: false,
|
|
10633
|
-
max: 1e4,
|
|
10634
|
-
step: 1e3,
|
|
10635
|
-
min: 0,
|
|
10636
|
-
label: "Slider"
|
|
10637
|
-
}
|
|
10638
|
-
}
|
|
10639
|
-
};
|
|
10640
|
-
const buildInputSlider = (config, componentScope) => {
|
|
10641
|
-
const inputSlider = _.cloneDeep(InputSlider);
|
|
10642
|
-
inputSlider.scope = componentScope;
|
|
10643
|
-
inputSlider.config.main.label = config.label;
|
|
10644
|
-
if (config.layout) {
|
|
10645
|
-
inputSlider.config.layout = createLayoutFormat(config.layout);
|
|
10646
|
-
}
|
|
10647
|
-
if (config.limitToMax) {
|
|
10648
|
-
inputSlider.config.main.limitToMax = config.limitToMax === "YES" ? true : false;
|
|
10649
|
-
}
|
|
10650
|
-
if (config.max) {
|
|
10651
|
-
inputSlider.config.main.max = config.max;
|
|
10652
|
-
}
|
|
10653
|
-
if (config.step) {
|
|
10654
|
-
inputSlider.config.main.step = config.step;
|
|
10655
|
-
}
|
|
10656
|
-
if (config.min) {
|
|
10657
|
-
inputSlider.config.main.min = config.min;
|
|
10658
|
-
}
|
|
10659
|
-
if (config.style) {
|
|
10660
|
-
inputSlider.config.main.defaultStyle = JSON.parse(config.style);
|
|
10661
|
-
}
|
|
10662
|
-
return inputSlider;
|
|
10663
|
-
};
|
|
10664
10581
|
let schema = {
|
|
10665
10582
|
type: "object",
|
|
10666
10583
|
properties: {},
|
|
@@ -10689,19 +10606,19 @@ function buildRule(configObj, tableName, arrayHolderName) {
|
|
|
10689
10606
|
}
|
|
10690
10607
|
}
|
|
10691
10608
|
}
|
|
10692
|
-
} else if ((configObj.type === "Select" || configObj.type === "MultipleSelect") && ((_j = configObj.value) == null ? void 0 : _j.length)
|
|
10609
|
+
} else if ((configObj.type === "Select" || configObj.type === "MultipleSelect") && ((_j = configObj.value) == null ? void 0 : _j.length) >= 0) {
|
|
10693
10610
|
if (configObj.type === "Select") {
|
|
10694
10611
|
schema.properties[configObj.name] = {
|
|
10695
|
-
oneOf: configObj.value.map((e) => {
|
|
10612
|
+
oneOf: Array.isArray(configObj.value) && configObj.value.length > 0 ? configObj.value.map((e) => {
|
|
10696
10613
|
return { const: e.value, title: e.label };
|
|
10697
|
-
})
|
|
10614
|
+
}) : [{ const: "", title: "" }]
|
|
10698
10615
|
};
|
|
10699
10616
|
} else if (configObj.type === "MultipleSelect") {
|
|
10700
10617
|
schema.properties[configObj.name] = {
|
|
10701
10618
|
items: {
|
|
10702
|
-
oneOf: configObj.value.map((e) => {
|
|
10619
|
+
oneOf: Array.isArray(configObj.value) && configObj.value.length > 0 ? configObj.value.map((e) => {
|
|
10703
10620
|
return { const: e.value, title: e.label };
|
|
10704
|
-
})
|
|
10621
|
+
}) : [{ const: "", title: "" }]
|
|
10705
10622
|
}
|
|
10706
10623
|
};
|
|
10707
10624
|
}
|
|
@@ -10779,9 +10696,6 @@ const buildUiSchema = (config) => {
|
|
|
10779
10696
|
let elements = {};
|
|
10780
10697
|
const componentScope = `#/properties/${config.name}`;
|
|
10781
10698
|
switch (config.type) {
|
|
10782
|
-
case "InputSlider":
|
|
10783
|
-
elements = buildInputSlider(config, componentScope);
|
|
10784
|
-
break;
|
|
10785
10699
|
case "DataGrid":
|
|
10786
10700
|
elements = buildDataGrid(config, componentScope);
|
|
10787
10701
|
break;
|
|
@@ -10801,13 +10715,13 @@ const buildUiSchema = (config) => {
|
|
|
10801
10715
|
elements = buildPanField(config, componentScope);
|
|
10802
10716
|
break;
|
|
10803
10717
|
case "TabSection":
|
|
10804
|
-
elements = buildTabSection(config
|
|
10718
|
+
elements = buildTabSection(config);
|
|
10805
10719
|
break;
|
|
10806
10720
|
case "RunnerBoyProgressBar":
|
|
10807
10721
|
elements = RunnerBoyProgressbar(config, componentScope);
|
|
10808
10722
|
break;
|
|
10809
10723
|
case "WrapperSection":
|
|
10810
|
-
elements = buildWrapperSection(config
|
|
10724
|
+
elements = buildWrapperSection(config);
|
|
10811
10725
|
break;
|
|
10812
10726
|
case "Text":
|
|
10813
10727
|
elements = buildTextField(config, componentScope);
|