@bikdotai/bik-widgets 1.0.0

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 (206) hide show
  1. package/.eslintrc +22 -0
  2. package/.eslintrc.js +19 -0
  3. package/.github/workflows/main.yml +293 -0
  4. package/.prettierignore +13 -0
  5. package/.prettierrc +10 -0
  6. package/README.md +128 -0
  7. package/cypress/apiHelper/endpoints.ts +21 -0
  8. package/cypress/apiHelper/executor.ts +42 -0
  9. package/cypress/e2e/bottomDrawer.cy.ts +49 -0
  10. package/cypress/e2e/directReward.cy.ts +67 -0
  11. package/cypress/e2e/scratchTheCard.cy.ts +68 -0
  12. package/cypress/e2e/stw.cy.ts +82 -0
  13. package/cypress/e2e/waRedirection.cy.ts +46 -0
  14. package/cypress/fixtures/payloads.ts +330 -0
  15. package/cypress/support/commands.ts +37 -0
  16. package/cypress/support/e2e.ts +20 -0
  17. package/cypress.staging.config.ts +23 -0
  18. package/jsconfig.json +6 -0
  19. package/localtest.sh +10 -0
  20. package/log-server.js +86 -0
  21. package/package.json +79 -0
  22. package/postcss.config.js +8 -0
  23. package/src/Globals.d.ts +2 -0
  24. package/src/assets/lottie/santa.json +11722 -0
  25. package/src/assets/svg/CalendarClockIcon.tsx +30 -0
  26. package/src/assets/svg/CalendarIcon.tsx +24 -0
  27. package/src/assets/svg/CheckIcon.tsx +17 -0
  28. package/src/assets/svg/ChevronIcon.tsx +21 -0
  29. package/src/assets/svg/Close.tsx +39 -0
  30. package/src/assets/svg/Confetti.tsx +140 -0
  31. package/src/assets/svg/Copy.tsx +26 -0
  32. package/src/assets/svg/DropdownCheckIcon.tsx +35 -0
  33. package/src/assets/svg/ErrorIcon.tsx +27 -0
  34. package/src/assets/svg/RadioIcon.tsx +25 -0
  35. package/src/assets/svg/UncheckedCheckboxIcon.tsx +28 -0
  36. package/src/assets/svg/UncheckedRadioIcon.tsx +26 -0
  37. package/src/assets/svg/info.tsx +30 -0
  38. package/src/assets/svg/qrcode.svg +14 -0
  39. package/src/bootstrap.tsx +8 -0
  40. package/src/components/CtaCard/index.tsx +37 -0
  41. package/src/components/CtaCard/preview.module.css +32 -0
  42. package/src/components/CtaCard/style.module.css +32 -0
  43. package/src/components/EmailInput/emailInputBox.tsx +95 -0
  44. package/src/components/Fab/index.tsx +224 -0
  45. package/src/components/Fab/preview.module.css +28 -0
  46. package/src/components/Fab/style.module.css +37 -0
  47. package/src/components/Icons/Call.tsx +26 -0
  48. package/src/components/Icons/Cross.tsx +24 -0
  49. package/src/components/Icons/Gmail.tsx +61 -0
  50. package/src/components/Icons/Instagram.tsx +60 -0
  51. package/src/components/Icons/LiveChat.tsx +43 -0
  52. package/src/components/Icons/Messenger.tsx +57 -0
  53. package/src/components/Icons/Send.tsx +22 -0
  54. package/src/components/Icons/Whatsapp.tsx +24 -0
  55. package/src/components/Shimmer/index.tsx +12 -0
  56. package/src/components/Shimmer/style.module.css +37 -0
  57. package/src/components/SmsInput/smsInputBox.tsx +135 -0
  58. package/src/components/UserDetailsV2/userDetailsV2.desktop.module.css +52 -0
  59. package/src/components/UserDetailsV2/userDetailsV2.mobile.module.css +52 -0
  60. package/src/components/UserDetailsV2/userDetailsV2.module.css +81 -0
  61. package/src/components/UserDetailsV2/userDetailsV2.tsx +527 -0
  62. package/src/components/WhatsappInput/Spinner.tsx +26 -0
  63. package/src/components/WhatsappInput/whatsappInput.module.css +106 -0
  64. package/src/components/WhatsappInput/whatsappInputBox.tsx +155 -0
  65. package/src/components/WhatsappInput/whatsappInputPreviewDesktop.module.css +71 -0
  66. package/src/components/WhatsappInput/whatsappInputPreviewMobile.module.css +65 -0
  67. package/src/components/checkbox/checkbox.module.css +19 -0
  68. package/src/components/checkbox/checkbox.tsx +88 -0
  69. package/src/components/countryCodePicker/countriesDropdown.module.css +77 -0
  70. package/src/components/countryCodePicker/countriesDropdown.tsx +81 -0
  71. package/src/components/couponDetails/coupon.module.css +208 -0
  72. package/src/components/couponDetails/coupon.tsx +210 -0
  73. package/src/components/couponDetails/couponPreviewDesktop.module.css +158 -0
  74. package/src/components/couponDetails/couponPreviewMobile.module.css +164 -0
  75. package/src/components/index.ts +3 -0
  76. package/src/components/inputComponents/Checkbox.module.css +197 -0
  77. package/src/components/inputComponents/Checkbox.tsx +85 -0
  78. package/src/components/inputComponents/DatePicker.module.css +565 -0
  79. package/src/components/inputComponents/DatePicker.tsx +278 -0
  80. package/src/components/inputComponents/Dropdown.module.css +796 -0
  81. package/src/components/inputComponents/Dropdown.tsx +630 -0
  82. package/src/components/inputComponents/InputBox.module.css +401 -0
  83. package/src/components/inputComponents/InputBox.tsx +209 -0
  84. package/src/components/selectedCountry/selectedCountry.module.css +76 -0
  85. package/src/components/selectedCountry/selectedCountry.tsx +76 -0
  86. package/src/components/selectedCountry/selectedCountryPreviewDesktop.module.css +56 -0
  87. package/src/components/selectedCountry/selectedCountryPreviewMobile.module.css +57 -0
  88. package/src/components/userDetailsForm/RenderCustomFields.tsx +333 -0
  89. package/src/components/userDetailsForm/userDetailsForm.tsx +675 -0
  90. package/src/hooks/index.ts +4 -0
  91. package/src/hooks/useExitIntent.ts +452 -0
  92. package/src/hooks/useIsMobile.tsx +21 -0
  93. package/src/hooks/useMessageEvent.ts +8 -0
  94. package/src/hooks/useTriggeredIntentDetails.ts +43 -0
  95. package/src/hooks/useUrlListerner.ts +30 -0
  96. package/src/hooks/useWebSocketLogger.ts +59 -0
  97. package/src/hooks/useWindowEvent.ts +8 -0
  98. package/src/icons/copyIcon.tsx +26 -0
  99. package/src/icons/crossIconDesktop.tsx +20 -0
  100. package/src/icons/crossIconMobile.tsx +20 -0
  101. package/src/index.html +30 -0
  102. package/src/index.ts +32 -0
  103. package/src/index.tsx +1 -0
  104. package/src/repo/widgetRepo.ts +21 -0
  105. package/src/types/customFields.ts +73 -0
  106. package/src/utilities/cookie.ts +70 -0
  107. package/src/utilities/customFieldTypeMapping.ts +67 -0
  108. package/src/utilities/customFieldValidation.ts +201 -0
  109. package/src/utilities/encryption.ts +21 -0
  110. package/src/utilities/exitIntentUtils.ts +31 -0
  111. package/src/utilities/global.css +11 -0
  112. package/src/utilities/languageUtilities.ts +235 -0
  113. package/src/utilities/localRunner.js +26 -0
  114. package/src/utilities/localRunner.ts +27 -0
  115. package/src/utilities/localStorage.ts +40 -0
  116. package/src/utilities/script.tsx +15 -0
  117. package/src/utilities/stringUtils.ts +5 -0
  118. package/src/utilities/styleUtils.ts +134 -0
  119. package/src/utilities/variables.ts +11 -0
  120. package/src/utilities/widgetUtils.js +342 -0
  121. package/src/utilities/widgetUtils.ts +313 -0
  122. package/src/widgets/BottomDrawer/config.ts +41 -0
  123. package/src/widgets/BottomDrawer/index.tsx +116 -0
  124. package/src/widgets/BottomDrawer/modal.tsx +286 -0
  125. package/src/widgets/BottomDrawer/preview.module.css +122 -0
  126. package/src/widgets/BottomDrawer/previewMobile.module.css +124 -0
  127. package/src/widgets/BottomDrawer/style.module.css +279 -0
  128. package/src/widgets/CaptivateBanner/captivateBanner.tsx +200 -0
  129. package/src/widgets/CaptivateBanner/config.ts +72 -0
  130. package/src/widgets/CaptivateBanner/index.tsx +204 -0
  131. package/src/widgets/CaptivateBanner/previewDesktop.module.css +51 -0
  132. package/src/widgets/CaptivateBanner/previewMobile.module.css +51 -0
  133. package/src/widgets/CaptivateBanner/style.module.css +77 -0
  134. package/src/widgets/CaptivateBanner/utils.ts +104 -0
  135. package/src/widgets/CentrallyAlignedPopup/config.ts +42 -0
  136. package/src/widgets/CentrallyAlignedPopup/index.tsx +109 -0
  137. package/src/widgets/CentrallyAlignedPopup/modal.tsx +269 -0
  138. package/src/widgets/CentrallyAlignedPopup/preview.module.css +153 -0
  139. package/src/widgets/CentrallyAlignedPopup/previewMobile.module.css +153 -0
  140. package/src/widgets/CentrallyAlignedPopup/style.module.css +283 -0
  141. package/src/widgets/DirectReward/components/couponDetails.tsx +265 -0
  142. package/src/widgets/DirectReward/components/userDetails.tsx +117 -0
  143. package/src/widgets/DirectReward/config.ts +186 -0
  144. package/src/widgets/DirectReward/directReward.tsx +350 -0
  145. package/src/widgets/DirectReward/index.tsx +579 -0
  146. package/src/widgets/DirectReward/previewStyles/thankYouPreviewDesktop.module.css +276 -0
  147. package/src/widgets/DirectReward/previewStyles/thankYouPreviewMobile.module.css +303 -0
  148. package/src/widgets/DirectReward/previewStyles/userDetailsPreviewDesktop.module.css +511 -0
  149. package/src/widgets/DirectReward/previewStyles/userDetailsPreviewMobile.module.css +462 -0
  150. package/src/widgets/DirectReward/style.module.css +836 -0
  151. package/src/widgets/ExitIntentHook.tsx +28 -0
  152. package/src/widgets/STW/api.ts +70 -0
  153. package/src/widgets/STW/components/svgFactory.tsx +44 -0
  154. package/src/widgets/STW/config.ts +193 -0
  155. package/src/widgets/STW/context.ts +7 -0
  156. package/src/widgets/STW/couponDetails.tsx +121 -0
  157. package/src/widgets/STW/index.tsx +733 -0
  158. package/src/widgets/STW/previewStyles/thankyouPreviewDesktop.module.css +215 -0
  159. package/src/widgets/STW/previewStyles/thankyouPreviewMobile.module.css +205 -0
  160. package/src/widgets/STW/previewStyles/userInputsPreviewDesktop.module.css +732 -0
  161. package/src/widgets/STW/previewStyles/userInputsPreviewMobile.module.css +661 -0
  162. package/src/widgets/STW/previewStyles/wheelPreviewDesktop.module.css +498 -0
  163. package/src/widgets/STW/previewStyles/wheelPreviewMobile.module.css +497 -0
  164. package/src/widgets/STW/stw1.tsx +119 -0
  165. package/src/widgets/STW/stw2Components/wheelDesign.tsx +183 -0
  166. package/src/widgets/STW/stw2Pages/couponDetails.tsx +72 -0
  167. package/src/widgets/STW/stw2Pages/stw2.tsx +212 -0
  168. package/src/widgets/STW/stw2Pages/style.module.css +1226 -0
  169. package/src/widgets/STW/stw2Pages/userDetails.tsx +86 -0
  170. package/src/widgets/STW/stw2Pages/wheel.tsx +117 -0
  171. package/src/widgets/STW/stw2PreviewStyles/thankyouPreviewDesktop.module.css +835 -0
  172. package/src/widgets/STW/stw2PreviewStyles/thankyouPreviewMobile.module.css +787 -0
  173. package/src/widgets/STW/stw2PreviewStyles/userInputsPreviewDesktop.module.css +867 -0
  174. package/src/widgets/STW/stw2PreviewStyles/userInputsPreviewMobile.module.css +798 -0
  175. package/src/widgets/STW/stw2PreviewStyles/wheelPreviewDesktop.module.css +572 -0
  176. package/src/widgets/STW/stw2PreviewStyles/wheelPreviewMobile.module.css +559 -0
  177. package/src/widgets/STW/style.module.css +901 -0
  178. package/src/widgets/STW/userDetails.tsx +150 -0
  179. package/src/widgets/STW/utility.ts +664 -0
  180. package/src/widgets/STW/wheel.tsx +304 -0
  181. package/src/widgets/ScratchCard/ScratchOff/scratchOff.tsx +157 -0
  182. package/src/widgets/ScratchCard/config.ts +152 -0
  183. package/src/widgets/ScratchCard/globalStyle.module.css +931 -0
  184. package/src/widgets/ScratchCard/index.tsx +546 -0
  185. package/src/widgets/ScratchCard/modal.tsx +225 -0
  186. package/src/widgets/ScratchCard/preview.module.css +250 -0
  187. package/src/widgets/ScratchCard/previewMobile.module.css +247 -0
  188. package/src/widgets/ScratchCard/previewStyles/userDetailsPreviewDesktop.module.css +537 -0
  189. package/src/widgets/ScratchCard/previewStyles/userDetailsPreviewMobile.module.css +463 -0
  190. package/src/widgets/ScratchCard/style.module.css +220 -0
  191. package/src/widgets/ShopifyForm/config.ts +168 -0
  192. package/src/widgets/ShopifyForm/index.tsx +214 -0
  193. package/src/widgets/ShopifyForm/previewDesktop.module.css +117 -0
  194. package/src/widgets/ShopifyForm/previewMobile.module.css +131 -0
  195. package/src/widgets/ShopifyForm/shopifyForm.tsx +445 -0
  196. package/src/widgets/ShopifyForm/style.module.css +161 -0
  197. package/src/widgets/SingleButtonRedirection/config.ts +47 -0
  198. package/src/widgets/SingleButtonRedirection/index.tsx +121 -0
  199. package/src/widgets/WebStories/config.ts +105 -0
  200. package/src/widgets/WebStories/index.css +3 -0
  201. package/src/widgets/WebStories/index.tsx +282 -0
  202. package/src/widgets/WebStories/style.module.css +26 -0
  203. package/src/widgets/index.tsx +3 -0
  204. package/src/widgets/utility.ts +31 -0
  205. package/tsconfig.json +12 -0
  206. package/webpack.config.js +239 -0
