@capillarytech/creatives-library 9.0.53-alpha.3 → 9.0.53
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 +1 -0
- package/package.json +1 -1
- package/services/api.js +0 -9
- package/utils/common.js +4 -0
- package/v2Components/CommonTestAndPreview/UnifiedPreview/ViberCarouselPreviewCards.js +127 -0
- package/v2Components/CommonTestAndPreview/UnifiedPreview/ViberPreviewContent.js +106 -15
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +139 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_viberCarouselPreviewCards.scss +133 -0
- package/v2Components/CommonTestAndPreview/constants.js +2 -0
- package/v2Components/CommonTestAndPreview/index.js +240 -26
- package/v2Components/CommonTestAndPreview/tests/UnifiedPreview/ViberPreviewContent.test.js +364 -0
- package/v2Components/CommonTestAndPreview/tests/utils.test.js +49 -0
- package/v2Components/CommonTestAndPreview/utils.js +20 -0
- package/v2Containers/CommunicationFlow/CommunicationFlow.js +58 -93
- package/v2Containers/CommunicationFlow/CommunicationFlowCard.js +4 -20
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlow.test.js +49 -194
- package/v2Containers/CommunicationFlow/Tests/CommunicationFlowCard.test.js +0 -16
- package/v2Containers/CommunicationFlow/constants.js +0 -47
- package/v2Containers/CommunicationFlow/index.js +20 -15
- package/v2Containers/CommunicationFlow/messages.js +0 -4
- package/v2Containers/Templates/_templates.scss +179 -1
- package/v2Containers/Templates/index.js +100 -10
- package/v2Containers/Viber/constants.js +23 -0
- package/v2Containers/Viber/index.js +718 -43
- package/v2Containers/Viber/index.scss +175 -0
- package/v2Containers/Viber/messages.js +121 -0
- package/v2Containers/Viber/tests/index.test.js +80 -0
|
@@ -246,6 +246,8 @@ const CommonTestAndPreview = (props) => {
|
|
|
246
246
|
const [smsFallbackPreviewText, setSmsFallbackPreviewText] = useState(undefined);
|
|
247
247
|
// Track if a preview call has been made (to know when to use previewDataHtml vs raw content)
|
|
248
248
|
const [hasPreviewCallBeenMade, setHasPreviewCallBeenMade] = useState(false);
|
|
249
|
+
// Viber: tag values applied to preview only after explicit Update preview / Discard (not while typing)
|
|
250
|
+
const [viberPreviewTagValues, setViberPreviewTagValues] = useState(null);
|
|
249
251
|
const [previewDataHtml, setPreviewDataHtml] = useState(() => {
|
|
250
252
|
// Initialize preview data based on channel
|
|
251
253
|
if (channel === CHANNELS.EMAIL && formData) {
|
|
@@ -687,6 +689,159 @@ const CommonTestAndPreview = (props) => {
|
|
|
687
689
|
return resolvedText;
|
|
688
690
|
};
|
|
689
691
|
|
|
692
|
+
const getViberMergedFormData = useCallback((formDataOverride) => {
|
|
693
|
+
const formDataObj = formDataOverride && typeof formDataOverride === 'object'
|
|
694
|
+
? formDataOverride
|
|
695
|
+
: (formData && typeof formData === 'object' ? formData : {});
|
|
696
|
+
let contentObj = {};
|
|
697
|
+
if (content && typeof content === 'object') {
|
|
698
|
+
contentObj = content;
|
|
699
|
+
} else if (typeof content === 'string' && content.trim()) {
|
|
700
|
+
try {
|
|
701
|
+
contentObj = JSON.parse(content);
|
|
702
|
+
} catch (e) {
|
|
703
|
+
contentObj = {};
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
const previewCards = formDataObj?.viberPreviewContent?.cards
|
|
707
|
+
?? formDataObj?.cards
|
|
708
|
+
?? contentObj?.viberPreviewContent?.cards
|
|
709
|
+
?? contentObj?.cards;
|
|
710
|
+
const isCarousel = Boolean(
|
|
711
|
+
formDataObj.type === MEDIA_TYPE_CAROUSEL
|
|
712
|
+
|| contentObj.type === MEDIA_TYPE_CAROUSEL
|
|
713
|
+
|| (Array.isArray(previewCards) && previewCards.length > 0),
|
|
714
|
+
);
|
|
715
|
+
const mergedPreview = {
|
|
716
|
+
...(contentObj.viberPreviewContent || {}),
|
|
717
|
+
...(formDataObj.viberPreviewContent || {}),
|
|
718
|
+
...(Array.isArray(previewCards) && previewCards.length ? { cards: previewCards } : {}),
|
|
719
|
+
...(isCarousel ? {
|
|
720
|
+
type: MEDIA_TYPE_CAROUSEL,
|
|
721
|
+
showCarouselEditorPreview: true,
|
|
722
|
+
} : {}),
|
|
723
|
+
};
|
|
724
|
+
return {
|
|
725
|
+
...contentObj,
|
|
726
|
+
...formDataObj,
|
|
727
|
+
...(Array.isArray(previewCards) && previewCards.length ? { cards: previewCards } : {}),
|
|
728
|
+
...(isCarousel ? { type: MEDIA_TYPE_CAROUSEL } : {}),
|
|
729
|
+
...(Object.keys(mergedPreview).length ? { viberPreviewContent: mergedPreview } : {}),
|
|
730
|
+
};
|
|
731
|
+
}, [formData, content]);
|
|
732
|
+
|
|
733
|
+
const getViberCarouselCardsFromFormData = (formDataObj) => {
|
|
734
|
+
const previewCards = formDataObj?.viberPreviewContent?.cards;
|
|
735
|
+
if (Array.isArray(previewCards) && previewCards.length) {
|
|
736
|
+
return previewCards;
|
|
737
|
+
}
|
|
738
|
+
const rootCards = formDataObj?.cards;
|
|
739
|
+
if (Array.isArray(rootCards) && rootCards.length) {
|
|
740
|
+
return rootCards;
|
|
741
|
+
}
|
|
742
|
+
return [];
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
const getViberTagExtractionContent = (formDataObj, contentStr = '') => {
|
|
746
|
+
const messageText = formDataObj?.messageContent
|
|
747
|
+
|| formDataObj?.viberPreviewContent?.messageContent
|
|
748
|
+
|| contentStr
|
|
749
|
+
|| '';
|
|
750
|
+
const cardFieldTexts = getViberCarouselCardsFromFormData(formDataObj).flatMap((card) => {
|
|
751
|
+
const fields = [card?.text || ''];
|
|
752
|
+
(card?.buttons || []).forEach((button) => {
|
|
753
|
+
fields.push(button?.title || '', button?.action || '');
|
|
754
|
+
});
|
|
755
|
+
return fields;
|
|
756
|
+
});
|
|
757
|
+
return [messageText, ...cardFieldTexts]
|
|
758
|
+
.filter((value) => typeof value === 'string' && value.trim())
|
|
759
|
+
.join(' ');
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
const resolveViberCarouselCards = (cards, tagValues) => {
|
|
763
|
+
if (!Array.isArray(cards) || !tagValues || !Object.keys(tagValues).length) {
|
|
764
|
+
return cards;
|
|
765
|
+
}
|
|
766
|
+
return cards.map((card) => ({
|
|
767
|
+
...card,
|
|
768
|
+
text: resolveTagsInText(card?.text || '', tagValues),
|
|
769
|
+
buttons: (card?.buttons || []).map((button) => ({
|
|
770
|
+
...button,
|
|
771
|
+
title: resolveTagsInText(button?.title || '', tagValues),
|
|
772
|
+
action: resolveTagsInText(button?.action || '', tagValues),
|
|
773
|
+
})),
|
|
774
|
+
}));
|
|
775
|
+
};
|
|
776
|
+
|
|
777
|
+
const applyViberCustomValuesToContent = (contentObj, tagValues) => {
|
|
778
|
+
if (!contentObj || typeof contentObj !== 'object' || !tagValues || !Object.keys(tagValues).length) {
|
|
779
|
+
return contentObj;
|
|
780
|
+
}
|
|
781
|
+
const result = { ...contentObj };
|
|
782
|
+
if (typeof result.messageContent === 'string') {
|
|
783
|
+
result.messageContent = resolveTagsInText(result.messageContent, tagValues);
|
|
784
|
+
}
|
|
785
|
+
if (Array.isArray(result.cards)) {
|
|
786
|
+
result.cards = resolveViberCarouselCards(result.cards, tagValues);
|
|
787
|
+
}
|
|
788
|
+
if (result.viberPreviewContent && typeof result.viberPreviewContent === 'object') {
|
|
789
|
+
const preview = result.viberPreviewContent;
|
|
790
|
+
result.viberPreviewContent = {
|
|
791
|
+
...preview,
|
|
792
|
+
messageContent: resolveTagsInText(preview.messageContent || '', tagValues),
|
|
793
|
+
cards: resolveViberCarouselCards(preview.cards, tagValues),
|
|
794
|
+
};
|
|
795
|
+
}
|
|
796
|
+
return result;
|
|
797
|
+
};
|
|
798
|
+
|
|
799
|
+
const mergeViberPreviewWithResolved = (base, resolved) => {
|
|
800
|
+
if (!resolved || typeof resolved !== 'object') {
|
|
801
|
+
return base && typeof base === 'object' ? base : {};
|
|
802
|
+
}
|
|
803
|
+
const baseObj = base && typeof base === 'object' ? base : {};
|
|
804
|
+
const basePreview = baseObj.viberPreviewContent || {};
|
|
805
|
+
const resolvedPreview = resolved.viberPreviewContent || {};
|
|
806
|
+
const baseCards = basePreview.cards || baseObj.cards || [];
|
|
807
|
+
const resolvedCards = resolvedPreview.cards || resolved.cards || [];
|
|
808
|
+
const mergedCards = baseCards.length
|
|
809
|
+
? baseCards.map((card, index) => {
|
|
810
|
+
const resolvedCard = resolvedCards[index];
|
|
811
|
+
if (!resolvedCard) {
|
|
812
|
+
return card;
|
|
813
|
+
}
|
|
814
|
+
return {
|
|
815
|
+
...card,
|
|
816
|
+
...(resolvedCard.text != null ? { text: resolvedCard.text } : {}),
|
|
817
|
+
...(resolvedCard.mediaUrl != null ? { mediaUrl: resolvedCard.mediaUrl } : {}),
|
|
818
|
+
buttons: (card.buttons || []).map((button, buttonIndex) => ({
|
|
819
|
+
...button,
|
|
820
|
+
...(resolvedCard.buttons?.[buttonIndex] || {}),
|
|
821
|
+
})),
|
|
822
|
+
};
|
|
823
|
+
})
|
|
824
|
+
: resolvedCards;
|
|
825
|
+
const resolvedMessage = resolved.messageContent ?? resolvedPreview.messageContent;
|
|
826
|
+
|
|
827
|
+
return {
|
|
828
|
+
...baseObj,
|
|
829
|
+
...resolved,
|
|
830
|
+
viberPreviewContent: {
|
|
831
|
+
...basePreview,
|
|
832
|
+
...resolvedPreview,
|
|
833
|
+
type: resolvedPreview.type || basePreview.type || baseObj.type || (mergedCards.length ? MEDIA_TYPE_CAROUSEL : ''),
|
|
834
|
+
cards: mergedCards.length ? mergedCards : (resolvedPreview.cards || basePreview.cards),
|
|
835
|
+
showCarouselEditorPreview: Boolean(
|
|
836
|
+
basePreview.showCarouselEditorPreview
|
|
837
|
+
|| resolvedPreview.showCarouselEditorPreview
|
|
838
|
+
|| mergedCards.length > 0,
|
|
839
|
+
),
|
|
840
|
+
...(resolvedMessage != null ? { messageContent: resolvedMessage } : {}),
|
|
841
|
+
},
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
|
|
690
845
|
/**
|
|
691
846
|
* Common handler for saving test customers (both new and existing)
|
|
692
847
|
*/
|
|
@@ -965,11 +1120,13 @@ const CommonTestAndPreview = (props) => {
|
|
|
965
1120
|
templateContent: formDataObj?.bodyText || contentStr,
|
|
966
1121
|
};
|
|
967
1122
|
|
|
968
|
-
case CHANNELS.VIBER:
|
|
1123
|
+
case CHANNELS.VIBER: {
|
|
1124
|
+
const viberFormData = getViberMergedFormData(formDataObj);
|
|
969
1125
|
return {
|
|
970
|
-
templateSubject:
|
|
971
|
-
templateContent: contentStr,
|
|
1126
|
+
templateSubject: viberFormData?.messageTitle || '',
|
|
1127
|
+
templateContent: getViberTagExtractionContent(viberFormData, contentStr),
|
|
972
1128
|
};
|
|
1129
|
+
}
|
|
973
1130
|
|
|
974
1131
|
case CHANNELS.WEBPUSH:
|
|
975
1132
|
return {
|
|
@@ -2024,11 +2181,16 @@ const CommonTestAndPreview = (props) => {
|
|
|
2024
2181
|
// 1. formDataObj from getTemplateContent (contains both viberPreviewContent and payload fields)
|
|
2025
2182
|
// 2. formDataObj[0] (array format - legacy)
|
|
2026
2183
|
// 3. contentStr (direct string - legacy)
|
|
2184
|
+
// Merge content prop so listing / preview-only flows include carousel card tags
|
|
2185
|
+
const viberFormData = getViberMergedFormData(formDataObj);
|
|
2186
|
+
formDataObj = viberFormData;
|
|
2027
2187
|
|
|
2028
2188
|
let messageText = '';
|
|
2029
2189
|
let imageData = null;
|
|
2030
2190
|
let videoData = null;
|
|
2031
2191
|
let buttonData = null;
|
|
2192
|
+
let cardsData = [];
|
|
2193
|
+
let messageType = '';
|
|
2032
2194
|
let accountId = null;
|
|
2033
2195
|
let accountDetails = null;
|
|
2034
2196
|
let scenarioKey = '';
|
|
@@ -2043,6 +2205,8 @@ const CommonTestAndPreview = (props) => {
|
|
|
2043
2205
|
imageData = formDataObj.image || null;
|
|
2044
2206
|
videoData = formDataObj.video || null;
|
|
2045
2207
|
buttonData = formDataObj.button || null;
|
|
2208
|
+
cardsData = formDataObj.cards || [];
|
|
2209
|
+
messageType = formDataObj.type || '';
|
|
2046
2210
|
accountId = formDataObj.accountId || null;
|
|
2047
2211
|
accountDetails = formDataObj.accountDetails || null;
|
|
2048
2212
|
scenarioKey = formDataObj.scenarioKey || VIBER_API_SCENARIO_KEY;
|
|
@@ -2069,6 +2233,8 @@ const CommonTestAndPreview = (props) => {
|
|
|
2069
2233
|
url: formDataObj?.buttonURL || '',
|
|
2070
2234
|
};
|
|
2071
2235
|
}
|
|
2236
|
+
cardsData = viberPreview.cards || formDataObj?.cards || [];
|
|
2237
|
+
messageType = viberPreview.type || formDataObj?.type || '';
|
|
2072
2238
|
// Extract account info from parent formDataObj if available
|
|
2073
2239
|
accountId = formDataObj.accountId || null;
|
|
2074
2240
|
accountDetails = formDataObj.accountDetails || null;
|
|
@@ -2111,6 +2277,10 @@ const CommonTestAndPreview = (props) => {
|
|
|
2111
2277
|
text: messageText,
|
|
2112
2278
|
};
|
|
2113
2279
|
|
|
2280
|
+
if (messageType === CHANNELS.VIBER) {
|
|
2281
|
+
messageType = '';
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2114
2284
|
// Add image if present
|
|
2115
2285
|
if (imageData && imageData.url) {
|
|
2116
2286
|
viberContent.image = {
|
|
@@ -2139,9 +2309,34 @@ const CommonTestAndPreview = (props) => {
|
|
|
2139
2309
|
}
|
|
2140
2310
|
}
|
|
2141
2311
|
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
viberContent.
|
|
2312
|
+
if (messageType === MEDIA_TYPE_CAROUSEL || (Array.isArray(cardsData) && cardsData.length)) {
|
|
2313
|
+
viberContent.type = MEDIA_TYPE_CAROUSEL;
|
|
2314
|
+
viberContent.cards = (cardsData || []).map((card) => ({
|
|
2315
|
+
text: card?.text || '',
|
|
2316
|
+
mediaUrl: card?.mediaUrl || '',
|
|
2317
|
+
buttons: (card?.buttons || []).map((button) => ({
|
|
2318
|
+
title: button?.title || '',
|
|
2319
|
+
action: button?.action || '',
|
|
2320
|
+
})),
|
|
2321
|
+
}));
|
|
2322
|
+
delete viberContent.button;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
// Resolve tags in text/cards if custom values are provided
|
|
2326
|
+
if (customValuesObj && Object.keys(customValuesObj).length > 0) {
|
|
2327
|
+
if (viberContent.text) {
|
|
2328
|
+
viberContent.text = resolveTagsInText(viberContent.text, customValuesObj);
|
|
2329
|
+
}
|
|
2330
|
+
if (Array.isArray(viberContent.cards)) {
|
|
2331
|
+
viberContent.cards = resolveViberCarouselCards(viberContent.cards, customValuesObj);
|
|
2332
|
+
}
|
|
2333
|
+
if (viberContent.button) {
|
|
2334
|
+
viberContent.button = {
|
|
2335
|
+
...viberContent.button,
|
|
2336
|
+
text: resolveTagsInText(viberContent.button.text || '', customValuesObj),
|
|
2337
|
+
url: resolveTagsInText(viberContent.button.url || '', customValuesObj),
|
|
2338
|
+
};
|
|
2339
|
+
}
|
|
2145
2340
|
}
|
|
2146
2341
|
|
|
2147
2342
|
// Build messageBody JSON string
|
|
@@ -2533,33 +2728,39 @@ const CommonTestAndPreview = (props) => {
|
|
|
2533
2728
|
// Only use previewDataHtml if preview call was made
|
|
2534
2729
|
if (hasPreviewCallBeenMade && previewDataHtml?.resolvedBody) {
|
|
2535
2730
|
resolvedContent = previewDataHtml.resolvedBody;
|
|
2731
|
+
if (typeof resolvedContent === 'string') {
|
|
2732
|
+
try {
|
|
2733
|
+
resolvedContent = JSON.parse(resolvedContent);
|
|
2734
|
+
} catch (e) {
|
|
2735
|
+
resolvedContent = null;
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2536
2738
|
}
|
|
2537
2739
|
|
|
2538
|
-
// Parse content if it's a string
|
|
2539
|
-
let parsedViberContent =
|
|
2540
|
-
if (typeof
|
|
2541
|
-
|
|
2542
|
-
parsedViberContent = JSON.parse(content);
|
|
2543
|
-
} catch (e) {
|
|
2544
|
-
parsedViberContent = {};
|
|
2545
|
-
}
|
|
2740
|
+
// Parse content if it's a string, then merge with formData for carousel + tags in all entry flows
|
|
2741
|
+
let parsedViberContent = getViberMergedFormData();
|
|
2742
|
+
if (!parsedViberContent || typeof parsedViberContent !== 'object') {
|
|
2743
|
+
parsedViberContent = {};
|
|
2546
2744
|
}
|
|
2547
|
-
//
|
|
2745
|
+
// Merge template preview state with API resolved body so carousel type/cards survive slim responses
|
|
2548
2746
|
if (resolvedContent && typeof resolvedContent === 'object') {
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
if (
|
|
2552
|
-
contentObj.accountName =
|
|
2747
|
+
const base = parsedViberContent && typeof parsedViberContent === 'object' ? parsedViberContent : {};
|
|
2748
|
+
contentObj = mergeViberPreviewWithResolved(base, resolvedContent);
|
|
2749
|
+
if (base.accountName && !contentObj.accountName) {
|
|
2750
|
+
contentObj.accountName = base.accountName;
|
|
2553
2751
|
}
|
|
2554
|
-
if (
|
|
2555
|
-
contentObj.brandName =
|
|
2752
|
+
if (base.brandName && !contentObj.brandName) {
|
|
2753
|
+
contentObj.brandName = base.brandName;
|
|
2556
2754
|
}
|
|
2557
2755
|
} else {
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2756
|
+
contentObj = parsedViberContent && typeof parsedViberContent === 'object' ? parsedViberContent : {};
|
|
2757
|
+
}
|
|
2758
|
+
if (
|
|
2759
|
+
hasPreviewCallBeenMade
|
|
2760
|
+
&& viberPreviewTagValues
|
|
2761
|
+
&& Object.keys(viberPreviewTagValues).length > 0
|
|
2762
|
+
) {
|
|
2763
|
+
contentObj = applyViberCustomValuesToContent(contentObj, viberPreviewTagValues);
|
|
2563
2764
|
}
|
|
2564
2765
|
} else if (channel === CHANNELS.ZALO) {
|
|
2565
2766
|
// For Zalo, content is an object with templatePreviewUrl, templateStatus, etc.
|
|
@@ -2943,6 +3144,11 @@ const CommonTestAndPreview = (props) => {
|
|
|
2943
3144
|
|
|
2944
3145
|
setCustomValues(updatedValues);
|
|
2945
3146
|
|
|
3147
|
+
// Viber: do not auto-resolve tags in preview; user must click Update preview
|
|
3148
|
+
if (channel === CHANNELS.VIBER) {
|
|
3149
|
+
return;
|
|
3150
|
+
}
|
|
3151
|
+
|
|
2946
3152
|
// Update preview with prefilled values (this is a valid preview call trigger)
|
|
2947
3153
|
// For RCS: always dispatch with RCS channel/content so previewDataHtml stays RCS-shaped.
|
|
2948
3154
|
// SMS fallback preview is kept in sync by syncSmsFallbackPreview via smsFallbackPreviewText.
|
|
@@ -3025,6 +3231,7 @@ const CommonTestAndPreview = (props) => {
|
|
|
3025
3231
|
setPreviewDevice(DESKTOP);
|
|
3026
3232
|
setPreviewDataHtml('');
|
|
3027
3233
|
setHasPreviewCallBeenMade(false); // Reset preview call flag
|
|
3234
|
+
setViberPreviewTagValues(null);
|
|
3028
3235
|
setSelectedTestEntities([]);
|
|
3029
3236
|
setBeeContent('');
|
|
3030
3237
|
previousBeeContentRef.current = '';
|
|
@@ -3062,6 +3269,7 @@ const CommonTestAndPreview = (props) => {
|
|
|
3062
3269
|
const handleClearSelection = () => {
|
|
3063
3270
|
setSelectedCustomer(null);
|
|
3064
3271
|
setHasPreviewCallBeenMade(false); // Reset flag when customer is cleared
|
|
3272
|
+
setViberPreviewTagValues(null);
|
|
3065
3273
|
|
|
3066
3274
|
// Clear all preview errors when customer is cleared
|
|
3067
3275
|
actions.clearPreviewErrors();
|
|
@@ -3120,6 +3328,9 @@ const CommonTestAndPreview = (props) => {
|
|
|
3120
3328
|
emptyValues,
|
|
3121
3329
|
selectedCustomer
|
|
3122
3330
|
);
|
|
3331
|
+
if (channel === CHANNELS.VIBER) {
|
|
3332
|
+
setViberPreviewTagValues({ ...emptyValues });
|
|
3333
|
+
}
|
|
3123
3334
|
actions.updatePreviewRequested(payload);
|
|
3124
3335
|
setHasPreviewCallBeenMade(true); // Mark that preview call was made
|
|
3125
3336
|
};
|
|
@@ -3145,6 +3356,9 @@ const CommonTestAndPreview = (props) => {
|
|
|
3145
3356
|
customValues,
|
|
3146
3357
|
selectedCustomer
|
|
3147
3358
|
);
|
|
3359
|
+
if (channel === CHANNELS.VIBER) {
|
|
3360
|
+
setViberPreviewTagValues({ ...customValues });
|
|
3361
|
+
}
|
|
3148
3362
|
await actions.updatePreviewRequested(payload);
|
|
3149
3363
|
|
|
3150
3364
|
await syncSmsFallbackPreview(customValues, selectedCustomer);
|