impaktapps-ui-builder 0.0.101-alpha.27 → 0.0.101-alpha.29
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 +78 -112
- 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/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/eventSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +3 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/schema.ts +11 -11
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +31 -173
- package/src/impaktapps-ui-builder/builder/services/component.ts +31 -31
package/package.json
CHANGED
|
@@ -640,8 +640,9 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
640
640
|
width:"100%",
|
|
641
641
|
fontSize:"10px",
|
|
642
642
|
color:theme.palette.grey[600],
|
|
643
|
-
position: "
|
|
644
|
-
bottom: "
|
|
643
|
+
position: "fixed",
|
|
644
|
+
bottom: "24px",
|
|
645
|
+
backgroundColor: theme.palette.background.default,
|
|
645
646
|
borderBottom: `1px solid ${theme.palette.common.black}29`,
|
|
646
647
|
borderTop: `1px solid ${theme.palette.common.black}29`,
|
|
647
648
|
},
|
|
@@ -38,18 +38,18 @@ export const EventSchema = {
|
|
|
38
38
|
eventType: {
|
|
39
39
|
type: "string",
|
|
40
40
|
oneOf: [
|
|
41
|
-
{ title: "Click
|
|
42
|
-
{ title: "Load
|
|
43
|
-
{ title: "Change
|
|
44
|
-
{ title: "Mount
|
|
41
|
+
{ title: "Click", const: "onClick" },
|
|
42
|
+
{ title: "Load", const: "onLoad" },
|
|
43
|
+
{ title: "Change", const: "onChange" },
|
|
44
|
+
{ title: "Mount", const: "onMount" },
|
|
45
45
|
{ title: "Success", const: "Success" },
|
|
46
|
-
{ title: "
|
|
47
|
-
{ title: "Cell
|
|
48
|
-
{ title: "
|
|
49
|
-
{ title: "Back
|
|
50
|
-
{ title: "Next
|
|
51
|
-
{ title: "
|
|
52
|
-
{ title: "
|
|
46
|
+
{ title: "Start", const: "onStart" },
|
|
47
|
+
{ title: "Cell Render", const: "onCellRenderer" },
|
|
48
|
+
{ title: "Upload", const: "onUpload" },
|
|
49
|
+
{ title: "Back", const: "onBack" },
|
|
50
|
+
{ title: "Next", const: "onNext" },
|
|
51
|
+
{ title: "Row Movement", const: "onRowMovement" },
|
|
52
|
+
{ title: "Download", const: "onDownload" },
|
|
53
53
|
{ title: "Fail", const: "Fail" }
|
|
54
54
|
]
|
|
55
55
|
},
|
|
@@ -3,7 +3,7 @@ import { getSelectField } from "../../../build/uischema/buildPropertiesSection";
|
|
|
3
3
|
export const EventUiSchema: any = (theme) => {
|
|
4
4
|
const uiSchema = {
|
|
5
5
|
type: "HorizontalLayout",
|
|
6
|
-
heading: "Page-
|
|
6
|
+
heading: "Page-Events",
|
|
7
7
|
elements: [
|
|
8
8
|
// {
|
|
9
9
|
// type: "Control",
|
|
@@ -170,7 +170,7 @@ export const EventUiSchema: any = (theme) => {
|
|
|
170
170
|
|
|
171
171
|
{
|
|
172
172
|
accessorKey: "eventType",
|
|
173
|
-
header: "Event Type",
|
|
173
|
+
header: "Event's Type",
|
|
174
174
|
size: 300,
|
|
175
175
|
type: "string"
|
|
176
176
|
},
|
|
@@ -498,6 +498,31 @@ export const EventUiSchema: any = (theme) => {
|
|
|
498
498
|
},
|
|
499
499
|
]
|
|
500
500
|
},
|
|
501
|
+
{
|
|
502
|
+
type: "Control",
|
|
503
|
+
scope: "#/properties/pageName",
|
|
504
|
+
|
|
505
|
+
options: {
|
|
506
|
+
widget: "Box",
|
|
507
|
+
},
|
|
508
|
+
config: {
|
|
509
|
+
layout: 12,
|
|
510
|
+
main: {
|
|
511
|
+
heading: "",
|
|
512
|
+
},
|
|
513
|
+
style: {
|
|
514
|
+
paddingLeft: theme.spacing(3),
|
|
515
|
+
width:"100%",
|
|
516
|
+
fontSize:"10px",
|
|
517
|
+
color:theme.palette.grey[600],
|
|
518
|
+
position: "fixed",
|
|
519
|
+
bottom: "24px",
|
|
520
|
+
backgroundColor: theme.palette.background.default,
|
|
521
|
+
borderBottom: `1px solid ${theme.palette.common.black}29`,
|
|
522
|
+
borderTop: `1px solid ${theme.palette.common.black}29`,
|
|
523
|
+
},
|
|
524
|
+
},
|
|
525
|
+
},
|
|
501
526
|
{
|
|
502
527
|
type: "Control",
|
|
503
528
|
scope: "#/properties/notify",
|
|
@@ -506,112 +531,6 @@ export const EventUiSchema: any = (theme) => {
|
|
|
506
531
|
},
|
|
507
532
|
layout: 6,
|
|
508
533
|
},
|
|
509
|
-
// {
|
|
510
|
-
// type: "HorizontalLayout",
|
|
511
|
-
// config: {
|
|
512
|
-
// main: {
|
|
513
|
-
// direction: 'row'
|
|
514
|
-
// },
|
|
515
|
-
// style: {
|
|
516
|
-
// flexDirection: "row",
|
|
517
|
-
// position: "absolute",
|
|
518
|
-
// bottom: 0,
|
|
519
|
-
// marginBottom: '-8px',
|
|
520
|
-
// height: 'fit-content',
|
|
521
|
-
// overflow: 'hidden',
|
|
522
|
-
// zIndex: 1000,
|
|
523
|
-
// width: 'inherit'
|
|
524
|
-
// }
|
|
525
|
-
// },
|
|
526
|
-
// elements: [
|
|
527
|
-
// {
|
|
528
|
-
|
|
529
|
-
// type: "Control",
|
|
530
|
-
// scope: "#/properties/FooterText",
|
|
531
|
-
// options: {
|
|
532
|
-
// widget: "Box",
|
|
533
|
-
// },
|
|
534
|
-
// config: {
|
|
535
|
-
// main: {
|
|
536
|
-
// heading: "Copywriter@ACT21.IO"
|
|
537
|
-
// },
|
|
538
|
-
// style: {
|
|
539
|
-
// color: theme?.palette?.text.disabled || "#AFAFAF",
|
|
540
|
-
// fontSize: '12px',
|
|
541
|
-
// textAlign: 'center',
|
|
542
|
-
// lineHeight: 2,
|
|
543
|
-
// width: 'fit-content',
|
|
544
|
-
// left: '50%',
|
|
545
|
-
// position: 'relative',
|
|
546
|
-
// margin: 0,
|
|
547
|
-
// flexGrow: 1,
|
|
548
|
-
// height: 0,
|
|
549
|
-
// transform: "translate(-50%,0%)"
|
|
550
|
-
// }
|
|
551
|
-
// },
|
|
552
|
-
// },
|
|
553
|
-
// {
|
|
554
|
-
// type: "Control",
|
|
555
|
-
// scope: "#/properties/backIcon",
|
|
556
|
-
// options: {
|
|
557
|
-
// widget: "Box",
|
|
558
|
-
// },
|
|
559
|
-
// config: {
|
|
560
|
-
// main: {
|
|
561
|
-
// iconName: 'PrevIcon',
|
|
562
|
-
// onClick: "backHandler",
|
|
563
|
-
// width: 'fit-content',
|
|
564
|
-
// },
|
|
565
|
-
// style: {
|
|
566
|
-
// fill: theme.palette.primary.main,
|
|
567
|
-
// width: 20,
|
|
568
|
-
// height: 0,
|
|
569
|
-
// margin: 0,
|
|
570
|
-
// top: 0,
|
|
571
|
-
// right: {xs: '12px', sm: '84px'},
|
|
572
|
-
// position: 'absolute',
|
|
573
|
-
// fontSize: '12px',
|
|
574
|
-
// cursor: 'pointer',
|
|
575
|
-
// ':hover': {
|
|
576
|
-
// fill: theme.palette.primary.dark,
|
|
577
|
-
// }
|
|
578
|
-
// }
|
|
579
|
-
// }
|
|
580
|
-
// },
|
|
581
|
-
// {
|
|
582
|
-
// type: "Control",
|
|
583
|
-
// scope: "#/properties/text",
|
|
584
|
-
|
|
585
|
-
// options: {
|
|
586
|
-
// widget: "Box",
|
|
587
|
-
// },
|
|
588
|
-
// config: {
|
|
589
|
-
// main: {
|
|
590
|
-
// heading: "Previous Page",
|
|
591
|
-
// onClick: "backHandler"
|
|
592
|
-
// },
|
|
593
|
-
// style: {
|
|
594
|
-
// display: {xs: 'none', sm: "flex"},
|
|
595
|
-
// textAlign: 'left',
|
|
596
|
-
// lineHeight: 1,
|
|
597
|
-
// height: 0,
|
|
598
|
-
// width: 'fit-content',
|
|
599
|
-
// color: theme.palette.primary.main,
|
|
600
|
-
// fontSize: "12px",
|
|
601
|
-
// cursor: 'pointer',
|
|
602
|
-
// marginLeft: '2px',
|
|
603
|
-
// marginRight: 0,
|
|
604
|
-
// top: 3,
|
|
605
|
-
// right: '12px',
|
|
606
|
-
// position: 'absolute',
|
|
607
|
-
// ':hover': {
|
|
608
|
-
// color: theme.palette.primary.dark,
|
|
609
|
-
// }
|
|
610
|
-
// }
|
|
611
|
-
// },
|
|
612
|
-
// },
|
|
613
|
-
// ]
|
|
614
|
-
// }
|
|
615
534
|
{
|
|
616
535
|
type: "HorizontalLayout",
|
|
617
536
|
config: {
|
|
@@ -621,7 +540,7 @@ export const EventUiSchema: any = (theme) => {
|
|
|
621
540
|
style: {
|
|
622
541
|
flexDirection: "row",
|
|
623
542
|
position: "absolute",
|
|
624
|
-
bottom:
|
|
543
|
+
bottom: 10,
|
|
625
544
|
height: "fit-content",
|
|
626
545
|
overflow: "hidden",
|
|
627
546
|
zIndex: 1000,
|
|
@@ -640,81 +559,20 @@ export const EventUiSchema: any = (theme) => {
|
|
|
640
559
|
heading: "Copywriter@ACT21.IO",
|
|
641
560
|
},
|
|
642
561
|
style: {
|
|
643
|
-
color: theme?.palette?.text
|
|
562
|
+
color: theme?.palette?.text.disabled || "#AFAFAF",
|
|
644
563
|
fontSize: "11px",
|
|
645
564
|
textAlign: "center",
|
|
646
|
-
lineHeight:
|
|
565
|
+
lineHeight: 0,
|
|
647
566
|
width: "fit-content",
|
|
648
567
|
left: "50%",
|
|
649
568
|
position: "relative",
|
|
650
|
-
margin:
|
|
569
|
+
margin: "revert",
|
|
651
570
|
flexGrow: 1,
|
|
652
571
|
height: 0,
|
|
653
572
|
transform: "translate(-50%, 0%)",
|
|
654
573
|
},
|
|
655
574
|
},
|
|
656
575
|
},
|
|
657
|
-
{
|
|
658
|
-
type: "Control",
|
|
659
|
-
scope: "#/properties/FooterBackIcon",
|
|
660
|
-
options: {
|
|
661
|
-
widget: "Box",
|
|
662
|
-
},
|
|
663
|
-
config: {
|
|
664
|
-
main: {
|
|
665
|
-
iconName: "PrevIcon",
|
|
666
|
-
onClick: "backHandler",
|
|
667
|
-
width: "fit-content",
|
|
668
|
-
},
|
|
669
|
-
style: {
|
|
670
|
-
fill: theme?.palette?.primary?.main,
|
|
671
|
-
width: 20,
|
|
672
|
-
height: 0,
|
|
673
|
-
// margin: 0,
|
|
674
|
-
top: 0,
|
|
675
|
-
right: { xs: "12px", sm: "84px" },
|
|
676
|
-
position: "absolute",
|
|
677
|
-
fontSize: "12px",
|
|
678
|
-
cursor: "pointer",
|
|
679
|
-
":hover": {
|
|
680
|
-
fill: theme?.palette?.primary?.dark,
|
|
681
|
-
},
|
|
682
|
-
marginRight: "20px",
|
|
683
|
-
},
|
|
684
|
-
},
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
type: "Control",
|
|
688
|
-
scope: "#/properties/FooterBackHandlerText",
|
|
689
|
-
options: {
|
|
690
|
-
widget: "Box",
|
|
691
|
-
},
|
|
692
|
-
config: {
|
|
693
|
-
main: {
|
|
694
|
-
heading: "Previous Page",
|
|
695
|
-
onClick: "backHandler",
|
|
696
|
-
},
|
|
697
|
-
style: {
|
|
698
|
-
display: { xs: "none", sm: "flex" },
|
|
699
|
-
textAlign: "left",
|
|
700
|
-
lineHeight: 1,
|
|
701
|
-
height: 0,
|
|
702
|
-
width: "fit-content",
|
|
703
|
-
color: theme?.palette?.primary?.main,
|
|
704
|
-
fontSize: "12px",
|
|
705
|
-
cursor: "pointer",
|
|
706
|
-
marginLeft: "2px",
|
|
707
|
-
|
|
708
|
-
top: 3,
|
|
709
|
-
right: "12px",
|
|
710
|
-
position: "absolute",
|
|
711
|
-
":hover": {
|
|
712
|
-
color: theme?.palette?.primary?.dark,
|
|
713
|
-
},
|
|
714
|
-
marginRight: "4px",
|
|
715
|
-
},
|
|
716
|
-
},
|
|
717
|
-
},
|
|
718
576
|
],
|
|
719
577
|
}
|
|
720
578
|
],
|
|
@@ -10,36 +10,36 @@ import { ValueTab } from "../build/uischema/valueTab";
|
|
|
10
10
|
import { ValidationSection } from "../build/uischema/validationSections";
|
|
11
11
|
import { getFormdataFromSessionStorage, okHandler, saveFormdataInSessionStorage, saveHandler } from "./utils";
|
|
12
12
|
const sectionLabels = {
|
|
13
|
-
Select: ["Core", "Properties", "Value", "
|
|
14
|
-
MultipleSelect: ["Core", "Properties", "Value", "
|
|
15
|
-
Table: ["Core", "Components", "Properties", "
|
|
16
|
-
LeaderBoard: ["Core", "Components", "Properties", "
|
|
13
|
+
Select: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
|
|
14
|
+
MultipleSelect: ["Core", "Properties", "Value", "Events", "Style", "Validation"],
|
|
15
|
+
Table: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
|
|
16
|
+
LeaderBoard: ["Core", "Components", "Properties", "Events", "Style", "Validation"],
|
|
17
17
|
WrapperSection: ["Core", "Components", "Properties", "Style", "Validation"],
|
|
18
18
|
TabSection: ["Core", "Components", "Properties", "Style", "Validation"],
|
|
19
|
-
SpeedoMeter: ["Core", "Properties", "
|
|
20
|
-
card: ["Core", "Properties", "
|
|
21
|
-
UploadFile: ["Core", "
|
|
22
|
-
Graph: ["Core", "Properties", "
|
|
23
|
-
DownloadFile: ["Core", "
|
|
24
|
-
Box: ["Core", "
|
|
25
|
-
Properties: ["Core", "Properties", "
|
|
26
|
-
ProgressBarCard: ["Core", "Properties", "
|
|
27
|
-
RankCard: ["Core", "Properties", "
|
|
28
|
-
Slider: ["Core", "Components", "
|
|
29
|
-
Timer: ["Core", "
|
|
30
|
-
Rank: ["Core", "
|
|
31
|
-
Button: ["Core", "Properties", "
|
|
19
|
+
SpeedoMeter: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
20
|
+
card: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
21
|
+
UploadFile: ["Core", "Events", "Style", "Validation"],
|
|
22
|
+
Graph: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
23
|
+
DownloadFile: ["Core", "Events", "Style", "Validation"],
|
|
24
|
+
Box: ["Core", "Events", "Style", "Validation"],
|
|
25
|
+
Properties: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
26
|
+
ProgressBarCard: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
27
|
+
RankCard: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
28
|
+
Slider: ["Core", "Components", "Events", "Style", "Validation"],
|
|
29
|
+
Timer: ["Core", "Events", "Style", "Validation"],
|
|
30
|
+
Rank: ["Core", "Events", "Style", "Validation"],
|
|
31
|
+
Button: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
32
32
|
Array: ["Core", "Components", "Validation"],
|
|
33
|
-
Radio: ["Core", "Properties", "
|
|
34
|
-
Text: ["Core", "Properties", "
|
|
35
|
-
TextArea: ["Core", "Properties", "
|
|
33
|
+
Radio: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
34
|
+
Text: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
35
|
+
TextArea: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
36
36
|
PopUp: ["Core", "Components", "Properties", "Style"],
|
|
37
|
-
Stepper: ["Core", "Components", "Properties", "
|
|
38
|
-
DataGrid: ["Core", "Components", "Properties", "
|
|
39
|
-
InputSlider: ["Core", "Properties", "
|
|
40
|
-
TreeMap: ["Core", "Components", "Properties", "
|
|
37
|
+
Stepper: ["Core", "Components", "Properties", "Events", "Style"],
|
|
38
|
+
DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
|
|
39
|
+
InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
40
|
+
TreeMap: ["Core", "Components", "Properties", "Events", "Style"],
|
|
41
41
|
ColumnGroup: ["Core", "Components"],
|
|
42
|
-
Thought: ["Core", "Properties", "
|
|
42
|
+
Thought: ["Core", "Properties", "Events", "Style", "Validation"]
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
export function refreshPage (type: string, store: any) {
|
|
@@ -49,13 +49,13 @@ export function refreshPage (type: string, store: any) {
|
|
|
49
49
|
Core: CoreSection,
|
|
50
50
|
Value: ValueTab,
|
|
51
51
|
Style: StyleSection,
|
|
52
|
-
|
|
52
|
+
Events: EventSection(store.theme.myTheme),
|
|
53
53
|
Components: TableSection(store.theme.myTheme),
|
|
54
54
|
Properties: buildPropertiesSection(type),
|
|
55
55
|
Validation: ValidationSection
|
|
56
56
|
}
|
|
57
57
|
const elements = sectionLabels[type]?.map(e => sectionUiSchema[e]);
|
|
58
|
-
UiSchema.elements[0].config.main.tabLabels = sectionLabels[type] || ["Core", "Style", "
|
|
58
|
+
UiSchema.elements[0].config.main.tabLabels = sectionLabels[type] || ["Core", "Style", "Events", "Validation"];
|
|
59
59
|
UiSchema.elements[0].elements = elements || [CoreSection, StyleSection, EventSection(store.theme.myTheme), ValidationSection];
|
|
60
60
|
}
|
|
61
61
|
if (sessionStorage.getItem("copiedConfig") ) {
|
|
@@ -219,16 +219,16 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
219
219
|
|
|
220
220
|
const copiedConfig = JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
221
221
|
const notificationMessages = {
|
|
222
|
-
|
|
223
|
-
Component: "The component cannot be integrated into the
|
|
222
|
+
Events: " The Events cannot be integrated into the component section.",
|
|
223
|
+
Component: "The component cannot be integrated into the Events section."
|
|
224
224
|
};
|
|
225
225
|
if(copiedConfig.Handler && elementType === "Component"){
|
|
226
226
|
store.setNotify({
|
|
227
|
-
FailMessage: notificationMessages.
|
|
227
|
+
FailMessage: notificationMessages.Events,
|
|
228
228
|
Fail: true,
|
|
229
229
|
});
|
|
230
230
|
}
|
|
231
|
-
else if(copiedConfig.name && elementType === "
|
|
231
|
+
else if(copiedConfig.name && elementType === "Events"){
|
|
232
232
|
store.setNotify({
|
|
233
233
|
FailMessage: notificationMessages.Component,
|
|
234
234
|
Fail: true,
|