@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.
- package/.eslintrc +22 -0
- package/.eslintrc.js +19 -0
- package/.github/workflows/main.yml +293 -0
- package/.prettierignore +13 -0
- package/.prettierrc +10 -0
- package/README.md +128 -0
- package/cypress/apiHelper/endpoints.ts +21 -0
- package/cypress/apiHelper/executor.ts +42 -0
- package/cypress/e2e/bottomDrawer.cy.ts +49 -0
- package/cypress/e2e/directReward.cy.ts +67 -0
- package/cypress/e2e/scratchTheCard.cy.ts +68 -0
- package/cypress/e2e/stw.cy.ts +82 -0
- package/cypress/e2e/waRedirection.cy.ts +46 -0
- package/cypress/fixtures/payloads.ts +330 -0
- package/cypress/support/commands.ts +37 -0
- package/cypress/support/e2e.ts +20 -0
- package/cypress.staging.config.ts +23 -0
- package/jsconfig.json +6 -0
- package/localtest.sh +10 -0
- package/log-server.js +86 -0
- package/package.json +79 -0
- package/postcss.config.js +8 -0
- package/src/Globals.d.ts +2 -0
- package/src/assets/lottie/santa.json +11722 -0
- package/src/assets/svg/CalendarClockIcon.tsx +30 -0
- package/src/assets/svg/CalendarIcon.tsx +24 -0
- package/src/assets/svg/CheckIcon.tsx +17 -0
- package/src/assets/svg/ChevronIcon.tsx +21 -0
- package/src/assets/svg/Close.tsx +39 -0
- package/src/assets/svg/Confetti.tsx +140 -0
- package/src/assets/svg/Copy.tsx +26 -0
- package/src/assets/svg/DropdownCheckIcon.tsx +35 -0
- package/src/assets/svg/ErrorIcon.tsx +27 -0
- package/src/assets/svg/RadioIcon.tsx +25 -0
- package/src/assets/svg/UncheckedCheckboxIcon.tsx +28 -0
- package/src/assets/svg/UncheckedRadioIcon.tsx +26 -0
- package/src/assets/svg/info.tsx +30 -0
- package/src/assets/svg/qrcode.svg +14 -0
- package/src/bootstrap.tsx +8 -0
- package/src/components/CtaCard/index.tsx +37 -0
- package/src/components/CtaCard/preview.module.css +32 -0
- package/src/components/CtaCard/style.module.css +32 -0
- package/src/components/EmailInput/emailInputBox.tsx +95 -0
- package/src/components/Fab/index.tsx +224 -0
- package/src/components/Fab/preview.module.css +28 -0
- package/src/components/Fab/style.module.css +37 -0
- package/src/components/Icons/Call.tsx +26 -0
- package/src/components/Icons/Cross.tsx +24 -0
- package/src/components/Icons/Gmail.tsx +61 -0
- package/src/components/Icons/Instagram.tsx +60 -0
- package/src/components/Icons/LiveChat.tsx +43 -0
- package/src/components/Icons/Messenger.tsx +57 -0
- package/src/components/Icons/Send.tsx +22 -0
- package/src/components/Icons/Whatsapp.tsx +24 -0
- package/src/components/Shimmer/index.tsx +12 -0
- package/src/components/Shimmer/style.module.css +37 -0
- package/src/components/SmsInput/smsInputBox.tsx +135 -0
- package/src/components/UserDetailsV2/userDetailsV2.desktop.module.css +52 -0
- package/src/components/UserDetailsV2/userDetailsV2.mobile.module.css +52 -0
- package/src/components/UserDetailsV2/userDetailsV2.module.css +81 -0
- package/src/components/UserDetailsV2/userDetailsV2.tsx +527 -0
- package/src/components/WhatsappInput/Spinner.tsx +26 -0
- package/src/components/WhatsappInput/whatsappInput.module.css +106 -0
- package/src/components/WhatsappInput/whatsappInputBox.tsx +155 -0
- package/src/components/WhatsappInput/whatsappInputPreviewDesktop.module.css +71 -0
- package/src/components/WhatsappInput/whatsappInputPreviewMobile.module.css +65 -0
- package/src/components/checkbox/checkbox.module.css +19 -0
- package/src/components/checkbox/checkbox.tsx +88 -0
- package/src/components/countryCodePicker/countriesDropdown.module.css +77 -0
- package/src/components/countryCodePicker/countriesDropdown.tsx +81 -0
- package/src/components/couponDetails/coupon.module.css +208 -0
- package/src/components/couponDetails/coupon.tsx +210 -0
- package/src/components/couponDetails/couponPreviewDesktop.module.css +158 -0
- package/src/components/couponDetails/couponPreviewMobile.module.css +164 -0
- package/src/components/index.ts +3 -0
- package/src/components/inputComponents/Checkbox.module.css +197 -0
- package/src/components/inputComponents/Checkbox.tsx +85 -0
- package/src/components/inputComponents/DatePicker.module.css +565 -0
- package/src/components/inputComponents/DatePicker.tsx +278 -0
- package/src/components/inputComponents/Dropdown.module.css +796 -0
- package/src/components/inputComponents/Dropdown.tsx +630 -0
- package/src/components/inputComponents/InputBox.module.css +401 -0
- package/src/components/inputComponents/InputBox.tsx +209 -0
- package/src/components/selectedCountry/selectedCountry.module.css +76 -0
- package/src/components/selectedCountry/selectedCountry.tsx +76 -0
- package/src/components/selectedCountry/selectedCountryPreviewDesktop.module.css +56 -0
- package/src/components/selectedCountry/selectedCountryPreviewMobile.module.css +57 -0
- package/src/components/userDetailsForm/RenderCustomFields.tsx +333 -0
- package/src/components/userDetailsForm/userDetailsForm.tsx +675 -0
- package/src/hooks/index.ts +4 -0
- package/src/hooks/useExitIntent.ts +452 -0
- package/src/hooks/useIsMobile.tsx +21 -0
- package/src/hooks/useMessageEvent.ts +8 -0
- package/src/hooks/useTriggeredIntentDetails.ts +43 -0
- package/src/hooks/useUrlListerner.ts +30 -0
- package/src/hooks/useWebSocketLogger.ts +59 -0
- package/src/hooks/useWindowEvent.ts +8 -0
- package/src/icons/copyIcon.tsx +26 -0
- package/src/icons/crossIconDesktop.tsx +20 -0
- package/src/icons/crossIconMobile.tsx +20 -0
- package/src/index.html +30 -0
- package/src/index.ts +32 -0
- package/src/index.tsx +1 -0
- package/src/repo/widgetRepo.ts +21 -0
- package/src/types/customFields.ts +73 -0
- package/src/utilities/cookie.ts +70 -0
- package/src/utilities/customFieldTypeMapping.ts +67 -0
- package/src/utilities/customFieldValidation.ts +201 -0
- package/src/utilities/encryption.ts +21 -0
- package/src/utilities/exitIntentUtils.ts +31 -0
- package/src/utilities/global.css +11 -0
- package/src/utilities/languageUtilities.ts +235 -0
- package/src/utilities/localRunner.js +26 -0
- package/src/utilities/localRunner.ts +27 -0
- package/src/utilities/localStorage.ts +40 -0
- package/src/utilities/script.tsx +15 -0
- package/src/utilities/stringUtils.ts +5 -0
- package/src/utilities/styleUtils.ts +134 -0
- package/src/utilities/variables.ts +11 -0
- package/src/utilities/widgetUtils.js +342 -0
- package/src/utilities/widgetUtils.ts +313 -0
- package/src/widgets/BottomDrawer/config.ts +41 -0
- package/src/widgets/BottomDrawer/index.tsx +116 -0
- package/src/widgets/BottomDrawer/modal.tsx +286 -0
- package/src/widgets/BottomDrawer/preview.module.css +122 -0
- package/src/widgets/BottomDrawer/previewMobile.module.css +124 -0
- package/src/widgets/BottomDrawer/style.module.css +279 -0
- package/src/widgets/CaptivateBanner/captivateBanner.tsx +200 -0
- package/src/widgets/CaptivateBanner/config.ts +72 -0
- package/src/widgets/CaptivateBanner/index.tsx +204 -0
- package/src/widgets/CaptivateBanner/previewDesktop.module.css +51 -0
- package/src/widgets/CaptivateBanner/previewMobile.module.css +51 -0
- package/src/widgets/CaptivateBanner/style.module.css +77 -0
- package/src/widgets/CaptivateBanner/utils.ts +104 -0
- package/src/widgets/CentrallyAlignedPopup/config.ts +42 -0
- package/src/widgets/CentrallyAlignedPopup/index.tsx +109 -0
- package/src/widgets/CentrallyAlignedPopup/modal.tsx +269 -0
- package/src/widgets/CentrallyAlignedPopup/preview.module.css +153 -0
- package/src/widgets/CentrallyAlignedPopup/previewMobile.module.css +153 -0
- package/src/widgets/CentrallyAlignedPopup/style.module.css +283 -0
- package/src/widgets/DirectReward/components/couponDetails.tsx +265 -0
- package/src/widgets/DirectReward/components/userDetails.tsx +117 -0
- package/src/widgets/DirectReward/config.ts +186 -0
- package/src/widgets/DirectReward/directReward.tsx +350 -0
- package/src/widgets/DirectReward/index.tsx +579 -0
- package/src/widgets/DirectReward/previewStyles/thankYouPreviewDesktop.module.css +276 -0
- package/src/widgets/DirectReward/previewStyles/thankYouPreviewMobile.module.css +303 -0
- package/src/widgets/DirectReward/previewStyles/userDetailsPreviewDesktop.module.css +511 -0
- package/src/widgets/DirectReward/previewStyles/userDetailsPreviewMobile.module.css +462 -0
- package/src/widgets/DirectReward/style.module.css +836 -0
- package/src/widgets/ExitIntentHook.tsx +28 -0
- package/src/widgets/STW/api.ts +70 -0
- package/src/widgets/STW/components/svgFactory.tsx +44 -0
- package/src/widgets/STW/config.ts +193 -0
- package/src/widgets/STW/context.ts +7 -0
- package/src/widgets/STW/couponDetails.tsx +121 -0
- package/src/widgets/STW/index.tsx +733 -0
- package/src/widgets/STW/previewStyles/thankyouPreviewDesktop.module.css +215 -0
- package/src/widgets/STW/previewStyles/thankyouPreviewMobile.module.css +205 -0
- package/src/widgets/STW/previewStyles/userInputsPreviewDesktop.module.css +732 -0
- package/src/widgets/STW/previewStyles/userInputsPreviewMobile.module.css +661 -0
- package/src/widgets/STW/previewStyles/wheelPreviewDesktop.module.css +498 -0
- package/src/widgets/STW/previewStyles/wheelPreviewMobile.module.css +497 -0
- package/src/widgets/STW/stw1.tsx +119 -0
- package/src/widgets/STW/stw2Components/wheelDesign.tsx +183 -0
- package/src/widgets/STW/stw2Pages/couponDetails.tsx +72 -0
- package/src/widgets/STW/stw2Pages/stw2.tsx +212 -0
- package/src/widgets/STW/stw2Pages/style.module.css +1226 -0
- package/src/widgets/STW/stw2Pages/userDetails.tsx +86 -0
- package/src/widgets/STW/stw2Pages/wheel.tsx +117 -0
- package/src/widgets/STW/stw2PreviewStyles/thankyouPreviewDesktop.module.css +835 -0
- package/src/widgets/STW/stw2PreviewStyles/thankyouPreviewMobile.module.css +787 -0
- package/src/widgets/STW/stw2PreviewStyles/userInputsPreviewDesktop.module.css +867 -0
- package/src/widgets/STW/stw2PreviewStyles/userInputsPreviewMobile.module.css +798 -0
- package/src/widgets/STW/stw2PreviewStyles/wheelPreviewDesktop.module.css +572 -0
- package/src/widgets/STW/stw2PreviewStyles/wheelPreviewMobile.module.css +559 -0
- package/src/widgets/STW/style.module.css +901 -0
- package/src/widgets/STW/userDetails.tsx +150 -0
- package/src/widgets/STW/utility.ts +664 -0
- package/src/widgets/STW/wheel.tsx +304 -0
- package/src/widgets/ScratchCard/ScratchOff/scratchOff.tsx +157 -0
- package/src/widgets/ScratchCard/config.ts +152 -0
- package/src/widgets/ScratchCard/globalStyle.module.css +931 -0
- package/src/widgets/ScratchCard/index.tsx +546 -0
- package/src/widgets/ScratchCard/modal.tsx +225 -0
- package/src/widgets/ScratchCard/preview.module.css +250 -0
- package/src/widgets/ScratchCard/previewMobile.module.css +247 -0
- package/src/widgets/ScratchCard/previewStyles/userDetailsPreviewDesktop.module.css +537 -0
- package/src/widgets/ScratchCard/previewStyles/userDetailsPreviewMobile.module.css +463 -0
- package/src/widgets/ScratchCard/style.module.css +220 -0
- package/src/widgets/ShopifyForm/config.ts +168 -0
- package/src/widgets/ShopifyForm/index.tsx +214 -0
- package/src/widgets/ShopifyForm/previewDesktop.module.css +117 -0
- package/src/widgets/ShopifyForm/previewMobile.module.css +131 -0
- package/src/widgets/ShopifyForm/shopifyForm.tsx +445 -0
- package/src/widgets/ShopifyForm/style.module.css +161 -0
- package/src/widgets/SingleButtonRedirection/config.ts +47 -0
- package/src/widgets/SingleButtonRedirection/index.tsx +121 -0
- package/src/widgets/WebStories/config.ts +105 -0
- package/src/widgets/WebStories/index.css +3 -0
- package/src/widgets/WebStories/index.tsx +282 -0
- package/src/widgets/WebStories/style.module.css +26 -0
- package/src/widgets/index.tsx +3 -0
- package/src/widgets/utility.ts +31 -0
- package/tsconfig.json +12 -0
- package/webpack.config.js +239 -0
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { IDRTemplate } from './index';
|
|
2
|
+
import { FAB_POSITION } from '../../utilities/widgetUtils';
|
|
3
|
+
|
|
4
|
+
export const directRewardConfig: IDRTemplate = {
|
|
5
|
+
id: 'TtEgsNeYy02d9NOSlp8F',
|
|
6
|
+
environment: 'https://bikapi.bikayi.app/dm',
|
|
7
|
+
storeWidgetConfig: {
|
|
8
|
+
'/': [
|
|
9
|
+
{
|
|
10
|
+
widgetId: 'TtEgsNeYy02d9NOSlp8F',
|
|
11
|
+
fabPosition: 'POP_UP',
|
|
12
|
+
},
|
|
13
|
+
],
|
|
14
|
+
},
|
|
15
|
+
createdAt: 1682521847,
|
|
16
|
+
leadGeneration: {
|
|
17
|
+
mandatoryOption: {
|
|
18
|
+
isEmail: true,
|
|
19
|
+
isSms: false,
|
|
20
|
+
isWhatsapp: true,
|
|
21
|
+
customFields: [
|
|
22
|
+
{
|
|
23
|
+
id: 6634,
|
|
24
|
+
storeId: 'p60HYv5wjgQaOrPdqT5NjbpkroD2',
|
|
25
|
+
fieldName: 'Widget Dropdown',
|
|
26
|
+
aliasName: 'widgetdropdown',
|
|
27
|
+
dataType: 'string',
|
|
28
|
+
fieldType: 'number',
|
|
29
|
+
options: ['24', 'ewr', 'rwer'],
|
|
30
|
+
isVisible: true,
|
|
31
|
+
createdAt: '2025-06-17T09:30:17.321Z',
|
|
32
|
+
updatedAt: '2025-06-17T09:30:17.321Z',
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
optionalOptions: {
|
|
37
|
+
isEmail: false,
|
|
38
|
+
isSms: false,
|
|
39
|
+
isWhatsapp: false,
|
|
40
|
+
customFields: [
|
|
41
|
+
{
|
|
42
|
+
id: 6502,
|
|
43
|
+
storeId: 'p60HYv5wjgQaOrPdqT5NjbpkroD2',
|
|
44
|
+
fieldName: 'What is the reason',
|
|
45
|
+
aliasName: 'whatisthereason',
|
|
46
|
+
dataType: 'string',
|
|
47
|
+
fieldType: 'multiselect_dropdown',
|
|
48
|
+
options: ['misplaced order', 'damaged product', 'new product'],
|
|
49
|
+
isVisible: true,
|
|
50
|
+
createdAt: '2025-05-27T04:59:04.179Z',
|
|
51
|
+
updatedAt: '2025-06-16T18:59:15.862Z',
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
},
|
|
55
|
+
enableConsentPolicies: false,
|
|
56
|
+
privacyPolicyURL: '',
|
|
57
|
+
},
|
|
58
|
+
widgetCustomisation: {
|
|
59
|
+
skipLabel: true,
|
|
60
|
+
fabPosition: 'POP_UP',
|
|
61
|
+
fabBackgroundColor: '#000000',
|
|
62
|
+
fabMobileSize: 50,
|
|
63
|
+
fabWebSize: 50,
|
|
64
|
+
iconColor: '#ffffff',
|
|
65
|
+
fabIconLink:
|
|
66
|
+
'https://storage.googleapis.com/bik-widget-mfe/bap%2Ffab-assets%2Ficons%2Fbik%2Fgift.svg',
|
|
67
|
+
widgetName: 'Lead Generator cym8',
|
|
68
|
+
cardTheme: '#F2F9FF',
|
|
69
|
+
backgroundType: 'colour',
|
|
70
|
+
backgroundColour: '#F2F9FF',
|
|
71
|
+
fontFamily: {
|
|
72
|
+
link: 'https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap',
|
|
73
|
+
name: 'Montserrat',
|
|
74
|
+
},
|
|
75
|
+
fontColour: '#000000',
|
|
76
|
+
playScreenImageDesktop:
|
|
77
|
+
'https://firebasestorage.googleapis.com/v0/b/staging-bikayi.appspot.com/o/b4abf188-cefe-400d-bacf-3983c571fbe2%23image_p60HYv5wjgQaOrPdqT5NjbpkroD2_odUvf.jpg?alt=media&token=19726742-2800-4476-94ba-6bfb63c5b9eb',
|
|
78
|
+
playScreenImageMobile:
|
|
79
|
+
'https://firebasestorage.googleapis.com/v0/b/staging-bikayi.appspot.com/o/d41b2ddf-07be-4cf7-96c5-b49369e3fae4%23image_p60HYv5wjgQaOrPdqT5NjbpkroD2_CfNPh.jpg?alt=media&token=798c9caf-cf41-498f-a43f-208f430d9049',
|
|
80
|
+
playScreenTitle: '<p><strong>Hey good looking!</strong></p>',
|
|
81
|
+
playScreenTitleSize: 26,
|
|
82
|
+
playScreenSubTitle:
|
|
83
|
+
'<p>Explore personalized fashion with our curated subscription service<p>',
|
|
84
|
+
playScreenSubTitleSize: 16,
|
|
85
|
+
playScreenFormDescriptionSize: 12,
|
|
86
|
+
playScreenButtonText: 'Subscribe',
|
|
87
|
+
playScreenButtonColour: '#000000',
|
|
88
|
+
postPlayScreenImageDesktop:
|
|
89
|
+
'https://firebasestorage.googleapis.com/v0/b/staging-bikayi.appspot.com/o/b4abf188-cefe-400d-bacf-3983c571fbe2%23image_p60HYv5wjgQaOrPdqT5NjbpkroD2_odUvf.jpg?alt=media&token=19726742-2800-4476-94ba-6bfb63c5b9eb',
|
|
90
|
+
postPlayScreenImageMobile:
|
|
91
|
+
'https://firebasestorage.googleapis.com/v0/b/staging-bikayi.appspot.com/o/d41b2ddf-07be-4cf7-96c5-b49369e3fae4%23image_p60HYv5wjgQaOrPdqT5NjbpkroD2_CfNPh.jpg?alt=media&token=798c9caf-cf41-498f-a43f-208f430d9049',
|
|
92
|
+
playScreenButtonTextColour: '#ffffff',
|
|
93
|
+
postPlayScreenTitle: '<p><strong>Thank you for subscribing!</strong></p>',
|
|
94
|
+
postPlayScreenTitleIcon:
|
|
95
|
+
'https://storage.googleapis.com/bik-widget-mfe/bap/post-play-screen-assets/images/bik/checked.png',
|
|
96
|
+
postPlayScreenTitleSize: 26,
|
|
97
|
+
postPlayScreenSubTitle:
|
|
98
|
+
'<p>For subscribing! Get ready to experience a world of fashion and style with us.</p>',
|
|
99
|
+
postPlayScreenSubTitleSize: 16,
|
|
100
|
+
isPostPlayScreenButtonEnabled: false,
|
|
101
|
+
postPlayScreenButtonText: 'Explore now!',
|
|
102
|
+
postPlayScreenButtonColour: '#000000',
|
|
103
|
+
postPlayScreenButtonRedirection: 'https://bik.ai',
|
|
104
|
+
postPlayScreenButtonTextColour: '#ffffff',
|
|
105
|
+
fabPositioner: {
|
|
106
|
+
bottom: '30px',
|
|
107
|
+
right: '30px',
|
|
108
|
+
},
|
|
109
|
+
multiLingualConfigurations: {
|
|
110
|
+
ENGLISH: {
|
|
111
|
+
playScreenTitle: '<p><strong>Hey good looking!</strong></p>',
|
|
112
|
+
playScreenSubTitle:
|
|
113
|
+
'<p>Explore personalized fashion with our curated subscription service<p>',
|
|
114
|
+
playScreenButtonText: 'Subscribe',
|
|
115
|
+
postPlayScreenTitle:
|
|
116
|
+
'<p><strong>Thank you for subscribing!</strong></p>',
|
|
117
|
+
postPlayScreenSubTitle:
|
|
118
|
+
'<p>For subscribing! Get ready to experience a world of fashion and style with us.</p>',
|
|
119
|
+
postPlayScreenButtonText: 'Explore now!',
|
|
120
|
+
},
|
|
121
|
+
ARABIC: {
|
|
122
|
+
playScreenTitle: '<p><strong>مرحبا جميل!</strong></p>',
|
|
123
|
+
playScreenSubTitle:
|
|
124
|
+
'%3Cp%3E%D8%A7%D8%B3%D8%AA%D9%83%D8%B4%D9%81%20%D8%A7%D9%84%D9%85%D9%88%D8%B6%D8%A9%20%D8%A7%D9%84%D8%B4%D8%AE%D8%B5%D9%8A%D8%A9%20%D9%85%D8%B9%20%D8%AE%D8%AF%D9%85%D8%A9%20%D8%A7%D9%84%D8%A7%D8%B4%D8%AA%D8%B1%D8%A7%D9%83%20%D8%A7%D9%84%D9%85%D8%AE%D8%B5%D8%B5%D8%A9%20%D9%84%D8%AF%D9%8A%D9%86%D8%A7%3C%2Fp%3E',
|
|
125
|
+
playScreenButtonText: 'اشترك',
|
|
126
|
+
postPlayScreenTitle: '<p><strong>شكرا للاشتراك!</strong></p>',
|
|
127
|
+
postPlayScreenSubTitle:
|
|
128
|
+
'<p>للاشتراك! استعد لتجربة عالم الموضة والأناقة معنا.</p>',
|
|
129
|
+
postPlayScreenButtonText: 'استكشف الآن!',
|
|
130
|
+
},
|
|
131
|
+
FRENCH: {
|
|
132
|
+
playScreenTitle: '<p><strong>Salut beau gosse!</strong></p>',
|
|
133
|
+
playScreenSubTitle:
|
|
134
|
+
'<p>Explorez la mode personnalisée avec notre service d’abonnement soigneusement sélectionné<p>',
|
|
135
|
+
playScreenButtonText: 'Souscrire',
|
|
136
|
+
postPlayScreenTitle:
|
|
137
|
+
'<p><strong>Merci de vous être abonné!</strong></p>',
|
|
138
|
+
postPlayScreenSubTitle:
|
|
139
|
+
'<p>Pour vous être abonné! Préparez-vous à vivre un monde de mode et de style avec nous.</p>',
|
|
140
|
+
postPlayScreenButtonText: 'Explorer maintenant!',
|
|
141
|
+
},
|
|
142
|
+
MALAY: {
|
|
143
|
+
playScreenTitle: '<p><strong>Hey good looking!</strong></p>',
|
|
144
|
+
playScreenSubTitle:
|
|
145
|
+
'<p>Explore personalized fashion with our curated subscription service<p>',
|
|
146
|
+
playScreenButtonText: 'Subscribe',
|
|
147
|
+
postPlayScreenTitle:
|
|
148
|
+
'<p><strong>Thank you for subscribing!</strong></p>',
|
|
149
|
+
postPlayScreenSubTitle:
|
|
150
|
+
'<p>For subscribing! Get ready to experience a world of fashion and style with us.</p>',
|
|
151
|
+
postPlayScreenButtonText: 'Explore now!',
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
previewLanguage: 'en',
|
|
155
|
+
},
|
|
156
|
+
info: {
|
|
157
|
+
scriptPath: 'bap/widget-direct-reward/directReward.js',
|
|
158
|
+
widgetTypeId: 'lCcPfO2RuooXpBGgZSs0',
|
|
159
|
+
templateName: 'Lead Generator',
|
|
160
|
+
infra: '2.0',
|
|
161
|
+
storeId: 'C2fptDtyEbMz5cgIT5AqBaEIxB53',
|
|
162
|
+
templateId: '7fM9X24TY9Bk9f7fIG9C',
|
|
163
|
+
delete: false,
|
|
164
|
+
firebaseScriptId: '',
|
|
165
|
+
scriptId: null,
|
|
166
|
+
liveSince: '26/04/2023',
|
|
167
|
+
status: 'LIVE',
|
|
168
|
+
},
|
|
169
|
+
visibility: {
|
|
170
|
+
visiblePages: ['/*'],
|
|
171
|
+
triggers: {
|
|
172
|
+
fabButtonVisibility: false,
|
|
173
|
+
hasFAbButton: false,
|
|
174
|
+
isPlayable: false,
|
|
175
|
+
// pageScroll: 0,
|
|
176
|
+
viewLimit: null,
|
|
177
|
+
playLimit: null,
|
|
178
|
+
timeDelay: null,
|
|
179
|
+
frequency: null,
|
|
180
|
+
hideAfterClaimed: false,
|
|
181
|
+
exitIntentTimeDelay: 1,
|
|
182
|
+
exitIntentFastUpScroll: true,
|
|
183
|
+
showExitIntentOn: 'webpage',
|
|
184
|
+
} as any,
|
|
185
|
+
},
|
|
186
|
+
};
|
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
|
+
import { cookieClickHandler } from '../STW/utility';
|
|
3
|
+
import { IDRTemplate } from '.';
|
|
4
|
+
import CouponDetails from './components/couponDetails';
|
|
5
|
+
import UserDetails from './components/userDetails';
|
|
6
|
+
import CrossIconMobile from '../../icons/crossIconMobile';
|
|
7
|
+
import CrossIconDesktop from '../../icons/crossIconDesktop';
|
|
8
|
+
import useIsMobile from '../../hooks/useIsMobile';
|
|
9
|
+
import {
|
|
10
|
+
BACKGROUND_TYPE,
|
|
11
|
+
IDRWidgetCustomisation,
|
|
12
|
+
LANGUAGE_VALUES,
|
|
13
|
+
LANGUAGE_ISO_CODES,
|
|
14
|
+
} from '@bikdotai/bik-models/dm';
|
|
15
|
+
import Fab, { IFab } from '../../components/Fab';
|
|
16
|
+
import Send from '../../components/Icons/Send';
|
|
17
|
+
import { ComponentStyleMap, injectFontLink } from '../../utilities/styleUtils';
|
|
18
|
+
import { LanguageUtils } from 'utilities/languageUtilities';
|
|
19
|
+
import { fetchPositionCss } from '../CaptivateBanner/utils';
|
|
20
|
+
import { useTriggeredIntentDetails } from '../../hooks/useTriggeredIntentDetails';
|
|
21
|
+
import { getTriggeredPageFromUrl } from '../utility';
|
|
22
|
+
import {
|
|
23
|
+
TRIGGERED_INTENT_SOURCE,
|
|
24
|
+
TRIGGERED_INTENT_TYPE,
|
|
25
|
+
} from '@bikdotai/bik-models/dm/models/analytics';
|
|
26
|
+
|
|
27
|
+
const DirectRewardTemplate = (props: IDRTemplate) => {
|
|
28
|
+
const {
|
|
29
|
+
preview,
|
|
30
|
+
showComponents,
|
|
31
|
+
onCloseHandle,
|
|
32
|
+
widgetCustomisation,
|
|
33
|
+
error,
|
|
34
|
+
isLoading,
|
|
35
|
+
isMobile,
|
|
36
|
+
claimPrizeHandle,
|
|
37
|
+
visibility,
|
|
38
|
+
leadGeneration,
|
|
39
|
+
discountCodeDetails,
|
|
40
|
+
templateName,
|
|
41
|
+
containerReference,
|
|
42
|
+
setShowComponents,
|
|
43
|
+
environment,
|
|
44
|
+
} = props;
|
|
45
|
+
const [currentStyle, setCurrentStyle] = useState<any>(null);
|
|
46
|
+
const languageUtils = new LanguageUtils();
|
|
47
|
+
const [widgetLanguage, setWidgetLanguage] = useState(LANGUAGE_VALUES.ENGLISH);
|
|
48
|
+
const isMobileDevice = useIsMobile();
|
|
49
|
+
const { setTriggeredIntentDetails } = useTriggeredIntentDetails(props.id);
|
|
50
|
+
const multiLingualData =
|
|
51
|
+
widgetCustomisation?.multiLingualConfigurations?.[widgetLanguage];
|
|
52
|
+
|
|
53
|
+
useEffect(() => {
|
|
54
|
+
if (widgetCustomisation.fontFamily) {
|
|
55
|
+
injectFontLink([widgetCustomisation.fontFamily?.link]);
|
|
56
|
+
}
|
|
57
|
+
}, [widgetCustomisation.fontFamily]);
|
|
58
|
+
|
|
59
|
+
let imageUrl: string;
|
|
60
|
+
if (preview) {
|
|
61
|
+
if (isMobile) {
|
|
62
|
+
imageUrl = showComponents.userDetails
|
|
63
|
+
? (multiLingualData?.playScreenImageMobile ??
|
|
64
|
+
(Object.keys(multiLingualData ?? {}).includes('playScreenImageMobile')
|
|
65
|
+
? ''
|
|
66
|
+
: widgetCustomisation.playScreenImageMobile))
|
|
67
|
+
: (multiLingualData?.postPlayScreenImageMobile ??
|
|
68
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
69
|
+
'postPlayScreenImageMobile',
|
|
70
|
+
)
|
|
71
|
+
? ''
|
|
72
|
+
: widgetCustomisation.postPlayScreenImageMobile));
|
|
73
|
+
} else {
|
|
74
|
+
imageUrl = showComponents.userDetails
|
|
75
|
+
? (multiLingualData?.playScreenImageDesktop ??
|
|
76
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
77
|
+
'playScreenImageDesktop',
|
|
78
|
+
)
|
|
79
|
+
? ''
|
|
80
|
+
: widgetCustomisation.playScreenImageDesktop))
|
|
81
|
+
: (multiLingualData?.postPlayScreenImageDesktop ??
|
|
82
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
83
|
+
'postPlayScreenImageDesktop',
|
|
84
|
+
)
|
|
85
|
+
? ''
|
|
86
|
+
: widgetCustomisation.postPlayScreenImageDesktop));
|
|
87
|
+
}
|
|
88
|
+
} else {
|
|
89
|
+
if (isMobileDevice) {
|
|
90
|
+
imageUrl = showComponents.userDetails
|
|
91
|
+
? (multiLingualData?.playScreenImageMobile ??
|
|
92
|
+
(Object.keys(multiLingualData ?? {}).includes('playScreenImageMobile')
|
|
93
|
+
? ''
|
|
94
|
+
: widgetCustomisation.playScreenImageMobile))
|
|
95
|
+
: (multiLingualData?.postPlayScreenImageMobile ??
|
|
96
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
97
|
+
'postPlayScreenImageMobile',
|
|
98
|
+
)
|
|
99
|
+
? ''
|
|
100
|
+
: widgetCustomisation.postPlayScreenImageMobile));
|
|
101
|
+
} else {
|
|
102
|
+
imageUrl = showComponents.userDetails
|
|
103
|
+
? (multiLingualData?.playScreenImageDesktop ??
|
|
104
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
105
|
+
'playScreenImageDesktop',
|
|
106
|
+
)
|
|
107
|
+
? ''
|
|
108
|
+
: widgetCustomisation.playScreenImageDesktop))
|
|
109
|
+
: (multiLingualData?.postPlayScreenImageDesktop ??
|
|
110
|
+
(Object.keys(multiLingualData ?? {}).includes(
|
|
111
|
+
'postPlayScreenImageDesktop',
|
|
112
|
+
)
|
|
113
|
+
? ''
|
|
114
|
+
: widgetCustomisation.postPlayScreenImageDesktop));
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
useEffect(() => {
|
|
119
|
+
if (preview && showComponents) {
|
|
120
|
+
if (showComponents.userDetails) {
|
|
121
|
+
if (isMobile) {
|
|
122
|
+
ComponentStyleMap[templateName]?.userInputPreviewMobile.then(
|
|
123
|
+
async style => {
|
|
124
|
+
setCurrentStyle((await style()).default);
|
|
125
|
+
},
|
|
126
|
+
);
|
|
127
|
+
} else {
|
|
128
|
+
ComponentStyleMap[templateName]?.userInputPreviewDesktop.then(
|
|
129
|
+
async style => {
|
|
130
|
+
setCurrentStyle((await style()).default);
|
|
131
|
+
},
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
} else if (showComponents.couponDetails) {
|
|
135
|
+
if (isMobile) {
|
|
136
|
+
ComponentStyleMap[templateName]?.thankyouPreviewMobile.then(
|
|
137
|
+
async style => {
|
|
138
|
+
setCurrentStyle((await style()).default);
|
|
139
|
+
},
|
|
140
|
+
);
|
|
141
|
+
} else {
|
|
142
|
+
ComponentStyleMap[templateName]?.thankyouPreviewDesktop.then(
|
|
143
|
+
async style => {
|
|
144
|
+
setCurrentStyle((await style()).default);
|
|
145
|
+
},
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
} else {
|
|
150
|
+
ComponentStyleMap[templateName]?.globalStyle.then(async style => {
|
|
151
|
+
setCurrentStyle((await style()).default);
|
|
152
|
+
});
|
|
153
|
+
}
|
|
154
|
+
}, [preview, isMobile]);
|
|
155
|
+
|
|
156
|
+
useEffect(() => {
|
|
157
|
+
const isBikURL =
|
|
158
|
+
window.location.href?.includes('https://dashboard.bik.ai/') ||
|
|
159
|
+
window.location.href?.includes('https://staging.dashboard.bik.ai/');
|
|
160
|
+
const previewLanguage = props?.widgetCustomisation?.previewLanguage;
|
|
161
|
+
const storeLanguage =
|
|
162
|
+
(isBikURL ? previewLanguage : window?.Shopify?.locale) ??
|
|
163
|
+
previewLanguage ??
|
|
164
|
+
LANGUAGE_ISO_CODES.EN;
|
|
165
|
+
setWidgetLanguage(languageUtils.getStoreLanguage(storeLanguage));
|
|
166
|
+
}, [window.location.href, props?.widgetCustomisation?.previewLanguage]);
|
|
167
|
+
|
|
168
|
+
const fabStyle: IFab = {
|
|
169
|
+
info: undefined,
|
|
170
|
+
visibility: undefined,
|
|
171
|
+
icon: <Send color={props.widgetCustomisation?.iconColor} />,
|
|
172
|
+
onClick() {
|
|
173
|
+
cookieClickHandler(
|
|
174
|
+
`bik-${props.id}-clicked`,
|
|
175
|
+
'bikclick',
|
|
176
|
+
'WIDGET_CLICKED',
|
|
177
|
+
1,
|
|
178
|
+
props.id,
|
|
179
|
+
props.environment,
|
|
180
|
+
);
|
|
181
|
+
setTriggeredIntentDetails({
|
|
182
|
+
triggerSource: TRIGGERED_INTENT_SOURCE.FAB,
|
|
183
|
+
triggerType: TRIGGERED_INTENT_TYPE.FAB_CLICK,
|
|
184
|
+
triggeredPage: getTriggeredPageFromUrl(window.location.href),
|
|
185
|
+
});
|
|
186
|
+
setShowComponents({
|
|
187
|
+
userDetails: true,
|
|
188
|
+
floatingButton: false,
|
|
189
|
+
couponDetails: false,
|
|
190
|
+
});
|
|
191
|
+
},
|
|
192
|
+
buttonStyle: {},
|
|
193
|
+
isMobile: props.isMobile,
|
|
194
|
+
preview: props.preview ?? false,
|
|
195
|
+
widgetCustomisation: {
|
|
196
|
+
fabText: props.widgetCustomisation?.fabText,
|
|
197
|
+
iconColor: props.widgetCustomisation?.iconColor,
|
|
198
|
+
fabTransform: props.widgetCustomisation?.fabTransform,
|
|
199
|
+
fabPositioner: props.widgetCustomisation?.fabPositioner,
|
|
200
|
+
fabBackgroundColor: props.widgetCustomisation?.fabBackgroundColor,
|
|
201
|
+
fabLottie: props.widgetCustomisation?.fabLottie,
|
|
202
|
+
fabAnimationRun: props.widgetCustomisation?.fabAnimationRun,
|
|
203
|
+
fabImage: props.widgetCustomisation?.fabImage,
|
|
204
|
+
fabIconLink: props.widgetCustomisation?.fabIconLink,
|
|
205
|
+
fabWebSize: props.widgetCustomisation?.fabWebSize,
|
|
206
|
+
fabMobileSize: props.widgetCustomisation?.fabMobileSize,
|
|
207
|
+
} as any,
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
if (!currentStyle) {
|
|
211
|
+
return <></>;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
return (
|
|
215
|
+
<>
|
|
216
|
+
{(showComponents.userDetails || showComponents.couponDetails) && (
|
|
217
|
+
<div className={currentStyle.bikDirectReward}>
|
|
218
|
+
<div className={currentStyle.overlay}></div>
|
|
219
|
+
<div
|
|
220
|
+
className={currentStyle.bikDRParentContainer}
|
|
221
|
+
ref={containerReference}
|
|
222
|
+
style={{
|
|
223
|
+
overflow: isMobile ? 'visible' : 'auto',
|
|
224
|
+
width: isMobile || isMobileDevice || imageUrl ? '100%' : '40%',
|
|
225
|
+
...fetchPositionCss(
|
|
226
|
+
props.widgetCustomisation,
|
|
227
|
+
isMobile || isMobileDevice,
|
|
228
|
+
true,
|
|
229
|
+
),
|
|
230
|
+
}}
|
|
231
|
+
>
|
|
232
|
+
<div
|
|
233
|
+
className={
|
|
234
|
+
currentStyle.bikDRMainContainer +
|
|
235
|
+
' ' +
|
|
236
|
+
currentStyle.scaleUpEffect
|
|
237
|
+
}
|
|
238
|
+
id={currentStyle.bikDirectRewardMainContainer}
|
|
239
|
+
>
|
|
240
|
+
<div
|
|
241
|
+
className={currentStyle.bikDRImageDiv}
|
|
242
|
+
style={{
|
|
243
|
+
width: imageUrl
|
|
244
|
+
? '40%'
|
|
245
|
+
: isMobile || isMobileDevice
|
|
246
|
+
? '100%'
|
|
247
|
+
: '0',
|
|
248
|
+
}}
|
|
249
|
+
>
|
|
250
|
+
<div
|
|
251
|
+
className={currentStyle.bikDRCloseBtnWrapperMobile}
|
|
252
|
+
onClick={onCloseHandle}
|
|
253
|
+
>
|
|
254
|
+
<CrossIconMobile />
|
|
255
|
+
</div>
|
|
256
|
+
{imageUrl && (
|
|
257
|
+
<img
|
|
258
|
+
className={currentStyle.bikDRImageContainer}
|
|
259
|
+
src={imageUrl}
|
|
260
|
+
onError={e => {
|
|
261
|
+
(e.target as HTMLImageElement).onerror = null;
|
|
262
|
+
(e.target as HTMLImageElement).src =
|
|
263
|
+
'https://firebasestorage.googleapis.com/v0/b/bikayi-chat.appspot.com/o/images-uid%2F509f5b9f-4b8d-455b-af85-b97b0d4b41d7?alt=media&token=858d569b-a3b5-46f9-9bb9-b88261b0bcd5';
|
|
264
|
+
}}
|
|
265
|
+
/>
|
|
266
|
+
)}
|
|
267
|
+
</div>
|
|
268
|
+
<div
|
|
269
|
+
className={currentStyle.bikDRContentContainer}
|
|
270
|
+
id={currentStyle.directRewardClaimRewardContainer}
|
|
271
|
+
style={
|
|
272
|
+
widgetCustomisation.backgroundType === BACKGROUND_TYPE.IMAGE
|
|
273
|
+
? {
|
|
274
|
+
background: `url(${isMobile || isMobileDevice ? widgetCustomisation.backgroundImageMobile : widgetCustomisation.backgroundImageDesktop})`,
|
|
275
|
+
backgroundSize: '100% 100%',
|
|
276
|
+
backgroundRepeat: 'no-repeat',
|
|
277
|
+
backgroundPosition: 'center',
|
|
278
|
+
width:
|
|
279
|
+
isMobile || isMobileDevice || !imageUrl
|
|
280
|
+
? '100%'
|
|
281
|
+
: '60%',
|
|
282
|
+
}
|
|
283
|
+
: {
|
|
284
|
+
backgroundColor: widgetCustomisation.backgroundColour,
|
|
285
|
+
fontFamily: widgetCustomisation.fontFamily.name,
|
|
286
|
+
width:
|
|
287
|
+
isMobile || isMobileDevice || !imageUrl
|
|
288
|
+
? '100%'
|
|
289
|
+
: '60%',
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
>
|
|
293
|
+
<div
|
|
294
|
+
id={currentStyle.directRewardCloseBtnWrapper}
|
|
295
|
+
onClick={onCloseHandle}
|
|
296
|
+
>
|
|
297
|
+
<CrossIconDesktop color={widgetCustomisation?.fontColour} />
|
|
298
|
+
</div>
|
|
299
|
+
{showComponents.userDetails ? (
|
|
300
|
+
<UserDetails
|
|
301
|
+
widgetCustomisation={
|
|
302
|
+
widgetCustomisation as IDRWidgetCustomisation
|
|
303
|
+
}
|
|
304
|
+
visibility={visibility}
|
|
305
|
+
leadGeneration={leadGeneration}
|
|
306
|
+
error={error}
|
|
307
|
+
isLoading={isLoading}
|
|
308
|
+
claimPrizeHandle={claimPrizeHandle}
|
|
309
|
+
preview={preview}
|
|
310
|
+
templateName={templateName}
|
|
311
|
+
isMobile={isMobile}
|
|
312
|
+
isMobileDevice={isMobileDevice}
|
|
313
|
+
id={props.id}
|
|
314
|
+
countryCode={props.countryCode}
|
|
315
|
+
environment={environment}
|
|
316
|
+
setShowComponents={setShowComponents}
|
|
317
|
+
widgetLanguage={widgetLanguage}
|
|
318
|
+
/>
|
|
319
|
+
) : (
|
|
320
|
+
<></>
|
|
321
|
+
)}
|
|
322
|
+
{showComponents.couponDetails ? (
|
|
323
|
+
<CouponDetails
|
|
324
|
+
discountCodeDetails={discountCodeDetails}
|
|
325
|
+
preview={preview}
|
|
326
|
+
widgetCustomisation={widgetCustomisation}
|
|
327
|
+
templateName={templateName}
|
|
328
|
+
isMobile={isMobile}
|
|
329
|
+
id={props.id}
|
|
330
|
+
environment={environment}
|
|
331
|
+
setShowComponents={setShowComponents}
|
|
332
|
+
visibility={visibility}
|
|
333
|
+
widgetLanguage={widgetLanguage}
|
|
334
|
+
/>
|
|
335
|
+
) : (
|
|
336
|
+
<></>
|
|
337
|
+
)}
|
|
338
|
+
</div>
|
|
339
|
+
</div>
|
|
340
|
+
</div>
|
|
341
|
+
</div>
|
|
342
|
+
)}
|
|
343
|
+
{showComponents.floatingButton && (
|
|
344
|
+
<Fab {...fabStyle} id={`bik-stw-${props.id}-fab`} />
|
|
345
|
+
)}
|
|
346
|
+
</>
|
|
347
|
+
);
|
|
348
|
+
};
|
|
349
|
+
|
|
350
|
+
export default DirectRewardTemplate;
|