@@ -0,0 +1,445 @@
1
+ import React, { LegacyRef, useEffect, useState } from 'react';
2
+ import { ComponentStyleMap, injectFontLink } from '../../utilities/styleUtils';
3
+ import CloseIcon from '../../assets/svg/Close';
4
+ import { ShopifyWidgetProps } from './index';
5
+ import useIsMobile from '../../hooks/useIsMobile';
6
+ import {
7
+ fetchCloseButtonPositioner,
8
+ fetchContainerWidth,
9
+ fetchPositionCss,
10
+ } from '../CaptivateBanner/utils';
11
+ import { decodeTextHelper } from '../utility';
12
+ import UserDetailsV2 from '../../components/UserDetailsV2/userDetailsV2';
13
+ import { LEAD_GENERATION_CHANNELS, UserFields } from '../../types/customFields';
14
+ import { addLead, IChannelInfo, IPayloadFetchCouponCode } from '../STW/api';
15
+ import {
16
+ LOCAL_STORAGE_KEYS,
17
+ storeDataInLocalStorage,
18
+ } from '../../utilities/localStorage';
19
+ import { STWContext } from 'widgets/STW/context';
20
+ import { LanguageUtils } from 'utilities/languageUtilities';
21
+ import { LANGUAGE_VALUES, LANGUAGE_ISO_CODES } from '@bikdotai/bik-models/dm';
22
+ import { CUSTOM_FIELDS } from 'utilities/customFieldTypeMapping';
23
+
24
+ interface PopupI extends ShopifyWidgetProps {
25
+ isVisible: boolean;
26
+ onClose: () => void;
27
+ popupReference?: LegacyRef<HTMLDivElement>;
28
+ selectedScreen: SCREENS;
29
+ setSelectedScreen: React.Dispatch<React.SetStateAction<SCREENS>>;
30
+ }
31
+
32
+ const BACKUP_IMAGE =
33
+ 'https://firebasestorage.googleapis.com/v0/b/bikayi-chat.appspot.com/o/images-uid%2Fbb0816b9-ba06-4789-aca5-2a4d10560878?alt=media&token=996dc6bd-b3e2-4bea-bbac-41e9c0845578';
34
+
35
+ export enum SCREENS {
36
+ LEAD_SCREEN = 'leadScreen',
37
+ POST_LEAD_SCREEN = 'postLeadScreen',
38
+ }
39
+
40
+ const Popup: React.FC<PopupI> = props => {
41
+ const [styles, setStyles] = useState<any>();
42
+ const [error, setError] = useState<string>();
43
+ const [isLoading, setIsLoading] = useState<boolean>(false);
44
+ const isMobileDevice = useIsMobile();
45
+ const isMobile = props.preview ? props.isMobile : isMobileDevice;
46
+ const languageUtils = new LanguageUtils();
47
+ const [widgetLanguage, setWidgetLanguage] = useState(LANGUAGE_VALUES.ENGLISH);
48
+ const multiLingualData =
49
+ props?.widgetCustomisation?.multiLingualConfigurations?.[widgetLanguage];
50
+
51
+ useEffect(() => {
52
+ if (props.widgetCustomisation.fontFamily) {
53
+ injectFontLink([props.widgetCustomisation.fontFamily?.link]);
54
+ }
55
+ }, [props.widgetCustomisation.fontFamily]);
56
+
57
+ useEffect(() => {
58
+ if (!props.preview) {
59
+ ComponentStyleMap[props.templateName]?.globalStyle.then(
60
+ async (_style: any) => {
61
+ setStyles((await _style()).default);
62
+ },
63
+ );
64
+ } else {
65
+ if (props.isMobile) {
66
+ ComponentStyleMap[props.templateName]?.previewMobile.then(
67
+ async (_style: any) => {
68
+ setStyles((await _style()).default);
69
+ },
70
+ );
71
+ } else {
72
+ ComponentStyleMap[props.templateName]?.previewDesktop.then(
73
+ async (_style: any) => {
74
+ setStyles((await _style()).default);
75
+ },
76
+ );
77
+ }
78
+ }
79
+ }, []);
80
+
81
+ useEffect(() => {
82
+ const isBikURL =
83
+ window.location.href?.includes('https://dashboard.bik.ai/') ||
84
+ window.location.href?.includes('https://staging.dashboard.bik.ai/');
85
+ const previewLanguage = props?.widgetCustomisation?.previewLanguage;
86
+ const storeLanguage =
87
+ (isBikURL ? previewLanguage : window?.Shopify?.locale) ??
88
+ previewLanguage ??
89
+ LANGUAGE_ISO_CODES.EN;
90
+ setWidgetLanguage(languageUtils.getStoreLanguage(storeLanguage));
91
+ }, [window.location.href, props?.widgetCustomisation?.previewLanguage]);
92
+
93
+ if (!styles) {
94
+ return <></>;
95
+ }
96
+
97
+ const onFormSubmit = async (userInputs: UserFields) => {
98
+ let primaryPhoneNumber: string,
99
+ secondaryPhoneNumber: string,
100
+ emailId: string;
101
+ const primaryInfo: IChannelInfo[] = [];
102
+ const secondaryInfo: IChannelInfo[] = [];
103
+
104
+ // Process mandatory fields
105
+ Object.keys(props.leadGeneration.mandatoryOption).map(key => {
106
+ if (props.leadGeneration.mandatoryOption[key]) {
107
+ if (key === CUSTOM_FIELDS) {
108
+ const customFields = userInputs[key];
109
+ Object.keys(customFields).forEach(fieldKey => {
110
+ const fieldId = Number(fieldKey);
111
+ const fieldValue = customFields[fieldKey];
112
+ if (
113
+ props.leadGeneration.mandatoryOption.customFields &&
114
+ Array.isArray(
115
+ props.leadGeneration.mandatoryOption.customFields,
116
+ ) &&
117
+ props.leadGeneration.mandatoryOption.customFields.some(
118
+ field => field.id === fieldId,
119
+ )
120
+ ) {
121
+ primaryInfo.push({
122
+ channel: 'customField',
123
+ value: fieldValue,
124
+ customFieldId: fieldId,
125
+ });
126
+ }
127
+ });
128
+ } else {
129
+ const value = userInputs[key].countryCodeData
130
+ ? userInputs[key].countryCodeData.dial + userInputs[key].value
131
+ : userInputs[key].value;
132
+ let channel: LEAD_GENERATION_CHANNELS;
133
+ if (key === 'isEmail') {
134
+ channel = LEAD_GENERATION_CHANNELS.EMAIL;
135
+ emailId = value;
136
+ } else if (key === 'isSms') {
137
+ channel = LEAD_GENERATION_CHANNELS.SMS;
138
+ secondaryPhoneNumber = value;
139
+ } else if (key === 'isWhatsapp') {
140
+ channel = LEAD_GENERATION_CHANNELS.WHATSAPP;
141
+ primaryPhoneNumber = value;
142
+ }
143
+ primaryInfo.push({
144
+ channel: channel,
145
+ value: value,
146
+ });
147
+ }
148
+ }
149
+ });
150
+
151
+ Object.keys(props.leadGeneration.optionalOptions).map(key => {
152
+ if (props.leadGeneration.optionalOptions[key]) {
153
+ if (key === CUSTOM_FIELDS) {
154
+ const customFields = userInputs[key];
155
+ Object.keys(customFields).forEach(fieldKey => {
156
+ const fieldId = Number(fieldKey);
157
+ const fieldValue = customFields[fieldKey];
158
+ if (
159
+ props.leadGeneration.optionalOptions.customFields &&
160
+ Array.isArray(
161
+ props.leadGeneration.optionalOptions.customFields,
162
+ ) &&
163
+ props.leadGeneration.optionalOptions.customFields.some(
164
+ field => field.id === fieldId,
165
+ )
166
+ ) {
167
+ secondaryInfo.push({
168
+ channel: 'customField',
169
+ value: fieldValue,
170
+ customFieldId: fieldId,
171
+ });
172
+ }
173
+ });
174
+ } else {
175
+ const value = userInputs[key].countryCodeData
176
+ ? userInputs[key].countryCodeData.dial + userInputs[key].value
177
+ : userInputs[key].value;
178
+ let channel: LEAD_GENERATION_CHANNELS;
179
+ if (key === 'isEmail') {
180
+ channel = LEAD_GENERATION_CHANNELS.EMAIL;
181
+ emailId = value;
182
+ } else if (key === 'isSms') {
183
+ channel = LEAD_GENERATION_CHANNELS.SMS;
184
+ secondaryPhoneNumber = value;
185
+ } else if (key === 'isWhatsapp') {
186
+ channel = LEAD_GENERATION_CHANNELS.WHATSAPP;
187
+ primaryPhoneNumber = value;
188
+ }
189
+ secondaryInfo.push({
190
+ channel: channel,
191
+ value: value,
192
+ });
193
+ }
194
+ }
195
+ });
196
+
197
+ // Get variant details
198
+ let variantDetails: any[];
199
+ const variants: any[] = (window as any)?.bikWidgetContext?.currentProduct
200
+ ?.variants;
201
+ const currentVariantId =
202
+ new URLSearchParams(window.location.search).get('variant') ??
203
+ variants?.[0]?.id;
204
+ if (variants && variants.length) {
205
+ variantDetails = (
206
+ window as any
207
+ )?.bikWidgetContext?.currentProduct?.variants.filter(
208
+ (variant: any) => `${variant.id}` === `${currentVariantId}`,
209
+ );
210
+ }
211
+
212
+ // Prepare data for API call
213
+ const data: IPayloadFetchCouponCode = {
214
+ storeId: props.storeId,
215
+ widgetId: props.id,
216
+ primaryInfo: primaryInfo,
217
+ secondaryInfo: secondaryInfo,
218
+ templateId: props.templateId,
219
+ productId: (window as any)?.bikWidgetContext?.currentProduct?.id,
220
+ productName: (window as any)?.bikWidgetContext?.currentProduct?.name,
221
+ };
222
+
223
+ if (variantDetails && variantDetails.length) {
224
+ data.variantId = variantDetails[0].id;
225
+ data.variantName = variantDetails[0].title;
226
+ data.variantPrice = parseFloat(
227
+ (variantDetails[0].price / 100).toFixed(2),
228
+ );
229
+ }
230
+
231
+ try {
232
+ setIsLoading(true);
233
+ setError('');
234
+
235
+ // Store data in local storage
236
+ storeDataInLocalStorage(
237
+ LOCAL_STORAGE_KEYS.BIK_PHONE_NUMBER,
238
+ primaryPhoneNumber,
239
+ );
240
+ storeDataInLocalStorage(LOCAL_STORAGE_KEYS.BIK_EMAIL, emailId);
241
+
242
+ // Submit the lead
243
+ await addLead(data, props.environment);
244
+
245
+ setIsLoading(false);
246
+ props.setSelectedScreen(SCREENS.POST_LEAD_SCREEN);
247
+ } catch (error) {
248
+ setIsLoading(false);
249
+ setError('Failed to submit form. Please try again.');
250
+ console.error('Form submission error:', error);
251
+ }
252
+ };
253
+
254
+ const onRedirect = () => {
255
+ window.open(
256
+ props.widgetCustomisation.postPlayScreenButtonRedirection,
257
+ '_blank',
258
+ );
259
+ };
260
+
261
+ const renderLeadScreen = () => {
262
+ return (
263
+ <>
264
+ <div
265
+ className={styles.popupContainer__title}
266
+ style={{ color: props?.widgetCustomisation?.fontColour }}
267
+ dangerouslySetInnerHTML={{
268
+ __html: decodeTextHelper(
269
+ multiLingualData?.playScreenTitle ??
270
+ props.widgetCustomisation.playScreenTitle,
271
+ ),
272
+ }}
273
+ ></div>
274
+ <div
275
+ className={styles.popupContainer__subTitle}
276
+ style={{ color: props?.widgetCustomisation?.fontColour }}
277
+ dangerouslySetInnerHTML={{
278
+ __html: decodeTextHelper(
279
+ multiLingualData?.playScreenSubTitle ??
280
+ props.widgetCustomisation.playScreenSubTitle,
281
+ ),
282
+ }}
283
+ ></div>
284
+ <STWContext.Provider
285
+ value={{
286
+ preview: props.preview,
287
+ isMobile: props.isMobile,
288
+ templateName: props.templateName,
289
+ }}
290
+ >
291
+ <UserDetailsV2
292
+ countryCode={props.countryCode ?? 'IN'}
293
+ error={error}
294
+ isLoading={isLoading}
295
+ leadGeneration={props.leadGeneration}
296
+ templateName={props.templateName}
297
+ widgetCustomisation={props.widgetCustomisation}
298
+ claimPrizeHandle={onFormSubmit}
299
+ widgetLanguage={widgetLanguage}
300
+ />
301
+ </STWContext.Provider>
302
+ </>
303
+ );
304
+ };
305
+
306
+ const renderPostLeadScreen = () => {
307
+ return (
308
+ <>
309
+ {props.widgetCustomisation.postPlayScreenTitleIcon && (
310
+ <img
311
+ className={styles.popupContainer__titleIcon}
312
+ alt=""
313
+ src={props.widgetCustomisation.postPlayScreenTitleIcon}
314
+ />
315
+ )}
316
+ <div
317
+ className={styles.popupContainer__title}
318
+ style={{ color: props?.widgetCustomisation?.fontColour }}
319
+ dangerouslySetInnerHTML={{
320
+ __html: decodeTextHelper(
321
+ multiLingualData?.postPlayScreenTitle ??
322
+ props.widgetCustomisation.postPlayScreenTitle,
323
+ ),
324
+ }}
325
+ ></div>
326
+ <div
327
+ className={styles.popupContainer__subTitle}
328
+ style={{ color: props?.widgetCustomisation?.fontColour }}
329
+ dangerouslySetInnerHTML={{
330
+ __html: decodeTextHelper(
331
+ multiLingualData?.postPlayScreenSubTitle ??
332
+ props.widgetCustomisation.postPlayScreenSubTitle,
333
+ ),
334
+ }}
335
+ ></div>
336
+ {props.widgetCustomisation.isRedirectionButtonEnabled && (
337
+ <div
338
+ onClick={onRedirect}
339
+ style={{
340
+ backgroundColor:
341
+ props.widgetCustomisation.postPlayScreenButtonColour,
342
+ color: props.widgetCustomisation.postPlayScreenButtonTextColour,
343
+ }}
344
+ className={styles.popupContainer__button}
345
+ >
346
+ {multiLingualData?.postPlayScreenButtonText ??
347
+ props.widgetCustomisation.postPlayScreenButtonText}
348
+ </div>
349
+ )}
350
+ </>
351
+ );
352
+ };
353
+
354
+ const renderWidget = () => {
355
+ return (
356
+ <div
357
+ ref={props.popupReference}
358
+ className={`${styles.popupContainer}`}
359
+ style={{
360
+ ...fetchPositionCss(props.widgetCustomisation, isMobile),
361
+ width: fetchContainerWidth(props.widgetCustomisation, isMobile),
362
+ }}
363
+ >
364
+ <div
365
+ className={styles.popupContainer__content}
366
+ style={{
367
+ backgroundColor:
368
+ props.widgetCustomisation.backgroundColour ?? '#ffffff',
369
+ fontFamily: props.widgetCustomisation.fontFamily.name,
370
+ }}
371
+ >
372
+ <div
373
+ className={styles.popupCloser__button}
374
+ style={{
375
+ ...fetchCloseButtonPositioner(
376
+ props.widgetCustomisation,
377
+ isMobile,
378
+ props.preview,
379
+ ),
380
+ backgroundColor:
381
+ props.widgetCustomisation.backgroundColour ?? '#ffffff',
382
+ }}
383
+ onClick={props.onClose}
384
+ >
385
+ <CloseIcon
386
+ size="small"
387
+ colour={props.widgetCustomisation.fontColour}
388
+ />
389
+ </div>
390
+ <img
391
+ src={
392
+ (props.selectedScreen === SCREENS.LEAD_SCREEN
393
+ ? (multiLingualData?.playScreenImage ??
394
+ props.widgetCustomisation.playScreenImage)
395
+ : (multiLingualData?.postPlayScreenImage ??
396
+ props.widgetCustomisation.postPlayScreenImage)) ??
397
+ BACKUP_IMAGE
398
+ }
399
+ alt="Popup Image"
400
+ className={styles.popupContainer__image}
401
+ onError={e => {
402
+ (e.target as HTMLImageElement).onerror = null;
403
+ (e.target as HTMLImageElement).src = BACKUP_IMAGE;
404
+ }}
405
+ />
406
+ <div
407
+ className={styles.popupContainer__inner_content}
408
+ style={{
409
+ justifyContent:
410
+ props.selectedScreen === SCREENS.POST_LEAD_SCREEN
411
+ ? 'center'
412
+ : 'flex-start',
413
+ fontFamily: props.widgetCustomisation.fontFamily.name,
414
+ }}
415
+ >
416
+ {props.selectedScreen === SCREENS.LEAD_SCREEN && renderLeadScreen()}
417
+ {props.selectedScreen === SCREENS.POST_LEAD_SCREEN &&
418
+ renderPostLeadScreen()}
419
+ </div>
420
+ <div className={styles.popupContainer__poweredBy}>
421
+ <a
422
+ href="https://bik.ai/"
423
+ target="_blank"
424
+ rel="noreferrer"
425
+ style={{ color: props?.widgetCustomisation?.fontColour }}
426
+ >
427
+ {languageUtils.getPoweredByMessage(widgetLanguage)} Bik
428
+ </a>
429
+ </div>
430
+ </div>
431
+ </div>
432
+ );
433
+ };
434
+
435
+ return (
436
+ <>
437
+ {!props.preview && (
438
+ <div className={styles.popupWrapper}>{renderWidget()}</div>
439
+ )}
440
+ {props.preview && renderWidget()}
441
+ </>
442
+ );
443
+ };
444
+
445
+ export default Popup;
@@ -0,0 +1,161 @@
1
+ .popupWrapper {
2
+ position: fixed;
3
+ display: block;
4
+ top: 0;
5
+ left: 0;
6
+ z-index: 2147483645;
7
+ height: 100%;
8
+ width: 100%;
9
+ background-color: rgba(0, 0, 0, 0.4);
10
+ }
11
+
12
+ .popupContainer {
13
+ width: 380px;
14
+ position: fixed;
15
+ z-index: 2147483646;
16
+ opacity: 1;
17
+ transition:
18
+ opacity 0.3s ease,
19
+ transform 0.3s ease;
20
+ height: auto;
21
+ }
22
+
23
+ .popupContainer__content {
24
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
25
+ border-radius: 17px;
26
+ display: flex;
27
+ flex-direction: column;
28
+ align-items: center;
29
+ position: relative;
30
+ }
31
+
32
+ .popupContainer__content * {
33
+ font-family: inherit;
34
+ }
35
+
36
+ .popupContainer__image {
37
+ width: 100%;
38
+ height: auto;
39
+ aspect-ratio: 1.56;
40
+ margin: 0;
41
+ padding: 0;
42
+ border-top-left-radius: 17px;
43
+ border-top-right-radius: 17px;
44
+ }
45
+
46
+ .popupContainer__inner_content {
47
+ padding: 16px 30px 0px;
48
+ min-height: 186px;
49
+ display: flex;
50
+ flex-direction: column;
51
+ align-items: center;
52
+ gap: 6px;
53
+ flex: 1;
54
+ }
55
+
56
+ .popupContainer__title {
57
+ font-size: 18px;
58
+ line-height: 24px;
59
+ font-weight: 600;
60
+ text-align: center;
61
+ font-family: inherit;
62
+ max-width: 90%;
63
+
64
+ p {
65
+ margin: 0;
66
+ padding: 0;
67
+ }
68
+ }
69
+
70
+ .popupContainer__subTitle {
71
+ font-size: 13px;
72
+ line-height: 16px;
73
+ font-weight: 400;
74
+ text-align: center;
75
+ font-family: inherit;
76
+ max-width: 90%;
77
+
78
+ p {
79
+ margin: 0;
80
+ padding: 0;
81
+ }
82
+ }
83
+
84
+ .popupCloser__button {
85
+ height: 30px;
86
+ width: 30px;
87
+ border-radius: 50%;
88
+ display: flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ position: absolute;
92
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
93
+ cursor: pointer;
94
+ z-index: 2147483647;
95
+ }
96
+
97
+ .popupContainer__button {
98
+ cursor: pointer;
99
+ padding: 10px;
100
+ border: none;
101
+ border-radius: 6px;
102
+ font-weight: 600;
103
+ font-size: 14px;
104
+ text-align: center;
105
+ width: 90%;
106
+ line-height: 16px;
107
+ }
108
+
109
+ .popupContainer__poweredBy {
110
+ margin: 4px 12px 12px;
111
+ padding: 0;
112
+ text-align: center;
113
+
114
+ a {
115
+ text-decoration: underline;
116
+ font-family: inherit;
117
+ font-weight: 400;
118
+ font-size: 10px;
119
+ line-height: 12px;
120
+ color: #212121;
121
+ cursor: pointer;
122
+ text-underline-offset: 3px;
123
+ }
124
+ }
125
+
126
+ .popupContainer__titleIcon {
127
+ height: 48px;
128
+ width: auto;
129
+ margin: 10px 0;
130
+ }
131
+
132
+ @media only screen and (max-width: 768px) {
133
+ .popupContainer {
134
+ width: 9%;
135
+ }
136
+ .popupContainer__content {
137
+ gap: 6px;
138
+ }
139
+ .popupContainer__button {
140
+ font-size: 14px;
141
+ font-weight: normal;
142
+ }
143
+ .popupContainer__inner_content {
144
+ padding: 12px 20px 0;
145
+ }
146
+ .popupContainer__title {
147
+ font-size: 16px;
148
+ line-height: 22px;
149
+ }
150
+
151
+ .popupContainer__subTitle {
152
+ font-size: 12px;
153
+ line-height: 16px;
154
+ }
155
+
156
+ .popupContainer__titleIcon {
157
+ height: 38px;
158
+ width: auto;
159
+ margin: 8px 0;
160
+ }
161
+ }
@@ -0,0 +1,47 @@
1
+ import { ISingleButtonRedirection } from './index';
2
+ import { IRedirectWidgetCustomisation } from '@bikdotai/bik-models/dm';
3
+ import { FAB_POSITION } from '../../utilities/widgetUtils';
4
+
5
+ const config: ISingleButtonRedirection = {
6
+ id: 'is9bagRgFR1IrZl21T6A',
7
+ isMobile: false,
8
+ preview: false,
9
+ environment: '',
10
+ info: {},
11
+ widgetCustomisation: {
12
+ fabText: 'Chat with us',
13
+ iconColor: '#fff',
14
+ fabPositioner: {
15
+ bottom: '20px',
16
+ right: '20px',
17
+ },
18
+ fabBackgroundColor: '#000',
19
+ fabIconLink:
20
+ 'https://storage.googleapis.com/bik-widget-mfe/bap%2Ffab-assets%2Ficons%2Fbik%2Fredirect.svg',
21
+ fabWebSize: 50,
22
+ fabMobileSize: 50,
23
+ } as unknown as IRedirectWidgetCustomisation,
24
+ visibility: {
25
+ visiblePages: ['/'],
26
+ },
27
+ storeWidgetConfig: {
28
+ '/': [
29
+ {
30
+ widgetId: 'Kxb0Ib2YdCUv1cUsrK4C',
31
+ fabPosition: FAB_POSITION.CENTER_RIGHT,
32
+ },
33
+ {
34
+ widgetId: 'is9bagRgFR1IrZl21T6A',
35
+ fabPosition: FAB_POSITION.BOTTOM_RIGHT,
36
+ },
37
+ ],
38
+ '/*': [
39
+ {
40
+ widgetId: 'qnXJjhuTog9sTWqDZHc7',
41
+ fabPosition: FAB_POSITION.BOTTOM_LEFT,
42
+ },
43
+ ],
44
+ },
45
+ } as unknown as ISingleButtonRedirection;
46
+
47
+ export default config;