@capillarytech/creatives-library 9.0.49-alpha.0 → 9.0.49
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/package.json +1 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/ViberPreviewContent.js +15 -106
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +1 -139
- package/v2Components/CommonTestAndPreview/constants.js +0 -2
- package/v2Components/CommonTestAndPreview/index.js +26 -240
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/ViberPreviewContent.test.js +0 -364
- package/v2Components/CommonTestAndPreview/tests/utils.test.js +0 -49
- package/v2Components/CommonTestAndPreview/utils.js +0 -20
- package/v2Containers/Templates/_templates.scss +1 -179
- package/v2Containers/Templates/index.js +25 -157
- package/v2Containers/Templates/messages.js +0 -4
- package/v2Containers/Viber/constants.js +0 -21
- package/v2Containers/Viber/index.js +43 -711
- package/v2Containers/Viber/index.scss +0 -175
- package/v2Containers/Viber/messages.js +0 -121
- package/v2Containers/Viber/tests/index.test.js +0 -80
- package/v2Containers/Whatsapp/index.js +1 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/ViberCarouselPreviewCards.js +0 -127
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_viberCarouselPreviewCards.scss +0 -133
|
@@ -73,7 +73,6 @@ import * as ebillActions from '../Ebill/actions';
|
|
|
73
73
|
import * as emailActions from '../Email/actions';
|
|
74
74
|
import * as lineActions from '../Line/Container/actions';
|
|
75
75
|
import * as viberActions from '../Viber/actions';
|
|
76
|
-
import { VIBER_MEDIA_TYPES } from '../Viber/constants';
|
|
77
76
|
import * as facebookActions from '../Facebook/actions';
|
|
78
77
|
import * as whatsappActions from '../Whatsapp/actions';
|
|
79
78
|
import * as rcsActions from '../Rcs/actions';
|
|
@@ -1406,11 +1405,6 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1406
1405
|
const image = viberContent.image || {};
|
|
1407
1406
|
const video = viberContent.video || {};
|
|
1408
1407
|
const button = viberContent.button || {};
|
|
1409
|
-
const messageType = viberContent.type || '';
|
|
1410
|
-
const cardsRaw = viberContent.cards;
|
|
1411
|
-
const cards = Array.isArray(cardsRaw) ? cardsRaw : [];
|
|
1412
|
-
const isCarousel =
|
|
1413
|
-
messageType === VIBER_MEDIA_TYPES.CAROUSEL || cards.length > 0;
|
|
1414
1408
|
|
|
1415
1409
|
const viberPreview = {
|
|
1416
1410
|
messageContent: text,
|
|
@@ -1428,39 +1422,14 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1428
1422
|
};
|
|
1429
1423
|
}
|
|
1430
1424
|
|
|
1431
|
-
if (isCarousel) {
|
|
1432
|
-
viberPreview.type = VIBER_MEDIA_TYPES.CAROUSEL;
|
|
1433
|
-
viberPreview.cards = cards.map((card) => ({
|
|
1434
|
-
text: card?.text || '',
|
|
1435
|
-
mediaUrl: card?.mediaUrl || '',
|
|
1436
|
-
buttons: (card?.buttons || []).map((btn) => ({
|
|
1437
|
-
title: btn?.title || '',
|
|
1438
|
-
action: btn?.action || '',
|
|
1439
|
-
})),
|
|
1440
|
-
}));
|
|
1441
|
-
viberPreview.showCarouselEditorPreview = true;
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
1425
|
// Extract account name
|
|
1445
1426
|
const accountName = get(template, 'definition.accountName', '');
|
|
1446
1427
|
|
|
1447
1428
|
// Return Viber content object (same as Viber/index.js getTemplateContent)
|
|
1448
1429
|
return {
|
|
1449
1430
|
viberPreviewContent: viberPreview,
|
|
1450
|
-
accountName: accountName
|
|
1451
|
-
brandName: accountName
|
|
1452
|
-
messageContent: text,
|
|
1453
|
-
...(isCarousel && {
|
|
1454
|
-
type: VIBER_MEDIA_TYPES.CAROUSEL,
|
|
1455
|
-
cards: viberPreview.cards,
|
|
1456
|
-
}),
|
|
1457
|
-
...(!isCarousel && !isEmpty(button) && button.text && (button.url || viberContent.buttonURL) && {
|
|
1458
|
-
button: {
|
|
1459
|
-
text: button.text,
|
|
1460
|
-
url: button.url || viberContent.buttonURL || '',
|
|
1461
|
-
},
|
|
1462
|
-
}),
|
|
1463
|
-
buttonURL: button.url || viberContent.buttonURL || '',
|
|
1431
|
+
accountName: accountName ? [accountName] : [],
|
|
1432
|
+
brandName: accountName ? [accountName] : [],
|
|
1464
1433
|
};
|
|
1465
1434
|
}
|
|
1466
1435
|
|
|
@@ -2082,21 +2051,11 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
2082
2051
|
const isCardArchiveEligible = isArchivalEnabled && this.isChannelArchiveEligible(currentChannel, cardWhatsappStatus, cardRcsStatus);
|
|
2083
2052
|
const isArchivedMode = isArchivalEnabled && get(this.props, 'Templates.isArchivedMode', false);
|
|
2084
2053
|
const isAnyArchiveInProgress = isArchivalEnabled && !!(get(this.props, 'Templates.archiveInProgress') || get(this.props, 'Templates.unarchiveInProgress') || get(this.props, 'Templates.bulkArchiveInProgress') || get(this.props, 'Templates.bulkUnarchiveInProgress'));
|
|
2085
|
-
const smsBaseForLegacyCheck = template?.versions?.base || {};
|
|
2086
|
-
const updatedSmsEditorForLegacy = smsBaseForLegacyCheck['updated-sms-editor'];
|
|
2087
|
-
const updatedSmsEditorForLegacyJoined = Array.isArray(updatedSmsEditorForLegacy)
|
|
2088
|
-
? updatedSmsEditorForLegacy.join('')
|
|
2089
|
-
: updatedSmsEditorForLegacy;
|
|
2090
|
-
const smsBodyForLegacyCheck = `${updatedSmsEditorForLegacyJoined || ''}${smsBaseForLegacyCheck['sms-editor'] || ''}`;
|
|
2091
|
-
const isDltLegacyTemplate = currentChannel === SMS
|
|
2092
|
-
&& isTraiDltFeature
|
|
2093
|
-
&& !this.props.isFullMode
|
|
2094
|
-
&& DLT_LEGACY_VAR_REGEX.test(smsBodyForLegacyCheck);
|
|
2095
2054
|
const templateData = {
|
|
2096
2055
|
key: `${currentChannel}-card-${template?.name}`,
|
|
2097
2056
|
title: (
|
|
2098
2057
|
<span className="template-card-title" title={template?.name}>
|
|
2099
|
-
{isCardArchiveEligible && this.renderCardSelectionCheckbox({ templateId: template._id, selectedIds: selectedIdsArrayForCard, isDisabled: isAnyArchiveInProgress
|
|
2058
|
+
{isCardArchiveEligible && this.renderCardSelectionCheckbox({ templateId: template._id, selectedIds: selectedIdsArrayForCard, isDisabled: isAnyArchiveInProgress })}
|
|
2100
2059
|
<CapLabel.CapLabelInline type="label1" title={template?.name} className="template-card-name">
|
|
2101
2060
|
{template?.name}
|
|
2102
2061
|
{currentChannel === INAPP && (
|
|
@@ -2156,39 +2115,20 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
2156
2115
|
})()
|
|
2157
2116
|
],
|
|
2158
2117
|
hoverOption: isArchivedMode || !this.canPerform(PERMISSIONS.CREATIVE_EDIT) ? null : (
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
</CapButton>
|
|
2174
|
-
</CapLabel.CapLabelInline>
|
|
2175
|
-
</CapTooltip>
|
|
2176
|
-
) : (
|
|
2177
|
-
<CapButton
|
|
2178
|
-
className={
|
|
2179
|
-
this.props.isFullMode
|
|
2180
|
-
? `edit-${channelLowerCase}`
|
|
2181
|
-
: `select-${channelLowerCase}`
|
|
2182
|
-
}
|
|
2183
|
-
onClick={e =>
|
|
2184
|
-
handlers.handleEditClick(e, template, undefined, undefined, {
|
|
2185
|
-
account: this.state.selectedAccount
|
|
2186
|
-
})
|
|
2187
|
-
}
|
|
2188
|
-
>
|
|
2189
|
-
{hoverButtonText}
|
|
2190
|
-
</CapButton>
|
|
2191
|
-
)
|
|
2118
|
+
<CapButton
|
|
2119
|
+
className={
|
|
2120
|
+
this.props.isFullMode
|
|
2121
|
+
? `edit-${channelLowerCase}`
|
|
2122
|
+
: `select-${channelLowerCase}`
|
|
2123
|
+
}
|
|
2124
|
+
onClick={e =>
|
|
2125
|
+
handlers.handleEditClick(e, template, undefined, undefined, {
|
|
2126
|
+
account: this.state.selectedAccount
|
|
2127
|
+
})
|
|
2128
|
+
}
|
|
2129
|
+
>
|
|
2130
|
+
{hoverButtonText}
|
|
2131
|
+
</CapButton>
|
|
2192
2132
|
)
|
|
2193
2133
|
};
|
|
2194
2134
|
const {
|
|
@@ -2529,59 +2469,10 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
2529
2469
|
image = {},
|
|
2530
2470
|
button = {},
|
|
2531
2471
|
video = {},
|
|
2532
|
-
type = '',
|
|
2533
|
-
cards = [],
|
|
2534
2472
|
} = {},
|
|
2535
2473
|
} = {},
|
|
2536
2474
|
} = template.versions.base;
|
|
2537
|
-
const isViberCarousel = type === VIBER_MEDIA_TYPES.CAROUSEL;
|
|
2538
2475
|
templateData.content = text;
|
|
2539
|
-
if (isViberCarousel) {
|
|
2540
|
-
const previewCards = Array.isArray(cards) ? cards.slice(0, 1) : [];
|
|
2541
|
-
// Bypass CapCustomCard Viber Meta + line-clamp (clips title/buttons for tall images).
|
|
2542
|
-
// Parent class `viber-carousel-static` scopes listing styles in _templates.scss.
|
|
2543
|
-
// cardType hits the default content path; keep VIBER for channel card styles.
|
|
2544
|
-
templateData.cardType = 'VIBER_CAROUSEL_PREVIEW';
|
|
2545
|
-
templateData.className = 'viber-carousel-static VIBER';
|
|
2546
|
-
templateData.content = (
|
|
2547
|
-
<CapRow vertical className="content">
|
|
2548
|
-
<CapRow className="message-box">
|
|
2549
|
-
<CapLabel type="label1" className="message">
|
|
2550
|
-
{text}
|
|
2551
|
-
</CapLabel>
|
|
2552
|
-
</CapRow>
|
|
2553
|
-
<CapRow className="cards">
|
|
2554
|
-
{previewCards?.map((card, cardIdx) => (
|
|
2555
|
-
<CapRow vertical className="card" key={`viber-carousel-static-card-${cardIdx}`}>
|
|
2556
|
-
{card?.mediaUrl ? (
|
|
2557
|
-
<CapImage src={card.mediaUrl} className="image" />
|
|
2558
|
-
) : (
|
|
2559
|
-
<CapRow className="image-placeholder" />
|
|
2560
|
-
)}
|
|
2561
|
-
<CapLabel type="label1" className="text">
|
|
2562
|
-
{card?.text}
|
|
2563
|
-
</CapLabel>
|
|
2564
|
-
<CapRow vertical className="buttons">
|
|
2565
|
-
{(Array.isArray(card?.buttons) && card.buttons.length
|
|
2566
|
-
? card.buttons
|
|
2567
|
-
: [{}, {}]
|
|
2568
|
-
).slice(0, 2).map((carouselButton, btnIdx) => (
|
|
2569
|
-
<CapLabel
|
|
2570
|
-
key={`viber-carousel-static-btn-${cardIdx}-${btnIdx}`}
|
|
2571
|
-
type="label1"
|
|
2572
|
-
className={`button${btnIdx === 1 ? ' button-secondary' : ''}`}
|
|
2573
|
-
>
|
|
2574
|
-
{(carouselButton?.title || '').trim()}
|
|
2575
|
-
</CapLabel>
|
|
2576
|
-
))}
|
|
2577
|
-
</CapRow>
|
|
2578
|
-
</CapRow>
|
|
2579
|
-
))}
|
|
2580
|
-
</CapRow>
|
|
2581
|
-
</CapRow>
|
|
2582
|
-
);
|
|
2583
|
-
break;
|
|
2584
|
-
}
|
|
2585
2476
|
if (!isEmpty(image)) {
|
|
2586
2477
|
const { url = '' } = image;
|
|
2587
2478
|
templateData.url = url;
|
|
@@ -3683,22 +3574,6 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
3683
3574
|
CapNotification.error({ message: this.props.intl.formatMessage(messages.cannotEditArchivedTemplate) });
|
|
3684
3575
|
return;
|
|
3685
3576
|
}
|
|
3686
|
-
if (!this.props.isFullMode
|
|
3687
|
-
&& this.checkDLTfeatureEnable()
|
|
3688
|
-
&& (this.state.channel || '').toLowerCase() === SMS_LOWERCASE) {
|
|
3689
|
-
const smsBase = template?.versions?.base || {};
|
|
3690
|
-
const updatedSms = smsBase['updated-sms-editor'];
|
|
3691
|
-
const updatedSmsJoined = Array.isArray(updatedSms) ? updatedSms.join('') : updatedSms;
|
|
3692
|
-
// Check BOTH candidate fields — some legacy templates keep the body only in `sms-editor`
|
|
3693
|
-
// while others have it in `updated-sms-editor`. Concatenating catches either.
|
|
3694
|
-
const smsBody = `${updatedSmsJoined || ''}${smsBase['sms-editor'] || ''}`;
|
|
3695
|
-
if (DLT_LEGACY_VAR_REGEX.test(smsBody)) {
|
|
3696
|
-
CapNotification.error({
|
|
3697
|
-
message: this.props.intl.formatMessage(messages.smsLegacyBlockedTooltip),
|
|
3698
|
-
});
|
|
3699
|
-
return;
|
|
3700
|
-
}
|
|
3701
|
-
}
|
|
3702
3577
|
if (modeType && modeType !== undefined) {
|
|
3703
3578
|
this.setState({modeType});
|
|
3704
3579
|
}
|
|
@@ -5268,22 +5143,15 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
5268
5143
|
? this.props.Templates.selectedWhatsappAccount.name
|
|
5269
5144
|
: null
|
|
5270
5145
|
}
|
|
5271
|
-
// Pass formData for
|
|
5146
|
+
// Pass formData for EMAIL and SMS channels for tag extraction
|
|
5272
5147
|
formData={
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
return previewContent.formData || null;
|
|
5281
|
-
}
|
|
5282
|
-
if (channelUpper === VIBER) {
|
|
5283
|
-
return previewContent;
|
|
5284
|
-
}
|
|
5285
|
-
return null;
|
|
5286
|
-
})()
|
|
5148
|
+
this.state.testAndPreviewContent &&
|
|
5149
|
+
(this.state.channel?.toUpperCase() === EMAIL ||
|
|
5150
|
+
this.state.channel?.toUpperCase() === SMS) &&
|
|
5151
|
+
typeof this.state.testAndPreviewContent === 'object' &&
|
|
5152
|
+
this.state.testAndPreviewContent?.formData
|
|
5153
|
+
? this.state.testAndPreviewContent.formData
|
|
5154
|
+
: null
|
|
5287
5155
|
}
|
|
5288
5156
|
/>
|
|
5289
5157
|
)}
|
|
@@ -546,10 +546,6 @@ export default defineMessages({
|
|
|
546
546
|
id: `${scope}.smsLegacyFormatBadge`,
|
|
547
547
|
defaultMessage: 'Legacy format',
|
|
548
548
|
},
|
|
549
|
-
"smsLegacyBlockedTooltip": {
|
|
550
|
-
id: `${scope}.smsLegacyBlockedTooltip`,
|
|
551
|
-
defaultMessage: "This template can't be used until re-registered with typed variables on the DLT portal.",
|
|
552
|
-
},
|
|
553
549
|
"uploadTemplate": {
|
|
554
550
|
id: `${scope}.uploadTemplate`,
|
|
555
551
|
defaultMessage: 'Upload template',
|
|
@@ -47,24 +47,7 @@ export const VIBER_MEDIA_TYPES = {
|
|
|
47
47
|
TEXT: 'TEXT',
|
|
48
48
|
IMAGE: 'IMAGE',
|
|
49
49
|
VIDEO: 'VIDEO',
|
|
50
|
-
CAROUSEL: 'CAROUSEL',
|
|
51
50
|
};
|
|
52
|
-
export const VIBER_CAROUSEL_MIN_CARDS = 2;
|
|
53
|
-
export const VIBER_CAROUSEL_MAX_CARDS = 5;
|
|
54
|
-
export const VIBER_CAROUSEL_MAX_BUTTONS = 2;
|
|
55
|
-
export const VIBER_CAROUSEL_CARD_TITLE_MIN_LENGTH = 2;
|
|
56
|
-
export const VIBER_CAROUSEL_CARD_TITLE_MAX_LENGTH = 38;
|
|
57
|
-
export const VIBER_CAROUSEL_FIRST_BUTTON_TITLE_MAX_LENGTH = 10;
|
|
58
|
-
export const VIBER_CAROUSEL_SECOND_BUTTON_TITLE_MAX_LENGTH = 12;
|
|
59
|
-
export const VIBER_CAROUSEL_BUTTON_URL_MAX_LENGTH = 1000;
|
|
60
|
-
export const STATIC_URL = 'STATIC_URL';
|
|
61
|
-
export const DYNAMIC_URL = 'DYNAMIC_URL';
|
|
62
|
-
/** Recommended / validated carousel image height in pixels (passed to image upload). */
|
|
63
|
-
export const VIBER_CAROUSEL_IMG_HEIGHT = 600;
|
|
64
|
-
/** Recommended / validated carousel image width in pixels (passed to image upload). */
|
|
65
|
-
export const VIBER_CAROUSEL_IMG_WIDTH = 696;
|
|
66
|
-
/** Maximum carousel image file size (bytes). 10_000_000 ≈ 10 MB (decimal). */
|
|
67
|
-
export const VIBER_CAROUSEL_IMG_SIZE = 10000000;
|
|
68
51
|
export const ALLOWED_IMAGE_EXTENSIONS_REGEX_VIBER = /\.(jpe?g|png)$/i;
|
|
69
52
|
export const ALLOWED_EXTENSIONS_VIDEO_REGEX_VIBER = /\.(mp4|3gp|m4v|mov)$/i;
|
|
70
53
|
export const NONE = 'NONE';
|
|
@@ -86,10 +69,6 @@ export const mediaRadioOptions = [
|
|
|
86
69
|
value: VIBER_MEDIA_TYPES.VIDEO,
|
|
87
70
|
label: <FormattedMessage {...messages.mediaVideo} />,
|
|
88
71
|
},
|
|
89
|
-
{
|
|
90
|
-
value: VIBER_MEDIA_TYPES.CAROUSEL,
|
|
91
|
-
label: <FormattedMessage {...messages.mediaCarousel} />,
|
|
92
|
-
},
|
|
93
72
|
];
|
|
94
73
|
|
|
95
74
|
export const buttonRadioOptions = [
|