@capillarytech/creatives-library 7.17.39 → 7.17.40

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.
Files changed (42) hide show
  1. package/components/CapTagList/index.js +1 -1
  2. package/components/CapTagList/messages.js +0 -4
  3. package/components/FormBuilder/index.js +2 -2
  4. package/components/FormBuilder/messages.js +0 -8
  5. package/containers/Assets/Gallery/index.js +1 -1
  6. package/containers/Assets/Gallery/messages.js +0 -4
  7. package/containers/Email/index.js +1 -1
  8. package/containers/Templates/index.js +1 -1
  9. package/containers/Templates/messages.js +0 -4
  10. package/index.js +2 -2
  11. package/package.json +1 -1
  12. package/services/api.js +6 -6
  13. package/utils/common.js +6 -3
  14. package/utils/tests/common.test.js +5 -5
  15. package/v2Components/CapTagList/index.js +2 -1
  16. package/v2Components/FormBuilder/index.js +1 -1
  17. package/v2Components/FormBuilder/messages.js +0 -4
  18. package/v2Components/TemplatePreview/_templatePreview.scss +40 -0
  19. package/v2Components/TemplatePreview/index.js +34 -0
  20. package/v2Components/TemplatePreview/tests/__snapshots__/index.test.js.snap +47 -0
  21. package/v2Components/TemplatePreview/tests/index.test.js +9 -0
  22. package/v2Containers/CreativesContainer/SlideBoxContent.js +12 -6
  23. package/v2Containers/CreativesContainer/SlideBoxHeader.js +2 -3
  24. package/v2Containers/CreativesContainer/index.js +55 -7
  25. package/v2Containers/CreativesContainer/messages.js +1 -9
  26. package/v2Containers/TagList/index.js +2 -0
  27. package/v2Containers/Templates/index.js +19 -4
  28. package/v2Containers/Templates/messages.js +4 -0
  29. package/v2Containers/Templates/tests/__snapshots__/index.test.js.snap +28 -129
  30. package/v2Containers/TemplatesV2/tests/index.test.js +1 -0
  31. package/v2Containers/Zalo/constants.js +0 -1
  32. package/v2Containers/Zalo/index.js +283 -189
  33. package/v2Containers/Zalo/index.scss +3 -4
  34. package/v2Containers/Zalo/messages.js +17 -5
  35. package/v2Containers/Zalo/saga.js +10 -4
  36. package/v2Containers/Zalo/selectors.js +8 -10
  37. package/v2Containers/Zalo/tests/index.test.js +67 -48
  38. package/v2Containers/Zalo/tests/mockData.js +5056 -5045
  39. package/v2Containers/Zalo/tests/reducer.test.js +3 -3
  40. package/v2Containers/Zalo/tests/saga.test.js +5 -2
  41. package/v2Containers/Zalo/tests/selector.test.js +28 -0
  42. package/v2Containers/Zalo/tests/selectors.test.js +0 -52
@@ -109,6 +109,7 @@ import { ZALO_STATUS_OPTIONS, ZALO_STATUSES } from '../Zalo/constants';
109
109
  import { getWhatsappContent, getWhatsappStatus, getWhatsappCategory, getWhatsappCta } from '../Whatsapp/utils';
110
110
  import { getRCSContent } from '../Rcs/utils';
111
111
  import zaloMessages from '../Zalo/messages'
112
+ import { handlePreviewInNewTab } from '../../utils/common';
112
113
 
113
114
  import { MOBILE_PUSH, WECHAT, SMS, EMAIL, EBILL, LINE, VIBER, FACEBOOK, WHATSAPP, RCS, ZALO } from '../CreativesContainer/constants';
114
115
 
@@ -621,7 +622,7 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
621
622
  }
622
623
  const zaloPreviewUrl = get(nextProps, 'Zalo.zaloTemplatePreviewData.versions.base.content.zalo.previewUrl', '');
623
624
  if (zaloPreviewUrl && this.state.channel.toLowerCase() === ZALO_LOWERCASE) {
624
- window.open(zaloPreviewUrl, '_blank');
625
+ handlePreviewInNewTab(zaloPreviewUrl);
625
626
  this.props.zaloActions.resetTemplateInfoData();
626
627
  }
627
628
  }
