@capillarytech/creatives-library 8.0.345-alpha.14 → 8.0.345-alpha.15
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/constants/unified.js +29 -0
- package/package.json +1 -1
- package/services/tests/api.test.js +13 -0
- package/utils/commonUtils.js +19 -1
- package/utils/rcsPayloadUtils.js +92 -0
- package/utils/templateVarUtils.js +201 -0
- package/utils/tests/templateVarUtils.test.js +204 -0
- package/v2Components/CapActionButton/constants.js +7 -0
- package/v2Components/CapActionButton/index.js +167 -109
- package/v2Components/CapActionButton/index.scss +157 -6
- package/v2Components/CapActionButton/messages.js +19 -3
- package/v2Components/CapActionButton/tests/index.test.js +41 -17
- package/v2Components/CapTagList/index.js +10 -0
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +70 -49
- package/v2Components/CommonTestAndPreview/DeliverySettings/DeliverySettings.scss +8 -2
- package/v2Components/CommonTestAndPreview/DeliverySettings/ModifyDeliverySettings.js +207 -21
- package/v2Components/CommonTestAndPreview/DeliverySettings/constants.js +16 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/index.js +85 -10
- package/v2Components/CommonTestAndPreview/DeliverySettings/messages.js +30 -0
- package/v2Components/CommonTestAndPreview/DeliverySettings/utils/parseSenderDetailsResponse.js +79 -11
- package/v2Components/CommonTestAndPreview/SendTestMessage.js +10 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/RcsPreviewContent.js +160 -15
- package/v2Components/CommonTestAndPreview/UnifiedPreview/RcsPreviewContent.js.rej +18 -0
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +341 -76
- package/v2Components/CommonTestAndPreview/UnifiedPreview/index.js +133 -4
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +11 -0
- package/v2Components/CommonTestAndPreview/constants.js +38 -2
- package/v2Components/CommonTestAndPreview/index.js +676 -186
- package/v2Components/CommonTestAndPreview/messages.js +49 -3
- package/v2Components/CommonTestAndPreview/previewApiUtils.js +59 -0
- package/v2Components/CommonTestAndPreview/sagas.js +15 -6
- package/v2Components/CommonTestAndPreview/tests/CustomValuesEditor.test.js +308 -284
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/ModifyDeliverySettings.test.js +231 -65
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/index.test.js +118 -5
- package/v2Components/CommonTestAndPreview/tests/DeliverySettings/utils/parseSenderDetailsResponse.test.js +341 -0
- package/v2Components/CommonTestAndPreview/tests/PreviewSection.test.js +8 -1
- package/v2Components/CommonTestAndPreview/tests/SendTestMessage.test.js +34 -13
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/RcsPreviewContent.test.js +281 -283
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/index.test.js +199 -1
- package/v2Components/CommonTestAndPreview/tests/index.test.js +132 -4
- package/v2Components/CommonTestAndPreview/tests/previewApiUtils.test.js +67 -0
- package/v2Components/CommonTestAndPreview/tests/sagas.test.js +2 -2
- package/v2Components/FormBuilder/index.js +8 -10
- package/v2Components/SmsFallback/SmsFallbackLocalSelector.js +87 -0
- package/v2Components/SmsFallback/constants.js +73 -0
- package/v2Components/SmsFallback/index.js +955 -0
- package/v2Components/SmsFallback/index.scss +265 -0
- package/v2Components/SmsFallback/messages.js +78 -0
- package/v2Components/SmsFallback/smsFallbackUtils.js +118 -0
- package/v2Components/SmsFallback/tests/SmsFallbackLocalSelector.test.js +50 -0
- package/v2Components/SmsFallback/tests/rcsSmsFallback.acceptance.test.js +147 -0
- package/v2Components/SmsFallback/tests/smsFallbackHandlers.test.js +304 -0
- package/v2Components/SmsFallback/tests/smsFallbackUi.test.js +197 -0
- package/v2Components/SmsFallback/tests/smsFallbackUtils.test.js +277 -0
- package/v2Components/SmsFallback/tests/useLocalTemplateList.test.js +422 -0
- package/v2Components/SmsFallback/useLocalTemplateList.js +92 -0
- package/v2Components/TemplatePreview/_templatePreview.scss +33 -23
- package/v2Components/TemplatePreview/constants.js +2 -0
- package/v2Components/TemplatePreview/index.js +143 -28
- package/v2Components/TemplatePreview/tests/index.test.js +142 -0
- package/v2Components/TestAndPreviewSlidebox/index.js +13 -1
- package/v2Components/TestAndPreviewSlidebox/sagas.js +11 -4
- package/v2Components/TestAndPreviewSlidebox/tests/saga.test.js +3 -1
- package/v2Components/VarSegmentMessageEditor/constants.js +2 -0
- package/v2Components/VarSegmentMessageEditor/index.js +125 -0
- package/v2Components/VarSegmentMessageEditor/index.scss +46 -0
- package/v2Containers/CreativesContainer/CreativesSlideBoxWrapper.js +43 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +36 -4
- package/v2Containers/CreativesContainer/SlideBoxFooter.js +10 -1
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +29 -4
- package/v2Containers/CreativesContainer/constants.js +9 -0
- package/v2Containers/CreativesContainer/embeddedSlideboxUtils.js +67 -0
- package/v2Containers/CreativesContainer/index.js +300 -103
- package/v2Containers/CreativesContainer/index.scss +51 -1
- package/v2Containers/CreativesContainer/tests/SlideBoxContent.localTemplates.test.js +90 -0
- package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +78 -34
- package/v2Containers/CreativesContainer/tests/SlideBoxHeader.test.js +79 -16
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +8 -0
- package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxHeader.test.js.snap +357 -98
- package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +20 -15
- package/v2Containers/CreativesContainer/tests/embeddedSlideboxUtils.test.js +258 -0
- package/v2Containers/CreativesContainer/tests/index.test.js +71 -9
- package/v2Containers/CreativesContainer/tests/useLocalTemplatesProp.test.js +125 -0
- package/v2Containers/Email/reducer.js +3 -11
- package/v2Containers/Email/sagas.js +5 -9
- package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -4
- package/v2Containers/Email/tests/sagas.test.js +3 -21
- package/v2Containers/Rcs/constants.js +119 -8
- package/v2Containers/Rcs/index.js +2379 -807
- package/v2Containers/Rcs/index.js.rej +1336 -0
- package/v2Containers/Rcs/index.scss +276 -6
- package/v2Containers/Rcs/index.scss.rej +74 -0
- package/v2Containers/Rcs/messages.js +38 -3
- package/v2Containers/Rcs/rcsLibraryHydrationUtils.js +225 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +98018 -70073
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap +0 -5
- package/v2Containers/Rcs/tests/__snapshots__/utils.test.js.snap.rej +128 -0
- package/v2Containers/Rcs/tests/index.test.js +152 -121
- package/v2Containers/Rcs/tests/mockData.js +38 -0
- package/v2Containers/Rcs/tests/rcsLibraryHydrationUtils.test.js +318 -0
- package/v2Containers/Rcs/tests/utils.test.js +646 -30
- package/v2Containers/Rcs/utils.js +478 -11
- package/v2Containers/Sms/Create/index.js +100 -40
- package/v2Containers/Sms/smsFormDataHelpers.js +67 -0
- package/v2Containers/Sms/tests/smsFormDataHelpers.test.js +253 -0
- package/v2Containers/SmsTrai/Create/index.js +9 -4
- package/v2Containers/SmsTrai/Edit/constants.js +2 -0
- package/v2Containers/SmsTrai/Edit/index.js +636 -130
- package/v2Containers/SmsTrai/Edit/index.scss +121 -0
- package/v2Containers/SmsTrai/Edit/messages.js +14 -4
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +4328 -2375
- package/v2Containers/SmsWrapper/index.js +37 -8
- package/v2Containers/TagList/index.js +6 -0
- package/v2Containers/Templates/TemplatesActionBar.js +101 -0
- package/v2Containers/Templates/_templates.scss +163 -2
- package/v2Containers/Templates/actions.js +11 -0
- package/v2Containers/Templates/constants.js +2 -0
- package/v2Containers/Templates/index.js +119 -54
- package/v2Containers/Templates/sagas.js +57 -12
- package/v2Containers/Templates/tests/TemplatesActionBar.test.js +120 -0
- package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +1043 -1079
- package/v2Containers/Templates/tests/sagas.test.js +193 -123
- package/v2Containers/Templates/tests/smsTemplatesListApi.test.js +180 -0
- package/v2Containers/Templates/utils/smsTemplatesListApi.js +79 -0
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +72 -1
- package/v2Containers/TemplatesV2/index.js +86 -23
- package/v2Containers/TemplatesV2/tests/TemplatesV2.localTemplates.test.js +131 -0
- package/v2Containers/Whatsapp/index.js +3 -20
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +578 -34
|
@@ -21,8 +21,21 @@ import InAppPreviewContent from './InAppPreviewContent';
|
|
|
21
21
|
import MobilePushPreviewContent from './MobilePushPreviewContent';
|
|
22
22
|
import ViberPreviewContent from './ViberPreviewContent';
|
|
23
23
|
import ZaloPreviewContent from './ZaloPreviewContent';
|
|
24
|
-
import
|
|
24
|
+
import CapTab from '@capillarytech/cap-ui-library/CapTab';
|
|
25
|
+
import {
|
|
26
|
+
CHANNELS,
|
|
27
|
+
DESKTOP,
|
|
28
|
+
TABLET,
|
|
29
|
+
MOBILE,
|
|
30
|
+
ANDROID,
|
|
31
|
+
IOS,
|
|
32
|
+
PREVIEW_TAB_RCS,
|
|
33
|
+
PREVIEW_TAB_SMS_FALLBACK,
|
|
34
|
+
PREVIEW_TAB_KEYS,
|
|
35
|
+
RCS_SMS_FALLBACK_VAR_MAPPED_PROP,
|
|
36
|
+
} from '../constants';
|
|
25
37
|
import messages from '../messages';
|
|
38
|
+
import { getFallbackResolvedContent } from '../../../utils/templateVarUtils';
|
|
26
39
|
import './_unifiedPreview.scss';
|
|
27
40
|
|
|
28
41
|
const UnifiedPreview = ({
|
|
@@ -38,7 +51,24 @@ const UnifiedPreview = ({
|
|
|
38
51
|
lastModified,
|
|
39
52
|
updatedByName,
|
|
40
53
|
showHeader, // Default to true for Test and Preview flow, false for channel component previews
|
|
54
|
+
smsFallbackContent,
|
|
55
|
+
smsFallbackResolvedText,
|
|
56
|
+
activePreviewTab,
|
|
57
|
+
onPreviewTabChange,
|
|
41
58
|
}) => {
|
|
59
|
+
const hasFallbackSmsTemplate = !!(smsFallbackContent?.templateContent || smsFallbackContent?.content);
|
|
60
|
+
const showRcsSmsFallbackTabs = channel === CHANNELS.RCS && hasFallbackSmsTemplate;
|
|
61
|
+
const rawFallbackTemplate = smsFallbackContent?.templateContent ?? smsFallbackContent?.content ?? '';
|
|
62
|
+
const rcsFallbackVarMapped = smsFallbackContent?.[RCS_SMS_FALLBACK_VAR_MAPPED_PROP] ?? {};
|
|
63
|
+
const hasRcsFallbackVarMapped = Object.keys(rcsFallbackVarMapped).length > 0;
|
|
64
|
+
// When no varmap is present, show raw template so {{tags}} remain visible in the preview.
|
|
65
|
+
// Only apply slot substitution when varmap entries exist or a resolved text is available.
|
|
66
|
+
const smsFallbackDisplayContent =
|
|
67
|
+
smsFallbackResolvedText != null && smsFallbackResolvedText !== ''
|
|
68
|
+
? smsFallbackResolvedText
|
|
69
|
+
: hasRcsFallbackVarMapped
|
|
70
|
+
? getFallbackResolvedContent(rawFallbackTemplate, rcsFallbackVarMapped)
|
|
71
|
+
: rawFallbackTemplate;
|
|
42
72
|
/**
|
|
43
73
|
* Render channel-specific preview content
|
|
44
74
|
* For Phase 5, we'll render placeholders
|
|
@@ -124,6 +154,21 @@ const UnifiedPreview = ({
|
|
|
124
154
|
case CHANNELS.RCS: {
|
|
125
155
|
// RCS content is an object with rcsTitle, rcsDesc, rcsImageSrc, suggestions, etc.
|
|
126
156
|
const rcsContent = typeof content === 'object' ? content : {};
|
|
157
|
+
|
|
158
|
+
if (showRcsSmsFallbackTabs && activePreviewTab === PREVIEW_TAB_SMS_FALLBACK) {
|
|
159
|
+
return (
|
|
160
|
+
<SmsPreviewContent
|
|
161
|
+
content={smsFallbackDisplayContent}
|
|
162
|
+
device={ANDROID}
|
|
163
|
+
isUpdating={isUpdating}
|
|
164
|
+
error={error}
|
|
165
|
+
formatMessage={formatMessage}
|
|
166
|
+
senderId={smsFallbackContent?.senderId}
|
|
167
|
+
showHeader={showHeader}
|
|
168
|
+
/>
|
|
169
|
+
);
|
|
170
|
+
}
|
|
171
|
+
|
|
127
172
|
return (
|
|
128
173
|
<RcsPreviewContent
|
|
129
174
|
content={rcsContent}
|
|
@@ -268,6 +313,79 @@ const UnifiedPreview = ({
|
|
|
268
313
|
* PreviewHeader is shown only when showHeader is true (for Test and Preview flow)
|
|
269
314
|
* Channel-specific content will be in separate files in future phases
|
|
270
315
|
*/
|
|
316
|
+
if (showRcsSmsFallbackTabs) {
|
|
317
|
+
const renderPane = ({ paneChannel, paneDevice, paneShowDeviceToggle, paneContent }) => (
|
|
318
|
+
<CapRow className="unified-preview-tab-pane">
|
|
319
|
+
{showHeader && (
|
|
320
|
+
<PreviewHeader
|
|
321
|
+
selectedCustomer={selectedCustomer}
|
|
322
|
+
device={paneDevice}
|
|
323
|
+
showDeviceToggle={paneShowDeviceToggle}
|
|
324
|
+
onDeviceChange={onDeviceChange}
|
|
325
|
+
channel={paneChannel}
|
|
326
|
+
/>
|
|
327
|
+
)}
|
|
328
|
+
|
|
329
|
+
<CapRow className={`preview-content-container ${!showHeader ? 'preview-content-container-no-header' : ''}`}>
|
|
330
|
+
{paneContent}
|
|
331
|
+
</CapRow>
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
</CapRow>
|
|
335
|
+
);
|
|
336
|
+
|
|
337
|
+
return (
|
|
338
|
+
<CapRow className="unified-preview unified-preview-rcs-tabs">
|
|
339
|
+
<CapTab
|
|
340
|
+
activeKey={activePreviewTab}
|
|
341
|
+
onChange={onPreviewTabChange}
|
|
342
|
+
panes={[
|
|
343
|
+
{
|
|
344
|
+
tab: formatMessage(messages.rcsTab),
|
|
345
|
+
key: PREVIEW_TAB_RCS,
|
|
346
|
+
content: renderPane({
|
|
347
|
+
paneChannel: CHANNELS.RCS,
|
|
348
|
+
paneDevice: device,
|
|
349
|
+
paneShowDeviceToggle: showDeviceToggle,
|
|
350
|
+
paneContent: (
|
|
351
|
+
<RcsPreviewContent
|
|
352
|
+
content={typeof content === 'object' ? content : {}}
|
|
353
|
+
device={device}
|
|
354
|
+
isUpdating={isUpdating}
|
|
355
|
+
error={error}
|
|
356
|
+
formatMessage={formatMessage}
|
|
357
|
+
senderId={content?.senderId}
|
|
358
|
+
showHeader={showHeader}
|
|
359
|
+
/>
|
|
360
|
+
),
|
|
361
|
+
}),
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
tab: formatMessage(messages.smsFallbackTab),
|
|
365
|
+
key: PREVIEW_TAB_SMS_FALLBACK,
|
|
366
|
+
content: renderPane({
|
|
367
|
+
paneChannel: CHANNELS.SMS,
|
|
368
|
+
paneDevice: device,
|
|
369
|
+
paneShowDeviceToggle: showDeviceToggle,
|
|
370
|
+
paneContent: (
|
|
371
|
+
<SmsPreviewContent
|
|
372
|
+
content={smsFallbackDisplayContent}
|
|
373
|
+
device={device}
|
|
374
|
+
isUpdating={isUpdating}
|
|
375
|
+
error={error}
|
|
376
|
+
formatMessage={formatMessage}
|
|
377
|
+
senderId={smsFallbackContent?.senderId}
|
|
378
|
+
showHeader={showHeader}
|
|
379
|
+
/>
|
|
380
|
+
),
|
|
381
|
+
}),
|
|
382
|
+
},
|
|
383
|
+
]}
|
|
384
|
+
/>
|
|
385
|
+
</CapRow>
|
|
386
|
+
);
|
|
387
|
+
}
|
|
388
|
+
|
|
271
389
|
return (
|
|
272
390
|
<CapRow className="unified-preview">
|
|
273
391
|
{/* PreviewHeader - shown only in Test and Preview flow, hidden in channel component previews */}
|
|
@@ -305,9 +423,7 @@ const UnifiedPreview = ({
|
|
|
305
423
|
)}
|
|
306
424
|
{updatedByName && (
|
|
307
425
|
<span className="metadata-item">
|
|
308
|
-
{formatMessage(messages.
|
|
309
|
-
{' '}
|
|
310
|
-
{updatedByName}
|
|
426
|
+
{formatMessage(messages.byAuthor, { name: updatedByName })}
|
|
311
427
|
</span>
|
|
312
428
|
)}
|
|
313
429
|
</CapRow>
|
|
@@ -348,6 +464,15 @@ UnifiedPreview.propTypes = {
|
|
|
348
464
|
|
|
349
465
|
// Header display
|
|
350
466
|
showHeader: PropTypes.bool, // Show PreviewHeader (true for Test and Preview flow, false for channel component previews)
|
|
467
|
+
|
|
468
|
+
// RCS: SMS fallback preview support (same shape as SmsFallback / RCS smsFallbackData)
|
|
469
|
+
smsFallbackContent: PropTypes.shape({
|
|
470
|
+
templateContent: PropTypes.string,
|
|
471
|
+
senderId: PropTypes.string,
|
|
472
|
+
templateName: PropTypes.string,
|
|
473
|
+
}),
|
|
474
|
+
activePreviewTab: PropTypes.oneOf(PREVIEW_TAB_KEYS),
|
|
475
|
+
onPreviewTabChange: PropTypes.func,
|
|
351
476
|
};
|
|
352
477
|
|
|
353
478
|
UnifiedPreview.defaultProps = {
|
|
@@ -360,6 +485,10 @@ UnifiedPreview.defaultProps = {
|
|
|
360
485
|
lastModified: null,
|
|
361
486
|
updatedByName: null,
|
|
362
487
|
showHeader: true, // Default to true for Test and Preview flow
|
|
488
|
+
smsFallbackContent: null,
|
|
489
|
+
smsFallbackResolvedText: undefined,
|
|
490
|
+
activePreviewTab: PREVIEW_TAB_RCS,
|
|
491
|
+
onPreviewTabChange: () => {},
|
|
363
492
|
};
|
|
364
493
|
|
|
365
494
|
export default UnifiedPreview;
|
|
@@ -213,6 +213,10 @@
|
|
|
213
213
|
margin-right: 0.5rem;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
+
.cap-slide-box-v2.common-test-and-preview-slidebox .cap-slide-box-v2-container {
|
|
217
|
+
z-index: 10030;
|
|
218
|
+
}
|
|
219
|
+
|
|
216
220
|
.common-test-and-preview-slidebox {
|
|
217
221
|
|
|
218
222
|
.ant-modal-mask,
|
|
@@ -486,6 +490,13 @@
|
|
|
486
490
|
}
|
|
487
491
|
}
|
|
488
492
|
|
|
493
|
+
.tags-section-title {
|
|
494
|
+
margin: $CAP_SPACE_12 0;
|
|
495
|
+
display: block;
|
|
496
|
+
color: $CAP_G01;
|
|
497
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
498
|
+
}
|
|
499
|
+
|
|
489
500
|
.values-table {
|
|
490
501
|
margin-bottom: $CAP_SPACE_16;
|
|
491
502
|
border: $CAP_SPACE_01 solid $CAP_G12;
|
|
@@ -66,7 +66,6 @@ export const GET_WECRM_ACCOUNTS_REQUESTED = 'app/CommonTestAndPreview/GET_WECRM_
|
|
|
66
66
|
export const GET_WECRM_ACCOUNTS_SUCCESS = 'app/CommonTestAndPreview/GET_WECRM_ACCOUNTS_SUCCESS';
|
|
67
67
|
export const GET_WECRM_ACCOUNTS_FAILURE = 'app/CommonTestAndPreview/GET_WECRM_ACCOUNTS_FAILURE';
|
|
68
68
|
|
|
69
|
-
|
|
70
69
|
// ============================================
|
|
71
70
|
// CUSTOMER MODAL TYPE (test customer addition)
|
|
72
71
|
// ============================================
|
|
@@ -86,7 +85,44 @@ export const CHANNELS = {
|
|
|
86
85
|
VIBER: 'VIBER',
|
|
87
86
|
ZALO: 'ZALO',
|
|
88
87
|
};
|
|
89
|
-
|
|
88
|
+
|
|
89
|
+
/** Unified preview tab keys when RCS shows RCS + SMS fallback panes. */
|
|
90
|
+
export const PREVIEW_TAB_RCS = 'rcs';
|
|
91
|
+
export const PREVIEW_TAB_SMS_FALLBACK = 'smsFallback';
|
|
92
|
+
export const PREVIEW_TAB_KEYS = [PREVIEW_TAB_RCS, PREVIEW_TAB_SMS_FALLBACK];
|
|
93
|
+
|
|
94
|
+
/** Channels whose Test & Preview defaults to Android/iOS device frame (not desktop). */
|
|
95
|
+
export const CHANNELS_USING_ANDROID_PREVIEW_DEVICE = [
|
|
96
|
+
CHANNELS.SMS,
|
|
97
|
+
CHANNELS.WHATSAPP,
|
|
98
|
+
CHANNELS.RCS,
|
|
99
|
+
CHANNELS.INAPP,
|
|
100
|
+
CHANNELS.MOBILEPUSH,
|
|
101
|
+
CHANNELS.VIBER,
|
|
102
|
+
];
|
|
103
|
+
|
|
104
|
+
/** RCS createMessageMeta test payload — rich card envelope literals. */
|
|
105
|
+
export const RCS_TEST_META_CONTENT_TYPE_RICHCARD = 'RICHCARD';
|
|
106
|
+
export const RCS_TEST_META_CARD_TYPE_STANDALONE = 'STANDALONE';
|
|
107
|
+
export const RCS_TEST_META_CARD_ORIENTATION_VERTICAL = 'VERTICAL';
|
|
108
|
+
export const RCS_TEST_META_CARD_WIDTH_SMALL = 'SMALL';
|
|
109
|
+
|
|
110
|
+
/** React key fallback when a custom-values section has no `key` or title id. */
|
|
111
|
+
export const CUSTOM_VALUES_EDITOR_SECTION_FALLBACK_KEY = 'section';
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Matches at least one `{{variableName}}` token in SMS / RCS fallback template text.
|
|
115
|
+
*/
|
|
116
|
+
export const SMS_MUSTACHE_TAG_PATTERN = /\{\{[^}]+\}\}/;
|
|
117
|
+
|
|
118
|
+
/** TRAI DLT `{#…#}` placeholders (same idea as `COMBINED_SMS_TEMPLATE_VAR_REGEX` in unified constants). */
|
|
119
|
+
export const SMS_DLT_HASH_TAG_PATTERN = /\{\#[^#]*\#\}/;
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Key on `smsFallbackContent` passed into Test & Preview — RCS slot map from SmsTraiEdit
|
|
123
|
+
* (`onRcsFallbackEditorStateChange`), merged before tag extraction like the embedded SMS editor.
|
|
124
|
+
*/
|
|
125
|
+
export const RCS_SMS_FALLBACK_VAR_MAPPED_PROP = 'rcsSmsFallbackVarMapped';
|
|
90
126
|
|
|
91
127
|
// ============================================
|
|
92
128
|
// DEVICE CONSTANTS
|