@pega/react-sdk-overrides 0.25.3 → 0.25.5
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/lib/designSystemExtension/Banner/Banner.tsx +5 -2
- package/lib/designSystemExtension/RichTextEditor/RichTextEditor.tsx +29 -26
- package/lib/designSystemExtension/WssQuickCreate/WssQuickCreate.css +6 -13
- package/lib/designSystemExtension/WssQuickCreate/WssQuickCreate.tsx +12 -1
- package/lib/field/Group/Group.tsx +3 -1
- package/lib/field/Location/Location.css +4 -0
- package/lib/field/Location/Location.tsx +2 -0
- package/lib/field/RadioButtons/RadioButtons.tsx +1 -1
- package/lib/field/RichText/RichText.css +79 -0
- package/lib/field/RichText/RichText.tsx +2 -0
- package/lib/field/SelectableCard/SelectableCard.tsx +3 -3
- package/lib/field/UserReference/UserReference.tsx +1 -1
- package/lib/helpers/simpleTableHelpers.ts +1 -1
- package/lib/infra/Assignment/Assignment.tsx +31 -24
- package/lib/infra/MultiStep/MultiStep.css +44 -64
- package/lib/infra/MultiStep/MultiStep.tsx +25 -51
- package/lib/infra/View/View.tsx +2 -1
- package/lib/template/AppShell/AppShell.tsx +5 -7
- package/lib/template/CaseSummary/CaseSummary.tsx +5 -78
- package/lib/template/CaseView/CaseView.tsx +20 -15
- package/lib/template/DefaultPage/DefaultPage.tsx +108 -0
- package/lib/template/DefaultPage/index.tsx +1 -0
- package/lib/template/ListView/ListView.tsx +152 -157
- package/lib/template/SelfServiceCaseView/SelfServiceCaseView.tsx +145 -0
- package/lib/template/SelfServiceCaseView/index.tsx +1 -0
- package/lib/template/WssNavBar/WssNavBar.tsx +3 -3
- package/lib/template/utils.tsx +58 -0
- package/lib/widget/ToDo/ToDo.tsx +1 -5
- package/package.json +1 -1
|
@@ -27,51 +27,27 @@ export default function MultiStep(props: PropsWithChildren<MultiStepProps>) {
|
|
|
27
27
|
currentStep = arNavigationSteps[lastActiveStepIndex >= 0 ? lastActiveStepIndex : 0];
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
// const svgCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
31
|
-
// const svgNotCurrent = Utils.getImageSrc("circle-solid", Utils.getSDKStaticConentUrl());
|
|
32
|
-
|
|
33
|
-
function _getVIconClass(status): string {
|
|
34
|
-
if (status === 'current') {
|
|
35
|
-
return 'psdk-vertical-step-icon-selected';
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
return 'psdk-vertical-step-icon';
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function _getVLabelClass(status): string {
|
|
42
|
-
if (status === 'current') {
|
|
43
|
-
return 'psdk-vertical-step-label-selected';
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return 'psdk-vertical-step-label';
|
|
47
|
-
}
|
|
48
|
-
|
|
49
30
|
function _getVBodyClass(index: number): string {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
31
|
+
const baseClass = 'psdk-vertical-step-body';
|
|
32
|
+
const isNotLastStep = index < arNavigationSteps.length - 1;
|
|
53
33
|
|
|
54
|
-
return
|
|
34
|
+
return isNotLastStep ? `${baseClass} psdk-vertical-step-line` : baseClass;
|
|
55
35
|
}
|
|
56
36
|
|
|
57
|
-
function
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
return 'psdk-horizontal-step-icon';
|
|
63
|
-
}
|
|
37
|
+
function _getAutoFlexClass(currentStep): string {
|
|
38
|
+
const currentStepIndex = arNavigationSteps.findIndex(step => step.ID === currentStep?.ID);
|
|
39
|
+
const totalSteps = arNavigationSteps.length;
|
|
40
|
+
const lastStep = arNavigationSteps[totalSteps - 1];
|
|
64
41
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
42
|
+
// Apply flex-auto class if current step is active OR if current step is second-to-last and the last step is active
|
|
43
|
+
const isCurrentStepActive = currentStep.visited_status === 'current';
|
|
44
|
+
const isSecondToLastWithActiveLastStep = currentStepIndex === totalSteps - 2 && lastStep?.visited_status === 'current';
|
|
69
45
|
|
|
70
|
-
return '
|
|
46
|
+
return isCurrentStepActive || isSecondToLastWithActiveLastStep ? 'flex-auto' : '';
|
|
71
47
|
}
|
|
72
48
|
|
|
73
|
-
function
|
|
74
|
-
return index
|
|
49
|
+
function isLastStep(index: number): boolean {
|
|
50
|
+
return index === arNavigationSteps.length - 1;
|
|
75
51
|
}
|
|
76
52
|
|
|
77
53
|
function buttonPress(sAction: string, sButtonType: string) {
|
|
@@ -86,13 +62,13 @@ export default function MultiStep(props: PropsWithChildren<MultiStepProps>) {
|
|
|
86
62
|
return (
|
|
87
63
|
<React.Fragment key={mainStep.actionID}>
|
|
88
64
|
<div className='psdk-vertical-step'>
|
|
89
|
-
<div className=
|
|
90
|
-
<div className={
|
|
65
|
+
<div className={`psdk-vertical-step-header ${mainStep.visited_status}`}>
|
|
66
|
+
<div className={`psdk-vertical-step-icon`}>
|
|
91
67
|
<div className='psdk-vertical-step-icon-content'>
|
|
92
68
|
<span>{index + 1}</span>
|
|
93
69
|
</div>
|
|
94
70
|
</div>
|
|
95
|
-
<div className={
|
|
71
|
+
<div className='psdk-vertical-step-label'>{mainStep.visited_status === 'current' && mainStep.name}</div>
|
|
96
72
|
</div>
|
|
97
73
|
<div className={_getVBodyClass(index)}>
|
|
98
74
|
{mainStep?.steps && (
|
|
@@ -122,9 +98,11 @@ export default function MultiStep(props: PropsWithChildren<MultiStepProps>) {
|
|
|
122
98
|
</ul>
|
|
123
99
|
)}
|
|
124
100
|
{!mainStep?.steps && mainStep.visited_status === 'current' && (
|
|
125
|
-
<
|
|
126
|
-
{
|
|
127
|
-
|
|
101
|
+
<div style={{ paddingLeft: 20 }}>
|
|
102
|
+
<AssignmentCard getPConnect={getPConnect} itemKey={itemKey} actionButtons={actionButtons} onButtonPress={buttonPress}>
|
|
103
|
+
{children}
|
|
104
|
+
</AssignmentCard>
|
|
105
|
+
</div>
|
|
128
106
|
)}
|
|
129
107
|
</div>
|
|
130
108
|
</div>
|
|
@@ -138,19 +116,15 @@ export default function MultiStep(props: PropsWithChildren<MultiStepProps>) {
|
|
|
138
116
|
{arNavigationSteps.map((mainStep, index) => {
|
|
139
117
|
return (
|
|
140
118
|
<React.Fragment key={mainStep.actionID}>
|
|
141
|
-
<div className=
|
|
142
|
-
<div className=
|
|
119
|
+
<div className={`psdk-horizontal-step-header ${mainStep.visited_status}`}>
|
|
120
|
+
<div className='psdk-horizontal-step-icon'>
|
|
143
121
|
<div className='psdk-horizontal-step-icon-content'>
|
|
144
122
|
<span>{index + 1}</span>
|
|
145
123
|
</div>
|
|
146
124
|
</div>
|
|
147
|
-
<div className={
|
|
148
|
-
<div className='psdk-horizontal-step-text-label' id='selected-label'>
|
|
149
|
-
{mainStep.name}
|
|
150
|
-
</div>
|
|
151
|
-
</div>
|
|
125
|
+
<div className='psdk-horizontal-step-label'>{mainStep.visited_status === 'current' && mainStep.name}</div>
|
|
152
126
|
</div>
|
|
153
|
-
{
|
|
127
|
+
{!isLastStep(index) && <div className={`psdk-horizontal-step-line ${_getAutoFlexClass(mainStep)}`} />}
|
|
154
128
|
</React.Fragment>
|
|
155
129
|
);
|
|
156
130
|
})}
|
package/lib/infra/View/View.tsx
CHANGED
|
@@ -81,7 +81,7 @@ export default function AppShell(props: PropsWithChildren<AppShellProps>) {
|
|
|
81
81
|
const classes = useStyles();
|
|
82
82
|
const actionsAPI = pConn.getActionsApi();
|
|
83
83
|
const localeReference = pConn.getValue('.pyLocaleReference', ''); // 2nd arg empty string until typedef marked correctly
|
|
84
|
-
const [imageBlobUrl, setImageBlobUrl] = useState<string | null>(null);
|
|
84
|
+
const [imageBlobUrl, setImageBlobUrl] = useState<string | Blob | null>(null);
|
|
85
85
|
// useState for appName and mapChildren - note these are ONLY updated once (on component mount!)
|
|
86
86
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
87
87
|
const [appName, setAppName] = useState('');
|
|
@@ -133,8 +133,8 @@ export default function AppShell(props: PropsWithChildren<AppShellProps>) {
|
|
|
133
133
|
}
|
|
134
134
|
}, []);
|
|
135
135
|
|
|
136
|
-
const [iconURL, setIconURL] = useState('');
|
|
137
|
-
const [fullIconURL, setFullIconURL] = useState('');
|
|
136
|
+
const [iconURL, setIconURL] = useState<string | Blob>('');
|
|
137
|
+
const [fullIconURL, setFullIconURL] = useState<string | Blob>('');
|
|
138
138
|
useEffect(() => {
|
|
139
139
|
// using the default icon then fetch it from the static folder (not auth involved)
|
|
140
140
|
if (
|
|
@@ -150,8 +150,7 @@ export default function AppShell(props: PropsWithChildren<AppShellProps>) {
|
|
|
150
150
|
// not using default icon to fetch it using the way which uses authentication
|
|
151
151
|
else {
|
|
152
152
|
PCore.getAssetLoader()
|
|
153
|
-
.
|
|
154
|
-
.then(blob => window.URL.createObjectURL(blob))
|
|
153
|
+
.getSvcImageUrl(portalLogo)
|
|
155
154
|
.then(data => {
|
|
156
155
|
setIconURL(data);
|
|
157
156
|
setFullIconURL(data);
|
|
@@ -165,8 +164,7 @@ export default function AppShell(props: PropsWithChildren<AppShellProps>) {
|
|
|
165
164
|
useEffect(() => {
|
|
166
165
|
if (imageKey && portalTemplate === 'wss') {
|
|
167
166
|
PCore.getAssetLoader()
|
|
168
|
-
.
|
|
169
|
-
.then(blob => window.URL.createObjectURL(blob))
|
|
167
|
+
.getSvcImageUrl(imageKey)
|
|
170
168
|
.then(imagePath => setImageBlobUrl(imagePath));
|
|
171
169
|
}
|
|
172
170
|
}, []);
|
|
@@ -1,95 +1,22 @@
|
|
|
1
|
-
import type { PropsWithChildren
|
|
1
|
+
import type { PropsWithChildren } from 'react';
|
|
2
2
|
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
3
3
|
import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
4
4
|
|
|
5
5
|
interface CaseSummaryProps extends PConnProps {
|
|
6
6
|
// If any, enter additional props that only exist on this component
|
|
7
|
+
arPrimaryFields: any[];
|
|
8
|
+
arSecondaryFields: any[];
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
export default function CaseSummary(props: PropsWithChildren<CaseSummaryProps>) {
|
|
10
12
|
// Get emitted components from map (so we can get any override that may exist)
|
|
11
13
|
const CaseSummaryFields = getComponentFromMap('CaseSummaryFields');
|
|
12
14
|
|
|
13
|
-
const {
|
|
14
|
-
|
|
15
|
-
const thePConn = getPConnect();
|
|
16
|
-
const theConfigProps: any = thePConn.getConfigProps();
|
|
17
|
-
// const { status, showStatus } = theConfigProps;
|
|
18
|
-
const status = theConfigProps.status;
|
|
19
|
-
const showStatus = theConfigProps.showStatus;
|
|
20
|
-
const localizedVal = PCore.getLocaleUtils().getLocaleValue;
|
|
21
|
-
const localeCategory = 'ModalContainer';
|
|
22
|
-
// from Constellation DX Components
|
|
23
|
-
// get the primary and secondary fields with the raw data (which has the non-resolved property values)
|
|
24
|
-
// const regionsRaw = getPConnect().getRawMetadata().children;
|
|
25
|
-
// const primaryFieldsRaw = regionsRaw[0].children;
|
|
26
|
-
// const secondaryFieldsRaw = regionsRaw[1].children;
|
|
27
|
-
|
|
28
|
-
// From other SDKs
|
|
29
|
-
// may want to move these into useEffect/useState combo
|
|
30
|
-
let arPrimaryFields: any[] = [];
|
|
31
|
-
let arSecondaryFields: any[] = [];
|
|
32
|
-
|
|
33
|
-
function prepareComponentInCaseSummary(pConnectMeta, getPConnect) {
|
|
34
|
-
const { config, children } = pConnectMeta;
|
|
35
|
-
const pConnect = getPConnect();
|
|
36
|
-
|
|
37
|
-
const caseSummaryComponentObject: any = {};
|
|
38
|
-
|
|
39
|
-
const { type } = pConnectMeta;
|
|
40
|
-
const createdComponent = pConnect.createComponent({
|
|
41
|
-
type,
|
|
42
|
-
children: children ? [...children] : [],
|
|
43
|
-
config: {
|
|
44
|
-
...config
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
caseSummaryComponentObject.value = createdComponent;
|
|
49
|
-
return caseSummaryComponentObject;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
function prepareCaseSummaryData(summaryFieldChildren) {
|
|
53
|
-
const convertChildrenToSummaryData = kid => {
|
|
54
|
-
return kid?.map((childItem, index) => {
|
|
55
|
-
const childMeta = childItem.getPConnect().meta;
|
|
56
|
-
const caseSummaryComponentObject = prepareComponentInCaseSummary(childMeta, childItem.getPConnect);
|
|
57
|
-
caseSummaryComponentObject.id = index + 1;
|
|
58
|
-
return caseSummaryComponentObject;
|
|
59
|
-
});
|
|
60
|
-
};
|
|
61
|
-
return summaryFieldChildren ? convertChildrenToSummaryData(summaryFieldChildren?.getChildren()) : undefined;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
for (const child of children as ReactElement[]) {
|
|
65
|
-
const childPConn = (child as ReactElement).props.getPConnect();
|
|
66
|
-
const childPConnData = childPConn.resolveConfigProps(childPConn.getRawMetadata());
|
|
67
|
-
if (childPConnData.name.toLowerCase() === 'primary fields') {
|
|
68
|
-
arPrimaryFields = childPConnData.children;
|
|
69
|
-
arPrimaryFields.forEach(field => {
|
|
70
|
-
if (field.config?.value && typeof field.config?.value === 'string') {
|
|
71
|
-
field.config.value = localizedVal(field.config.value, localeCategory);
|
|
72
|
-
}
|
|
73
|
-
});
|
|
74
|
-
} else if (childPConnData.name.toLowerCase() === 'secondary fields') {
|
|
75
|
-
const secondarySummaryFields = prepareCaseSummaryData(childPConn);
|
|
76
|
-
arSecondaryFields = childPConnData.children;
|
|
77
|
-
arSecondaryFields.forEach((field, index) => {
|
|
78
|
-
field.config.displayLabel = secondarySummaryFields[index]?.value?.props?.label;
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// At this point, should hand off to another component for layout and rendering
|
|
84
|
-
// of primary and secondary fields in the Case Summary
|
|
85
|
-
|
|
86
|
-
// debugging/investigation help
|
|
87
|
-
// console.log(`CaseSummary: arPrimaryFields: ${JSON.stringify(arPrimaryFields)}`);
|
|
88
|
-
// console.log(`CaseSummary: arSecondaryFields: ${JSON.stringify(arSecondaryFields)}`);
|
|
15
|
+
const { arPrimaryFields, arSecondaryFields } = props;
|
|
89
16
|
|
|
90
17
|
return (
|
|
91
18
|
<div id='CaseSummary'>
|
|
92
|
-
<CaseSummaryFields
|
|
19
|
+
<CaseSummaryFields theFields={arPrimaryFields} />
|
|
93
20
|
<CaseSummaryFields theFields={arSecondaryFields} />
|
|
94
21
|
</div>
|
|
95
22
|
);
|
|
@@ -9,6 +9,7 @@ import { Utils } from '@pega/react-sdk-components/lib/components/helpers/utils';
|
|
|
9
9
|
import StoreContext from '@pega/react-sdk-components/lib/bridge/Context/StoreContext';
|
|
10
10
|
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
11
11
|
import type { PConnProps } from '@pega/react-sdk-components/lib/types/PConnProps';
|
|
12
|
+
import { prepareCaseSummaryData } from '@pega/react-sdk-components/lib/components/template/utils';
|
|
12
13
|
|
|
13
14
|
interface CaseViewProps extends PConnProps {
|
|
14
15
|
// If any, enter additional props that only exist on this component
|
|
@@ -41,9 +42,6 @@ const useStyles = makeStyles(theme => ({
|
|
|
41
42
|
width: theme.spacing(8),
|
|
42
43
|
height: theme.spacing(8),
|
|
43
44
|
padding: theme.spacing(1)
|
|
44
|
-
},
|
|
45
|
-
caseViewIconImage: {
|
|
46
|
-
filter: 'var(--svg-color)'
|
|
47
45
|
}
|
|
48
46
|
}));
|
|
49
47
|
|
|
@@ -52,6 +50,7 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
52
50
|
const CaseViewActionsMenu = getComponentFromMap('CaseViewActionsMenu');
|
|
53
51
|
const VerticalTabs = getComponentFromMap('VerticalTabs');
|
|
54
52
|
const DeferLoad = getComponentFromMap('DeferLoad');
|
|
53
|
+
const CaseSummary = getComponentFromMap('CaseSummary');
|
|
55
54
|
|
|
56
55
|
const {
|
|
57
56
|
getPConnect,
|
|
@@ -59,12 +58,9 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
59
58
|
header,
|
|
60
59
|
subheader,
|
|
61
60
|
children = [],
|
|
62
|
-
|
|
63
|
-
showIconInHeader = true,
|
|
64
|
-
caseInfo: { availableActions = [], availableProcesses = [], hasNewAttachments, caseTypeID = '', caseTypeName = '' }
|
|
61
|
+
caseInfo: { availableActions = [], availableProcesses = [], hasNewAttachments, caseTypeID = '', caseTypeName = '', caseTypeIcon }
|
|
65
62
|
} = props;
|
|
66
63
|
const { lastUpdateCaseTime = getPConnect().getValue('caseInfo.lastUpdateTime') } = props;
|
|
67
|
-
|
|
68
64
|
const currentCaseID = props.caseInfo.ID;
|
|
69
65
|
let isComponentMounted = true;
|
|
70
66
|
const { displayOnlyFA } = useContext<any>(StoreContext);
|
|
@@ -84,9 +80,8 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
84
80
|
*/
|
|
85
81
|
function getChildRegionByName(inName: string): any {
|
|
86
82
|
for (const child of children as ReactElement[]) {
|
|
87
|
-
const theMetadataType: string = (child as ReactElement).props.getPConnect().getRawMetadata().type
|
|
88
|
-
const theMetadataName: string = (child as ReactElement).props.getPConnect().getRawMetadata().name
|
|
89
|
-
|
|
83
|
+
const theMetadataType: string = (child as ReactElement).props.getPConnect().getRawMetadata().type?.toLowerCase();
|
|
84
|
+
const theMetadataName: string = (child as ReactElement).props.getPConnect().getRawMetadata().name?.toLowerCase();
|
|
90
85
|
if (theMetadataType === 'region' && theMetadataName === inName) {
|
|
91
86
|
return child;
|
|
92
87
|
}
|
|
@@ -95,13 +90,23 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
95
90
|
return null;
|
|
96
91
|
}
|
|
97
92
|
|
|
98
|
-
const theSummaryRegion =
|
|
93
|
+
const theSummaryRegion = children && children[0];
|
|
94
|
+
|
|
95
|
+
const data = prepareCaseSummaryData(theSummaryRegion);
|
|
96
|
+
const primarySummaryFields = data.primarySummaryFields;
|
|
97
|
+
const secondarySummaryFields = data.secondarySummaryFields;
|
|
98
|
+
|
|
99
99
|
const theStagesRegion = getChildRegionByName('stages');
|
|
100
100
|
const theTodoRegion = getChildRegionByName('todo');
|
|
101
101
|
const theUtilitiesRegion = getChildRegionByName('utilities');
|
|
102
102
|
const theTabsRegion = getChildRegionByName('tabs');
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
let iconForCaseType = caseTypeIcon ? caseTypeIcon.replace('pi pi-', '') : icon;
|
|
105
|
+
|
|
106
|
+
if (!iconForCaseType || iconForCaseType.includes('.')) {
|
|
107
|
+
iconForCaseType = 'polaris-solid';
|
|
108
|
+
}
|
|
109
|
+
const caseSvgIconUrl = Utils.getImageSrc(iconForCaseType, Utils.getSDKStaticConentUrl());
|
|
105
110
|
|
|
106
111
|
const [activeVertTab, setActiveVertTab] = useState(0);
|
|
107
112
|
|
|
@@ -109,7 +114,7 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
109
114
|
// const tmpLoadData2 = { config: { label: "Case History", name: "CaseHistory" }, type: "DeferLoad" };
|
|
110
115
|
|
|
111
116
|
// Extract the tabs we need to display from theTabsRegion (one tab per entry in theTabsRegionChildren)
|
|
112
|
-
const theTabsRegionChildren = theTabsRegion
|
|
117
|
+
const theTabsRegionChildren = theTabsRegion?.props.getPConnect().getChildren();
|
|
113
118
|
|
|
114
119
|
// vertTabInfo is sent to VerticalTabs component
|
|
115
120
|
const vertTabInfo: object[] = [];
|
|
@@ -226,13 +231,13 @@ export default function CaseView(props: PropsWithChildren<CaseViewProps>) {
|
|
|
226
231
|
}
|
|
227
232
|
avatar={
|
|
228
233
|
<Avatar className={classes.caseViewIconBox} variant='square'>
|
|
229
|
-
<img src={
|
|
234
|
+
<img src={caseSvgIconUrl} />
|
|
230
235
|
</Avatar>
|
|
231
236
|
}
|
|
232
237
|
/>
|
|
233
238
|
{getActionButtonsHtml()}
|
|
234
239
|
<Divider />
|
|
235
|
-
{
|
|
240
|
+
<CaseSummary arPrimaryFields={primarySummaryFields} arSecondaryFields={secondarySummaryFields}></CaseSummary>
|
|
236
241
|
<Divider />
|
|
237
242
|
{vertTabInfo.length > 1 && <VerticalTabs tabconfig={vertTabInfo} />}
|
|
238
243
|
</Card>
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { useMemo, Children } from 'react';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
3
|
+
import { Grid2 } from '@mui/material';
|
|
4
|
+
import { getComponentFromMap } from '@pega/react-sdk-components/lib/bridge/helpers/sdk_component_map';
|
|
5
|
+
|
|
6
|
+
export interface CommonPageProps {
|
|
7
|
+
/** Page title */
|
|
8
|
+
title: string;
|
|
9
|
+
|
|
10
|
+
/** Page icon */
|
|
11
|
+
icon: string;
|
|
12
|
+
|
|
13
|
+
/** Region children */
|
|
14
|
+
children: ReactNode | ReactNode[];
|
|
15
|
+
|
|
16
|
+
/** Dynamic page pconnect object */
|
|
17
|
+
// getPConnect: () => PConnect;
|
|
18
|
+
|
|
19
|
+
/** Enable GetNextWork in page */
|
|
20
|
+
enableGetNextWork?: boolean;
|
|
21
|
+
|
|
22
|
+
/** GetAI coaches configured in page */
|
|
23
|
+
// coaches?: GenAICoach[];
|
|
24
|
+
|
|
25
|
+
/** Locale reference */
|
|
26
|
+
localeReference: string;
|
|
27
|
+
}
|
|
28
|
+
interface DefaultPageProps extends CommonPageProps {
|
|
29
|
+
/** Default page layout one or two columns */
|
|
30
|
+
layout: 'one-column' | 'two-column' | 'wide-narrow' | 'narrow-wide' | 'dynamic';
|
|
31
|
+
|
|
32
|
+
/** Flag to enable banner/hero */
|
|
33
|
+
enableBanner?: boolean;
|
|
34
|
+
|
|
35
|
+
/** Banner - Heading displayed */
|
|
36
|
+
heading?: string;
|
|
37
|
+
|
|
38
|
+
/** Banner - Message displayed */
|
|
39
|
+
message?: string;
|
|
40
|
+
|
|
41
|
+
/** Banner - Theme of the image */
|
|
42
|
+
imageTheme?: 'light' | 'dark' | undefined;
|
|
43
|
+
|
|
44
|
+
/** Banner - Background image */
|
|
45
|
+
backgroundImage?: string;
|
|
46
|
+
|
|
47
|
+
/** Banner - Background color */
|
|
48
|
+
backgroundColor?: string;
|
|
49
|
+
|
|
50
|
+
/** Banner - Tint image */
|
|
51
|
+
tintImage?: boolean;
|
|
52
|
+
|
|
53
|
+
/** Flag to enable layout model */
|
|
54
|
+
// layoutModel?: GridLayoutModel | undefined;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const COLUMNS_WIDTHS = {
|
|
58
|
+
'one-column': [12],
|
|
59
|
+
'two-column': [6, 6],
|
|
60
|
+
'narrow-wide': [4, 8],
|
|
61
|
+
'wide-narrow': [8, 4]
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export default function DefaultPage({
|
|
65
|
+
layout = 'one-column',
|
|
66
|
+
children,
|
|
67
|
+
enableBanner,
|
|
68
|
+
heading = '',
|
|
69
|
+
message = '',
|
|
70
|
+
imageTheme,
|
|
71
|
+
backgroundImage = '',
|
|
72
|
+
backgroundColor = '',
|
|
73
|
+
tintImage
|
|
74
|
+
}: DefaultPageProps) {
|
|
75
|
+
const Banner = getComponentFromMap('Banner');
|
|
76
|
+
|
|
77
|
+
const childArray = useMemo(() => {
|
|
78
|
+
return Children.toArray(children);
|
|
79
|
+
}, [children]);
|
|
80
|
+
|
|
81
|
+
if (enableBanner) {
|
|
82
|
+
return (
|
|
83
|
+
<Banner
|
|
84
|
+
variant={layout === 'one-column' ? 'two-column' : layout}
|
|
85
|
+
a={[childArray[0]]}
|
|
86
|
+
b={[childArray[1]]}
|
|
87
|
+
banner={{
|
|
88
|
+
variant: imageTheme,
|
|
89
|
+
backgroundColor,
|
|
90
|
+
title: heading,
|
|
91
|
+
message,
|
|
92
|
+
backgroundImage,
|
|
93
|
+
tintImage
|
|
94
|
+
}}
|
|
95
|
+
/>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
return (
|
|
100
|
+
<Grid2 container spacing={1}>
|
|
101
|
+
{childArray.map((child, index) => (
|
|
102
|
+
<Grid2 key={index} size={COLUMNS_WIDTHS[layout][index]}>
|
|
103
|
+
{child}
|
|
104
|
+
</Grid2>
|
|
105
|
+
))}
|
|
106
|
+
</Grid2>
|
|
107
|
+
);
|
|
108
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './DefaultPage';
|