@@ -869,10 +870,11 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
869
870
  }
870
871
 
871
872
  filterZaloTemplates = (templates) => {
872
- const { selectedZaloStatus } = this.state;
873
+ let { selectedZaloStatus } = this.state;
874
+ selectedZaloStatus = !this.props.isFullMode ? ZALO_STATUSES.ENABLE : selectedZaloStatus;
873
875
  if (selectedZaloStatus) {
874
- return templates?.filter((template) => template?.versions?.base?.content?.zalo.status === selectedZaloStatus);
875
- }
876
+ return templates?.filter((template) => template?.versions?.base?.content?.zalo?.status === selectedZaloStatus);
877
+ }
876
878
  return templates;
877
879
  }
878
880
 
@@ -1909,6 +1911,12 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
1909
1911
 
1910
1912
  selectTemplate = (id) => find(this.props.TemplatesList, {_id: id})
1911
1913
 
1914
+ actionCallback = () => {
1915
+ CapNotification.error({
1916
+ message: this.props.intl.formatMessage(zaloMessages.zaloFailureNotificationPreview),
1917
+ });
1918
+ };
1919
+
1912
1920
  handlePreviewClick(template, modeType) {
1913
1921
  if (this.state.channel.toLowerCase() !== ZALO_LOWERCASE) {
1914
1922
  this.togglePreview();
@@ -1951,6 +1959,7 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
1951
1959
  token: token,
1952
1960
  id: template?._id,
1953
1961
  preview: true,
1962
+ actionCallback: this.actionCallback,
1954
1963
  });
1955
1964
  }
1956
1965
  }
@@ -2900,6 +2909,12 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
2900
2909
  ) : null
2901
2910
  }
2902
2911
 
2912
+ {
2913
+ channel.toLowerCase() === ZALO_LOWERCASE && !isFullMode ? (
2914
+ <CapInfoNote message={formatMessage(messages.zaloOnlyApprovedTemplates)} />
2915
+ ) : null
2916
+ }
2917
+
2903
2918
  <CapRow>
2904
2919
  <Pagination onPageChange={templates.length ? this.onPaginationChange : () => {}} paginationSelector="pagination-container">
2905
2920
  {this.getTemplateDataForGrid({ isLoading, loadingTip, channel: this.state.channel, templates: this.state.searchingZaloTemplate ? this.state.searchedZaloTemplates : this.props.TemplatesList, filterContent, handlers: { handlePreviewClick: this.handlePreviewClick, handleEditClick: this.handleEditClick}})}
@@ -502,4 +502,8 @@ export default defineMessages({
502
502
  id: `${scope}.zaloPreview`,
503
503
  defaultMessage: 'Open preview in new tab',
504
504
  },
505
+ "zaloOnlyApprovedTemplates": {
506
+ id: `${scope}.zaloOnlyApprovedTemplates`,
507
+ defaultMessage: 'Only enabled/approved templates are shown here',
508
+ },
505
509
  });
