@openlettermarketing/olc-react-sdk 2.1.4 → 2.1.5-beta.2
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/.eslintignore +1 -0
- package/.eslintrc.cjs +18 -0
- package/.eslintrc.yml +47 -0
- package/.github/workflows/publish-beta.yml +154 -0
- package/.github/workflows/publish-production.yml +143 -0
- package/.prettierignore +3 -0
- package/.prettierrc.yml +5 -0
- package/CHANGELOG.md +4 -0
- package/babel.config.json +10 -0
- package/build/index.js +82 -82
- package/build/index.js.map +1 -1
- package/build/types/version.d.ts +1 -1
- package/examples/.eslintrc.yml +4 -0
- package/index.html +18 -0
- package/package.json +1 -1
- package/public/vite.svg +1 -0
- package/src/App.tsx +209 -0
- package/src/assets/Fonts/Lexi-Regular.ttf +0 -0
- package/src/assets/images/create-template/prebuilt.svg +13 -0
- package/src/assets/images/create-template/scratch.svg +4 -0
- package/src/assets/images/input/cancel.tsx +20 -0
- package/src/assets/images/input/search.tsx +20 -0
- package/src/assets/images/input/select-cancel.tsx +17 -0
- package/src/assets/images/modal-icons/add.tsx +36 -0
- package/src/assets/images/modal-icons/cancel-file.tsx +12 -0
- package/src/assets/images/modal-icons/cancel-input.tsx +13 -0
- package/src/assets/images/modal-icons/cancel.tsx +35 -0
- package/src/assets/images/modal-icons/close-new.svg +3 -0
- package/src/assets/images/modal-icons/confirm-close-icon.tsx +14 -0
- package/src/assets/images/modal-icons/confirm-new.tsx +22 -0
- package/src/assets/images/modal-icons/confirm.svg +12 -0
- package/src/assets/images/modal-icons/cross.tsx +23 -0
- package/src/assets/images/modal-icons/del.tsx +19 -0
- package/src/assets/images/modal-icons/design-icon.tsx +22 -0
- package/src/assets/images/modal-icons/doc.tsx +43 -0
- package/src/assets/images/modal-icons/docx.tsx +43 -0
- package/src/assets/images/modal-icons/envelope-icon.tsx +26 -0
- package/src/assets/images/modal-icons/info.tsx +19 -0
- package/src/assets/images/modal-icons/jpeg.tsx +43 -0
- package/src/assets/images/modal-icons/jpg.tsx +43 -0
- package/src/assets/images/modal-icons/modal-cros.svg +4 -0
- package/src/assets/images/modal-icons/modal-cross.tsx +37 -0
- package/src/assets/images/modal-icons/new-cancel.tsx +11 -0
- package/src/assets/images/modal-icons/order-download.tsx +42 -0
- package/src/assets/images/modal-icons/pdf.tsx +51 -0
- package/src/assets/images/modal-icons/png.tsx +43 -0
- package/src/assets/images/modal-icons/save.tsx +23 -0
- package/src/assets/images/modal-icons/template-copy.tsx +25 -0
- package/src/assets/images/modal-icons/tool-cancel.tsx +25 -0
- package/src/assets/images/products/bi-new.svg +23 -0
- package/src/assets/images/products/left-arrow.svg +17 -0
- package/src/assets/images/products/personal-new.tsx +31 -0
- package/src/assets/images/products/postcard-new.tsx +27 -0
- package/src/assets/images/products/professional-new.tsx +24 -0
- package/src/assets/images/products/real-new.tsx +30 -0
- package/src/assets/images/products/right-arrow.svg +17 -0
- package/src/assets/images/products/snap-new.svg +31 -0
- package/src/assets/images/templates/actions.svg +3 -0
- package/src/assets/images/templates/address-block-icon.tsx +62 -0
- package/src/assets/images/templates/archive.svg +3 -0
- package/src/assets/images/templates/arrow-down.tsx +27 -0
- package/src/assets/images/templates/back-arrow.tsx +19 -0
- package/src/assets/images/templates/bi-fold-self-mailers.tsx +28 -0
- package/src/assets/images/templates/check.svg +3 -0
- package/src/assets/images/templates/code.svg +10 -0
- package/src/assets/images/templates/content-copy-icon.tsx +24 -0
- package/src/assets/images/templates/custom-add-on-icon.tsx +18 -0
- package/src/assets/images/templates/custom-qr-section-icon.tsx +9 -0
- package/src/assets/images/templates/custom-template.tsx +23 -0
- package/src/assets/images/templates/designer.tsx +43 -0
- package/src/assets/images/templates/dot.tsx +22 -0
- package/src/assets/images/templates/download-v2.svg +4 -0
- package/src/assets/images/templates/download.svg +4 -0
- package/src/assets/images/templates/dummy-template.tsx +76 -0
- package/src/assets/images/templates/dynamic-field.tsx +119 -0
- package/src/assets/images/templates/edit-pencil-icon.tsx +21 -0
- package/src/assets/images/templates/edit.svg +3 -0
- package/src/assets/images/templates/epo-icon.tsx +16 -0
- package/src/assets/images/templates/field.tsx +29 -0
- package/src/assets/images/templates/gsv-icon.tsx +31 -0
- package/src/assets/images/templates/info-icon.tsx +37 -0
- package/src/assets/images/templates/left-arrow.svg +17 -0
- package/src/assets/images/templates/pencil.svg +3 -0
- package/src/assets/images/templates/personal-letter.tsx +53 -0
- package/src/assets/images/templates/postcard.tsx +32 -0
- package/src/assets/images/templates/professional-letter.tsx +53 -0
- package/src/assets/images/templates/qr-code.tsx +13 -0
- package/src/assets/images/templates/real-penned-letters.tsx +57 -0
- package/src/assets/images/templates/right-arrow.svg +17 -0
- package/src/assets/images/templates/size-image-lg.tsx +20 -0
- package/src/assets/images/templates/size-image-mid.tsx +20 -0
- package/src/assets/images/templates/size-image-xl.tsx +20 -0
- package/src/assets/images/templates/size-image.tsx +20 -0
- package/src/assets/images/templates/snap-pack.tsx +67 -0
- package/src/assets/images/templates/template-default-design.tsx +21 -0
- package/src/assets/images/templates/trash-upload.svg +3 -0
- package/src/assets/images/templates/trash.svg +3 -0
- package/src/assets/images/templates/tri-fold-self-mailers.tsx +93 -0
- package/src/assets/images/templates/upload-image.svg +10 -0
- package/src/assets/images/templates/x.svg +3 -0
- package/src/assets/images/thumbnails/one.svg +9 -0
- package/src/assets/images/tooltip/tool-arrow.tsx +25 -0
- package/src/components/CreateTemplate/V2/index.tsx +525 -0
- package/src/components/CreateTemplate/V2/styles.scss +372 -0
- package/src/components/CreateTemplate/index.tsx +508 -0
- package/src/components/CreateTemplate/styles.scss +404 -0
- package/src/components/GenericUIBlocks/Button/index.tsx +54 -0
- package/src/components/GenericUIBlocks/Button/styles.scss +43 -0
- package/src/components/GenericUIBlocks/CircularProgress/index.tsx +18 -0
- package/src/components/GenericUIBlocks/CircularProgress/styles.scss +93 -0
- package/src/components/GenericUIBlocks/CustomTooltip/index.tsx +88 -0
- package/src/components/GenericUIBlocks/CustomTooltip/styles.scss +19 -0
- package/src/components/GenericUIBlocks/Dialog/V2/index.tsx +227 -0
- package/src/components/GenericUIBlocks/Dialog/V2/styles.scss +289 -0
- package/src/components/GenericUIBlocks/Dialog/index.tsx +185 -0
- package/src/components/GenericUIBlocks/Dialog/styles.scss +227 -0
- package/src/components/GenericUIBlocks/Divider/index.tsx +12 -0
- package/src/components/GenericUIBlocks/Divider/styles.scss +7 -0
- package/src/components/GenericUIBlocks/GeneralSelect/index.tsx +114 -0
- package/src/components/GenericUIBlocks/GeneralSelect/styles.scss +406 -0
- package/src/components/GenericUIBlocks/GeneralTooltip/index.tsx +25 -0
- package/src/components/GenericUIBlocks/GeneralTooltip/styles.scss +20 -0
- package/src/components/GenericUIBlocks/GenericSnackbar/Toast/index.tsx +91 -0
- package/src/components/GenericUIBlocks/GenericSnackbar/Toast/styles.scss +92 -0
- package/src/components/GenericUIBlocks/Grid/index.tsx +82 -0
- package/src/components/GenericUIBlocks/Input/index.tsx +269 -0
- package/src/components/GenericUIBlocks/Input/styles.scss +332 -0
- package/src/components/GenericUIBlocks/Tabs/index.tsx +71 -0
- package/src/components/GenericUIBlocks/Tabs/styles.scss +42 -0
- package/src/components/GenericUIBlocks/Typography/index.tsx +18 -0
- package/src/components/GenericUIBlocks/Typography/styles.scss +27 -0
- package/src/components/SidePanel/CustomAddOns/index.tsx +342 -0
- package/src/components/SidePanel/CustomAddOns/styles.scss +86 -0
- package/src/components/SidePanel/CustomBlockColors/index.tsx +211 -0
- package/src/components/SidePanel/CustomBlockColors/styles.scss +80 -0
- package/src/components/SidePanel/CustomFields/customFieldSection.tsx +547 -0
- package/src/components/SidePanel/CustomFields/styles.scss +64 -0
- package/src/components/SidePanel/CustomQRCode/V2/QRCodeModal/index.tsx +172 -0
- package/src/components/SidePanel/CustomQRCode/V2/QRCodeModal/styles.scss +46 -0
- package/src/components/SidePanel/CustomQRCode/index.tsx +1070 -0
- package/src/components/SidePanel/CustomQRCode/styles.scss +149 -0
- package/src/components/SidePanel/CustomUploads/V2/index.tsx +542 -0
- package/src/components/SidePanel/CustomUploads/V2/styles.scss +267 -0
- package/src/components/SidePanel/CustomUploads/index.tsx +301 -0
- package/src/components/SidePanel/Templates/ModalGallery/HireDesigner/index.tsx +424 -0
- package/src/components/SidePanel/Templates/ModalGallery/HireDesigner/styles.scss +180 -0
- package/src/components/SidePanel/Templates/ModalGallery/V2/index.tsx +235 -0
- package/src/components/SidePanel/Templates/ModalGallery/V2/styles.scss +244 -0
- package/src/components/SidePanel/Templates/ModalGallery/index.tsx +231 -0
- package/src/components/SidePanel/Templates/SideBarGallery/index.tsx +233 -0
- package/src/components/SidePanel/Templates/SideBarGallery/styles.scss +152 -0
- package/src/components/SidePanel/Templates/TemplatesCard/V2/index.tsx +149 -0
- package/src/components/SidePanel/Templates/TemplatesCard/V2/styles.scss +156 -0
- package/src/components/SidePanel/Templates/TemplatesCard/index.tsx +160 -0
- package/src/components/SidePanel/Templates/TemplatesCard/styles.scss +98 -0
- package/src/components/SidePanel/Templates/customTemplateSection.tsx +793 -0
- package/src/components/SidePanel/Templates/styles.scss +244 -0
- package/src/components/SidePanel/index.tsx +160 -0
- package/src/components/TemplateBuilder/index.tsx +585 -0
- package/src/components/TemplateBuilder/styles.scss +100 -0
- package/src/components/TemplateTypes/index.tsx +96 -0
- package/src/components/TemplateTypes/styles.scss +91 -0
- package/src/components/TopNavigation/ConfirmNavigateDialog/index.tsx +81 -0
- package/src/components/TopNavigation/ConfirmNavigateDialog/styles.scss +123 -0
- package/src/components/TopNavigation/DuplicateTemplateModal.tsx +103 -0
- package/src/components/TopNavigation/EditTemplateNameModel/index.tsx +71 -0
- package/src/components/TopNavigation/EditTemplateNameModel/styles.scss +88 -0
- package/src/components/TopNavigation/SaveTemplateModel/index.tsx +201 -0
- package/src/components/TopNavigation/SaveTemplateModel/styles.scss +128 -0
- package/src/components/TopNavigation/index.tsx +938 -0
- package/src/components/TopNavigation/styles.scss +303 -0
- package/src/importMeta.d.ts +31 -0
- package/src/index.scss +131 -0
- package/src/index.tsx +238 -0
- package/src/libs/test.ts +7 -0
- package/src/redux/actions/action-types.ts +52 -0
- package/src/redux/actions/customQRCodeActions.ts +54 -0
- package/src/redux/actions/snackbarActions.ts +16 -0
- package/src/redux/actions/templateActions.ts +236 -0
- package/src/redux/reducers/customFieldReducer.ts +99 -0
- package/src/redux/reducers/customQRCodeReducer.ts +58 -0
- package/src/redux/reducers/index.ts +15 -0
- package/src/redux/reducers/snackbarReducer.ts +40 -0
- package/src/redux/reducers/templateReducer.ts +485 -0
- package/src/redux/store.ts +18 -0
- package/src/styles/colors.scss +61 -0
- package/src/test/mocks.js +89 -0
- package/src/test/setupJest.js +1 -0
- package/src/utils/api.ts +36 -0
- package/src/utils/constants.ts +182 -0
- package/src/utils/customStyles.ts +45 -0
- package/src/utils/fetchWrapper.ts +73 -0
- package/src/utils/fonts.json +1597 -0
- package/src/utils/helper.ts +205 -0
- package/src/utils/local-storage.ts +15 -0
- package/src/utils/message.ts +162 -0
- package/src/utils/products.ts +186 -0
- package/src/utils/template-builder.ts +328 -0
- package/src/utils/templateIdentifierArea/biFold.ts +107 -0
- package/src/utils/templateIdentifierArea/index.ts +35 -0
- package/src/utils/templateIdentifierArea/personal.ts +107 -0
- package/src/utils/templateIdentifierArea/postCards.ts +163 -0
- package/src/utils/templateIdentifierArea/professional.ts +125 -0
- package/src/utils/templateIdentifierArea/snapPack.ts +107 -0
- package/src/utils/templateIdentifierArea/triFold.ts +107 -0
- package/src/utils/templateRestrictedArea/biFold.ts +329 -0
- package/src/utils/templateRestrictedArea/nonWindowProfessional.ts +90 -0
- package/src/utils/templateRestrictedArea/personal.ts +90 -0
- package/src/utils/templateRestrictedArea/postCard.ts +334 -0
- package/src/utils/templateRestrictedArea/postCardJumbo.tsx +408 -0
- package/src/utils/templateRestrictedArea/professional.ts +318 -0
- package/src/utils/templateRestrictedArea/realPenned.ts +233 -0
- package/src/utils/templateRestrictedArea/snapPack.ts +1009 -0
- package/src/utils/templateRestrictedArea/triFold.ts +330 -0
- package/src/utils/templateSafetyBorders/biFold.ts +91 -0
- package/src/utils/templateSafetyBorders/index.ts +43 -0
- package/src/utils/templateSafetyBorders/personal.ts +41 -0
- package/src/utils/templateSafetyBorders/postCards.ts +259 -0
- package/src/utils/templateSafetyBorders/professional.ts +78 -0
- package/src/utils/templateSafetyBorders/snapPack.ts +165 -0
- package/src/utils/templateSafetyBorders/triFold.ts +114 -0
- package/src/utils/templateSafetyBorders/types.d.ts +68 -0
- package/src/utils/types.ts +12 -0
- package/src/v2Theme.scss +142 -0
- package/tsconfig.json +29 -0
- package/tsconfig.node.json +12 -0
- package/update-version.js +23 -0
- package/version.js +1 -0
- package/vite.config.ts +8 -0
- package/webpack.config.js +80 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import React, { useMemo, useState, useEffect } from 'react';
|
|
2
|
+
|
|
3
|
+
// Hooks
|
|
4
|
+
import { useDispatch, useSelector } from 'react-redux';
|
|
5
|
+
import { RootState } from '~/redux/reducers';
|
|
6
|
+
import { AppDispatch } from '~/redux/store';
|
|
7
|
+
|
|
8
|
+
// Actions
|
|
9
|
+
import { SET_ROS_OFFER_PERCENTAGE } from '../../../redux/actions/action-types';
|
|
10
|
+
import { failure } from '../../../redux/actions/snackbarActions';
|
|
11
|
+
|
|
12
|
+
// Utils
|
|
13
|
+
import { MESSAGES } from '../../../utils/message';
|
|
14
|
+
import { getEnv, getIsSandbox, getPublicApiKey } from '../../../utils/helper';
|
|
15
|
+
import { DEMO_PO_GENERATOR_URL, PROD_PO_GENERATOR_URL, STAGE_PO_GENERATOR_URL } from '../../../utils/constants';
|
|
16
|
+
|
|
17
|
+
// Components
|
|
18
|
+
import Dialog from '../../GenericUIBlocks/Dialog';
|
|
19
|
+
import DialogV2 from '../../GenericUIBlocks/Dialog/V2';
|
|
20
|
+
import Input from '../../GenericUIBlocks/Input';
|
|
21
|
+
|
|
22
|
+
// Icons
|
|
23
|
+
import Save from '../../../assets/images/modal-icons/save';
|
|
24
|
+
|
|
25
|
+
// Styles
|
|
26
|
+
import './styles.scss';
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Renders a modal dialog for deleting a template.
|
|
31
|
+
*
|
|
32
|
+
* @param {function} handleSave - Callback function to handle the save action.
|
|
33
|
+
* @param {function} handleClose - Callback function to handle the close action.
|
|
34
|
+
* @param {boolean} open - Boolean value indicating whether the modal is open or not.
|
|
35
|
+
* @returns {JSX.Element} The delete template modal component.
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
const saveDialogStyles = {
|
|
39
|
+
maxWidth: '433px',
|
|
40
|
+
minHeight: '280px',
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
interface SaveTemplateModelProps {
|
|
44
|
+
open: boolean;
|
|
45
|
+
loading: boolean;
|
|
46
|
+
handleClose: () => void;
|
|
47
|
+
handleSave: () => void;
|
|
48
|
+
store: any; // StoreType if available
|
|
49
|
+
allowedAddOns?: any;
|
|
50
|
+
currentTheme?: string | null | undefined;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const SaveTemplateModel: React.FC<SaveTemplateModelProps> = ({
|
|
54
|
+
handleSave,
|
|
55
|
+
handleClose,
|
|
56
|
+
open,
|
|
57
|
+
loading,
|
|
58
|
+
store,
|
|
59
|
+
allowedAddOns,
|
|
60
|
+
currentTheme,
|
|
61
|
+
}) => {
|
|
62
|
+
const [customRosInput, setCustomRosInput] = useState("");
|
|
63
|
+
|
|
64
|
+
const dispatch: AppDispatch = useDispatch();
|
|
65
|
+
|
|
66
|
+
const currentOfferPercentage = useSelector(
|
|
67
|
+
(state: RootState) => state.templates.offerPercentage
|
|
68
|
+
) as string;
|
|
69
|
+
|
|
70
|
+
const propertyOfferGeneratorURL: string =
|
|
71
|
+
(getEnv() === 'local' || getEnv() === 'staging'
|
|
72
|
+
? STAGE_PO_GENERATOR_URL
|
|
73
|
+
: getIsSandbox()
|
|
74
|
+
? DEMO_PO_GENERATOR_URL
|
|
75
|
+
: PROD_PO_GENERATOR_URL) + `?apiKey=${getPublicApiKey()}`;
|
|
76
|
+
|
|
77
|
+
const enableCustomRos = allowedAddOns?.includes('custom_property_offer');
|
|
78
|
+
|
|
79
|
+
const rosFieldExists = useMemo(() => {
|
|
80
|
+
if (!enableCustomRos || !store?.pages) return false;
|
|
81
|
+
for (const page of store.pages) {
|
|
82
|
+
for (const el of page.children) {
|
|
83
|
+
if (el.text === '{{ROS.PROPERTY_OFFER}}' ) {
|
|
84
|
+
return true
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
return false;
|
|
89
|
+
}, [enableCustomRos, store]);
|
|
90
|
+
|
|
91
|
+
const handleCustomRosChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
92
|
+
const val = e.target.value;
|
|
93
|
+
if (val === "") {
|
|
94
|
+
setCustomRosInput("");
|
|
95
|
+
dispatch({ type: SET_ROS_OFFER_PERCENTAGE, payload: "" });
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
const num = Number(val);
|
|
99
|
+
if (!isNaN(num) && num >= 1 && num <= 100) {
|
|
100
|
+
setCustomRosInput(val);
|
|
101
|
+
dispatch({ type: SET_ROS_OFFER_PERCENTAGE, payload: val });
|
|
102
|
+
} else {
|
|
103
|
+
dispatch(failure("Please enter a number between 1 and 100"));
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
useEffect(() => {
|
|
108
|
+
if (!enableCustomRos) return;
|
|
109
|
+
setCustomRosInput(currentOfferPercentage || "");
|
|
110
|
+
}, []);
|
|
111
|
+
|
|
112
|
+
// Custom content for the dialog
|
|
113
|
+
const customContent = (
|
|
114
|
+
enableCustomRos ? (
|
|
115
|
+
<div style={{ display: "flex", flexDirection: "column", gap: 0, marginBottom: 32 }}>
|
|
116
|
+
<div>
|
|
117
|
+
{MESSAGES.TEMPLATE.SAVE.PARAGRAPH}
|
|
118
|
+
</div>
|
|
119
|
+
<div style={{ marginTop: 10, marginBottom: 35}}>
|
|
120
|
+
<label style={{ fontWeight: 500, marginBottom: 4, display: "block", textAlign: 'center' }}>
|
|
121
|
+
Confirm Custom ROS Value
|
|
122
|
+
</label>
|
|
123
|
+
<div className='plain-text' style={{
|
|
124
|
+
textAlign: 'center',
|
|
125
|
+
}}>
|
|
126
|
+
<a href={propertyOfferGeneratorURL} target='_blank'
|
|
127
|
+
style={{
|
|
128
|
+
color: 'var(--primary-color)',
|
|
129
|
+
}}
|
|
130
|
+
onClick={(e) => {
|
|
131
|
+
e.stopPropagation()
|
|
132
|
+
}}
|
|
133
|
+
>
|
|
134
|
+
{MESSAGES.TEMPLATE.CUSTOM_ADD_ONS.PROPERTY_OFFER.CUSTOM.CLICK}
|
|
135
|
+
</a>{' '}
|
|
136
|
+
{MESSAGES.TEMPLATE.CUSTOM_ADD_ONS.PROPERTY_OFFER.CUSTOM.CSV_IMPORT}
|
|
137
|
+
</div>
|
|
138
|
+
<Input
|
|
139
|
+
type="number"
|
|
140
|
+
onlyNumber={true}
|
|
141
|
+
placeholder="Type in a Number between 1-100"
|
|
142
|
+
value={customRosInput}
|
|
143
|
+
onChange={handleCustomRosChange}
|
|
144
|
+
/>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
) : null
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
// Custom submit handler with validation
|
|
151
|
+
const handleSubmit = () => {
|
|
152
|
+
if (enableCustomRos && rosFieldExists && !customRosInput) {
|
|
153
|
+
dispatch(failure("Please enter the offer percentage before saving the template"))
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
handleSave();
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
return (
|
|
160
|
+
currentTheme === 'v2' ?
|
|
161
|
+
<DialogV2
|
|
162
|
+
icon={<Save fill="var(--primary-color)" />}
|
|
163
|
+
open={open}
|
|
164
|
+
loading={loading}
|
|
165
|
+
handleClose={handleClose}
|
|
166
|
+
title={MESSAGES.TEMPLATE.SAVE.TITLE}
|
|
167
|
+
subHeading={MESSAGES.TEMPLATE.SAVE.HEADING}
|
|
168
|
+
// Show custom content if rosCustomValue exists, else default description
|
|
169
|
+
description={enableCustomRos && rosFieldExists ? undefined : MESSAGES.TEMPLATE.SAVE.PARAGRAPH}
|
|
170
|
+
cancelText={MESSAGES.TEMPLATE.SAVE.CANCEL_BUTTON}
|
|
171
|
+
submitText={MESSAGES.TEMPLATE.SAVE.SUBMIT_BUTTON}
|
|
172
|
+
customStyles={{...saveDialogStyles, padding: '40px', maxWidth: enableCustomRos && rosFieldExists ? '620px' : '550px'}}
|
|
173
|
+
onSubmit={handleSubmit}
|
|
174
|
+
onCancel={handleClose}
|
|
175
|
+
currentTheme="v2"
|
|
176
|
+
isGallery={false}
|
|
177
|
+
>
|
|
178
|
+
{enableCustomRos && rosFieldExists && customContent}
|
|
179
|
+
</DialogV2>
|
|
180
|
+
:
|
|
181
|
+
<Dialog
|
|
182
|
+
icon={<Save fill="var(--primary-color)" />}
|
|
183
|
+
open={open}
|
|
184
|
+
loading={loading}
|
|
185
|
+
handleClose={handleClose}
|
|
186
|
+
title={MESSAGES.TEMPLATE.SAVE.TITLE}
|
|
187
|
+
subHeading={MESSAGES.TEMPLATE.SAVE.HEADING}
|
|
188
|
+
// Show custom content if rosCustomValue exists, else default description
|
|
189
|
+
description={enableCustomRos && rosFieldExists ? undefined : MESSAGES.TEMPLATE.SAVE.PARAGRAPH}
|
|
190
|
+
cancelText={MESSAGES.TEMPLATE.SAVE.CANCEL_BUTTON}
|
|
191
|
+
submitText={MESSAGES.TEMPLATE.SAVE.SUBMIT_BUTTON}
|
|
192
|
+
customStyles={{...saveDialogStyles, maxWidth: enableCustomRos && rosFieldExists ? '620px' : '433px'}}
|
|
193
|
+
onSubmit={handleSubmit}
|
|
194
|
+
onCancel={handleClose}
|
|
195
|
+
>
|
|
196
|
+
{enableCustomRos && rosFieldExists && customContent}
|
|
197
|
+
</Dialog>
|
|
198
|
+
);
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
export default SaveTemplateModel;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
.confirmTemplateSaveModal {
|
|
2
|
+
.MuiPaper-root {
|
|
3
|
+
width: 100% !important;
|
|
4
|
+
max-width: 433px !important;
|
|
5
|
+
height: 100% !important;
|
|
6
|
+
max-height: 290px !important;
|
|
7
|
+
margin: 0 auto !important;
|
|
8
|
+
border-radius: 11px;
|
|
9
|
+
background: #fff8ee;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.confirmTemplateSaveModalTitle {
|
|
13
|
+
color: #ed5c2f;
|
|
14
|
+
text-align: center;
|
|
15
|
+
font-size: 22px;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 700;
|
|
18
|
+
line-height: normal;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.confirmTemplateSaveModalContent {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
gap: 20px;
|
|
25
|
+
padding: 16px 16px 0px;
|
|
26
|
+
|
|
27
|
+
.trashIconWrapper {
|
|
28
|
+
text-align: center;
|
|
29
|
+
|
|
30
|
+
p {
|
|
31
|
+
color: #ed5c2f;
|
|
32
|
+
text-align: center;
|
|
33
|
+
font-size: 22px;
|
|
34
|
+
font-style: normal;
|
|
35
|
+
font-weight: 700;
|
|
36
|
+
line-height: normal;
|
|
37
|
+
margin-top: 10px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.confirmTemplateSaveText {
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
align-items: center;
|
|
46
|
+
gap: 10px;
|
|
47
|
+
|
|
48
|
+
p {
|
|
49
|
+
color: #000;
|
|
50
|
+
text-align: center;
|
|
51
|
+
font-size: 16px;
|
|
52
|
+
font-style: normal;
|
|
53
|
+
font-weight: 600;
|
|
54
|
+
line-height: normal;
|
|
55
|
+
|
|
56
|
+
&:last-child {
|
|
57
|
+
color: #000;
|
|
58
|
+
text-align: center;
|
|
59
|
+
font-size: 14px;
|
|
60
|
+
font-style: normal;
|
|
61
|
+
font-weight: 400;
|
|
62
|
+
line-height: 16px;
|
|
63
|
+
/* 114.286% */
|
|
64
|
+
letter-spacing: 0.28px;
|
|
65
|
+
margin: 0;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.MuiInputBase-root {
|
|
71
|
+
border-radius: 7px;
|
|
72
|
+
border: 0.5px solid #303030;
|
|
73
|
+
background: #fff;
|
|
74
|
+
width: 100%;
|
|
75
|
+
padding: 10px 22px;
|
|
76
|
+
|
|
77
|
+
&:focus,
|
|
78
|
+
&:focus-visible {
|
|
79
|
+
outline: none !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&::after,
|
|
83
|
+
&::before {
|
|
84
|
+
display: none !important;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.actionBtns {
|
|
90
|
+
justify-content: center;
|
|
91
|
+
align-items: center;
|
|
92
|
+
margin-bottom: 10px;
|
|
93
|
+
gap: 20px;
|
|
94
|
+
|
|
95
|
+
button {
|
|
96
|
+
border-radius: 5px;
|
|
97
|
+
text-transform: capitalize;
|
|
98
|
+
width: 100%;
|
|
99
|
+
max-width: 107px;
|
|
100
|
+
height: 100%;
|
|
101
|
+
min-height: 41px;
|
|
102
|
+
|
|
103
|
+
&:first-child {
|
|
104
|
+
border: 0.5px solid rgba(48, 48, 48, 0.5);
|
|
105
|
+
background: #fff;
|
|
106
|
+
color: #000;
|
|
107
|
+
font-size: 16px;
|
|
108
|
+
font-style: normal;
|
|
109
|
+
font-weight: 600;
|
|
110
|
+
line-height: normal;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&:last-child {
|
|
114
|
+
color: #fff;
|
|
115
|
+
font-size: 16px;
|
|
116
|
+
font-style: normal;
|
|
117
|
+
font-weight: 600;
|
|
118
|
+
line-height: normal;
|
|
119
|
+
background: #ed5c2f;
|
|
120
|
+
margin: 0;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&:disabled {
|
|
124
|
+
opacity: 0.5;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|