@@ -1038,134 +1038,6 @@ exports[`Test Templates container Should render temlates when zalo templates are
1038
1038
  tip="Getting all templates..."
1039
1039
  >
1040
1040
  <div>
1041
- <div
1042
- className="pagination-container"
1043
- >
1044
- <CapCustomCardList
1045
- cardList={
1046
- Array [
1047
- Object {
1048
- "content": <CapLabel
1049
- className="zalo-listing-content desc"
1050
- type="label19"
1051
- >
1052
- Test1
1053
- </CapLabel>,
1054
- "extra": Array [
1055
- <CapTooltip
1056
- title="Open preview in new tab"
1057
- >
1058
- <CapIcon
1059
- className="view-zalo"
1060
- onClick={[Function]}
1061
- style={
1062
- Object {
1063
- "marginRight": "16px",
1064
- }
1065
- }
1066
- type="eye"
1067
- />
1068
- </CapTooltip>,
1069
- ],
1070
- "hoverOption": <CapButton
1071
- className="select-zalo"
1072
- isAddBtn={false}
1073
- onClick={[Function]}
1074
- type="primary"
1075
- >
1076
- Select
1077
- </CapButton>,
1078
- "key": "ZALO-card-Test1",
1079
- "title": <CapRow>
1080
- <CapLabel
1081
- className="zalo-template-name"
1082
- type="label1"
1083
- >
1084
-
1085
- </CapLabel>
1086
- <CapRow
1087
- align="middle"
1088
- className="zalo-status-container"
1089
- type="flex"
1090
- >
1091
- <CapStatus
1092
- color=""
1093
- height="0.571rem"
1094
- labelType="label3"
1095
- text=""
1096
- type="pending"
1097
- width="0.571rem"
1098
- />
1099
- </CapRow>
1100
- </CapRow>,
1101
- },
1102
- Object {
1103
- "content": <CapLabel
1104
- className="zalo-listing-content desc"
1105
- type="label19"
1106
- >
1107
- Test2
1108
- </CapLabel>,
1109
- "extra": Array [
1110
- <CapTooltip
1111
- title="Open preview in new tab"
1112
- >
1113
- <CapIcon
1114
- className="view-zalo"
1115
- onClick={[Function]}
1116
- style={
1117
- Object {
1118
- "marginRight": "16px",
1119
- }
1120
- }
1121
- type="eye"
1122
- />
1123
- </CapTooltip>,
1124
- ],
1125
- "hoverOption": <CapButton
1126
- className="select-zalo"
1127
- isAddBtn={false}
1128
- onClick={[Function]}
1129
- type="primary"
1130
- >
1131
- Select
1132
- </CapButton>,
1133
- "key": "ZALO-card-Test2",
1134
- "title": <CapRow>
1135
- <CapLabel
1136
- className="zalo-template-name"
1137
- type="label1"
1138
- >
1139
-
1140
- </CapLabel>
1141
- <CapRow
1142
- align="middle"
1143
- className="zalo-status-container"
1144
- type="flex"
1145
- >
1146
- <CapStatus
1147
- color=""
1148
- height="0.571rem"
1149
- labelType="label3"
1150
- text=""
1151
- type="pending"
1152
- width="0.571rem"
1153
- />
1154
- </CapRow>
1155
- </CapRow>,
1156
- },
1157
- ]
1158
- }
1159
- fbType="list"
1160
- key="ZALO-card-list"
1161
- style={
1162
- Object {
1163
- "marginLeft": "16px",
1164
- }
1165
- }
1166
- type="ZALO"
1167
- />
1168
- </div>
1169
1041
  <div
1170
1042
  style={
1171
1043
  Object {
@@ -1173,7 +1045,34 @@ exports[`Test Templates container Should render temlates when zalo templates are
1173
1045
  "overflow": "auto",
1174
1046
  }
1175
1047
  }
1176
- />
1048
+ >
1049
+ <CapHeader
1050
+ description={
1051
+ <CapLabel
1052
+ style={
1053
+ Object {
1054
+ "textAlign": "center",
1055
+ }
1056
+ }
1057
+ type="label1"
1058
+ >
1059
+ Please try searching with another term or apply different filter
1060
+ </CapLabel>
1061
+ }
1062
+ descriptionClass=""
1063
+ inline={false}
1064
+ size="large"
1065
+ title={
1066
+ <CapHeading
1067
+ className="channel-specific-illustration-text"
1068
+ type="h3"
1069
+ >
1070
+ Sorry, we couldn’t find any matches
1071
+ </CapHeading>
1072
+ }
1073
+ titleClass=""
1074
+ />
1075
+ </div>
1177
1076
  </div>
1178
1077
  </CapSpin>
1179
1078
  </div>
@@ -93,6 +93,7 @@ describe("Test TemplatesV2", () => {
93
93
  expect(getByText('Viber')).toBeInTheDocument();
94
94
  expect(getByText('Facebook')).toBeInTheDocument();
95
95
  expect(getByText('WhatsApp')).toBeInTheDocument();
96
+ expect(getByText('Zalo')).toBeInTheDocument();
96
97
  expect(getByText('Gallery')).toBeInTheDocument();
97
98
  });
98
99
  });
@@ -10,7 +10,6 @@ export const ERROR = 'ERROR';
10
10
  export const STRING = 'STRING';
11
11
  export const NUMBER = 'NUMBER';
12
12
  export const DATE = 'DATE';
13
- export const ENABLE = 'ENABLE';
14
13
 
15
14
  export const TAG = 'TAG';
16
15
  export const EMBEDDED = 'embedded';