@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,208 @@
|
|
|
1
|
+
#couponScreenTitleWrapper p {
|
|
2
|
+
margin-bottom: 0;
|
|
3
|
+
font-family: inherit;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#bikHeader {
|
|
7
|
+
font-style: normal;
|
|
8
|
+
font-weight: 400;
|
|
9
|
+
font-size: 20px;
|
|
10
|
+
line-height: 24px;
|
|
11
|
+
text-align: center;
|
|
12
|
+
font-feature-settings:
|
|
13
|
+
'tnum' on,
|
|
14
|
+
'lnum' on,
|
|
15
|
+
'case' on,
|
|
16
|
+
'ss04' on;
|
|
17
|
+
color: #212121;
|
|
18
|
+
margin: 0;
|
|
19
|
+
font-family: inherit;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#bikSubheader {
|
|
23
|
+
font-feature-settings:
|
|
24
|
+
'tnum' on,
|
|
25
|
+
'lnum' on,
|
|
26
|
+
'case' on,
|
|
27
|
+
'ss04' on;
|
|
28
|
+
color: #616161;
|
|
29
|
+
text-align: center;
|
|
30
|
+
margin: 8px 0 24px;
|
|
31
|
+
font-family: inherit;
|
|
32
|
+
font-size: 12px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
#bikHeader p,
|
|
36
|
+
#bikSubheader p {
|
|
37
|
+
font-family: inherit;
|
|
38
|
+
margin-bottom: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.couponName {
|
|
42
|
+
color: #212121;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.poweredBy {
|
|
46
|
+
display: flex;
|
|
47
|
+
justify-content: flex-end;
|
|
48
|
+
align-items: center;
|
|
49
|
+
margin-left: auto;
|
|
50
|
+
text-align: center;
|
|
51
|
+
font-weight: 400;
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
line-height: 16px;
|
|
54
|
+
color: #9e9e9e;
|
|
55
|
+
margin-top: 20px;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
padding-right: 20px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.poweredBy a {
|
|
61
|
+
text-decoration: none;
|
|
62
|
+
color: #9e9e9e;
|
|
63
|
+
margin-right: 6px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.poweredBy svg {
|
|
67
|
+
stroke: none !important;
|
|
68
|
+
fill: none !important;
|
|
69
|
+
height: unset !important;
|
|
70
|
+
width: unset !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#bikayiBtn {
|
|
74
|
+
position: relative;
|
|
75
|
+
border: none;
|
|
76
|
+
padding: 14px 0;
|
|
77
|
+
background: #731dcf;
|
|
78
|
+
border-radius: 8px;
|
|
79
|
+
outline: none;
|
|
80
|
+
width: 100%;
|
|
81
|
+
color: #fff;
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
font-size: 16px;
|
|
84
|
+
line-height: 20px;
|
|
85
|
+
margin-top: 20px;
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
height: 48px;
|
|
88
|
+
font-family: inherit;
|
|
89
|
+
margin-bottom: 8px;
|
|
90
|
+
display: flex;
|
|
91
|
+
justify-content: center;
|
|
92
|
+
align-items: center;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
#bikFooterLastPage {
|
|
96
|
+
width: 405px;
|
|
97
|
+
font-family: inherit;
|
|
98
|
+
margin-bottom: 12px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
#bikDiscountCodeDetails {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
align-items: center;
|
|
105
|
+
padding: 16px;
|
|
106
|
+
gap: 8px;
|
|
107
|
+
width: 100%;
|
|
108
|
+
min-height: 100px;
|
|
109
|
+
background: #e6f4e7;
|
|
110
|
+
border: 1px dashed #1a872c;
|
|
111
|
+
border-radius: 4px;
|
|
112
|
+
font-family: inherit;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
#bikDiscountCouponName {
|
|
116
|
+
text-align: center;
|
|
117
|
+
color: #212121;
|
|
118
|
+
font-family: inherit;
|
|
119
|
+
margin-bottom: 0 !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
#bikDiscountCouponDetail {
|
|
123
|
+
text-align: center;
|
|
124
|
+
color: #616161;
|
|
125
|
+
font-family: inherit;
|
|
126
|
+
margin-bottom: 0 !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.font14 {
|
|
130
|
+
font-size: 14px;
|
|
131
|
+
line-height: 20px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.font16 {
|
|
135
|
+
font-size: 16px !important;
|
|
136
|
+
line-height: 24px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.fontWeight400 {
|
|
140
|
+
font-weight: 400;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.fontWeight600 {
|
|
144
|
+
font-weight: 600;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.winningScreenIconWrapper {
|
|
148
|
+
width: 100%;
|
|
149
|
+
display: flex;
|
|
150
|
+
justify-content: center;
|
|
151
|
+
margin-bottom: 10px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.winningScreenIcon {
|
|
155
|
+
height: 65px;
|
|
156
|
+
width: auto;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
@media only screen and (max-width: 768px) {
|
|
160
|
+
.winningScreenIcon {
|
|
161
|
+
height: 45px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
#bikFooter2 {
|
|
165
|
+
padding: 0 18px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
#bikFooter2 > h1 {
|
|
169
|
+
font-size: 24px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
#bikHeader {
|
|
173
|
+
font-weight: 400;
|
|
174
|
+
font-size: 16px;
|
|
175
|
+
line-height: 24px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
#bikSubheader {
|
|
179
|
+
font-weight: 600;
|
|
180
|
+
font-size: 14px;
|
|
181
|
+
line-height: 24px;
|
|
182
|
+
margin-bottom: 16px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#bikHeader p,
|
|
186
|
+
#bikSubheader p {
|
|
187
|
+
font-family: inherit;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#bikayiBtn {
|
|
191
|
+
margin-top: 16px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
#bikFooterLastPage {
|
|
195
|
+
width: 90%;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
#bikDiscountCodeDetails {
|
|
199
|
+
height: unset;
|
|
200
|
+
margin-bottom: 0;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.poweredBy {
|
|
204
|
+
margin-left: 0;
|
|
205
|
+
margin-top: 10px;
|
|
206
|
+
justify-content: center;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
|
+
import { ISTWTemplate } from '../../widgets/STW/stw1';
|
|
3
|
+
import SVGFactory, { SVGName } from '../../widgets/STW/components/svgFactory';
|
|
4
|
+
import parse from 'html-react-parser';
|
|
5
|
+
import useIsMobile from '../../hooks/useIsMobile';
|
|
6
|
+
import { decodeTextHelper } from '../../widgets/utility';
|
|
7
|
+
import { ISTWWidgetCustomisation, WIDGET_NAME } from '@bikdotai/bik-models/dm';
|
|
8
|
+
import { LanguageUtils } from 'utilities/languageUtilities';
|
|
9
|
+
|
|
10
|
+
const Coupon = (props: ISTWTemplate) => {
|
|
11
|
+
const { widgetCustomisation } = props as unknown as {
|
|
12
|
+
widgetCustomisation: ISTWWidgetCustomisation;
|
|
13
|
+
};
|
|
14
|
+
const { widgetLanguage } = props;
|
|
15
|
+
const languageUtilities = new LanguageUtils();
|
|
16
|
+
const multiLingualData =
|
|
17
|
+
widgetCustomisation?.multiLingualConfigurations?.[widgetLanguage];
|
|
18
|
+
|
|
19
|
+
const [btnText, setBtnText] = useState<string>(
|
|
20
|
+
multiLingualData?.winningScreenButtonText ??
|
|
21
|
+
widgetCustomisation.winningScreenButtonText ??
|
|
22
|
+
'Copy and use discount',
|
|
23
|
+
);
|
|
24
|
+
const [currentStyle, setCurrentStyle] = useState<any>(null);
|
|
25
|
+
const onCopyHandle = () => {
|
|
26
|
+
const cb = navigator.clipboard;
|
|
27
|
+
cb.writeText(props.couponCodeDetails.code).then(() => {
|
|
28
|
+
setBtnText(languageUtilities.getCopiedMessage(widgetLanguage));
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const onRedirectionHandle = () => {
|
|
33
|
+
window.open(
|
|
34
|
+
props.widgetCustomisation.postPlayScreenButtonRedirection,
|
|
35
|
+
'_blank',
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const defaultIcon =
|
|
40
|
+
'https://storage.googleapis.com/bik-widget-mfe/bap%2Fpost-play-screen-assets%2Fimages%2Fbik%2FconfettiOne.png';
|
|
41
|
+
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
const importStyles = async () => {
|
|
44
|
+
let stylesModule;
|
|
45
|
+
if (props.preview) {
|
|
46
|
+
if (props.isMobile) {
|
|
47
|
+
stylesModule = await import('./couponPreviewMobile.module.css');
|
|
48
|
+
} else {
|
|
49
|
+
stylesModule = await import('./couponPreviewDesktop.module.css');
|
|
50
|
+
}
|
|
51
|
+
} else {
|
|
52
|
+
stylesModule = await import('./coupon.module.css');
|
|
53
|
+
}
|
|
54
|
+
setCurrentStyle(stylesModule.default);
|
|
55
|
+
};
|
|
56
|
+
importStyles().then();
|
|
57
|
+
}, [props.preview, props.isMobile]);
|
|
58
|
+
|
|
59
|
+
const isMobileDevice = useIsMobile();
|
|
60
|
+
let winningScreenTitleSize: string;
|
|
61
|
+
let winningScreenSubTitleSize: string;
|
|
62
|
+
|
|
63
|
+
if (props.preview) {
|
|
64
|
+
winningScreenTitleSize = props.isMobile ? '14px' : '10px';
|
|
65
|
+
winningScreenSubTitleSize = props.isMobile ? '11px' : '8px';
|
|
66
|
+
} else {
|
|
67
|
+
winningScreenTitleSize = isMobileDevice ? '18px' : `24px`;
|
|
68
|
+
winningScreenSubTitleSize = isMobileDevice ? '14px' : `16px`;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (!currentStyle) {
|
|
72
|
+
return <></>;
|
|
73
|
+
}
|
|
74
|
+
return (
|
|
75
|
+
<>
|
|
76
|
+
{props.templateName !== WIDGET_NAME.STW2 && (
|
|
77
|
+
<div className={currentStyle.winningScreenIconWrapper}>
|
|
78
|
+
<img
|
|
79
|
+
src={widgetCustomisation.winningScreenTitleIcon ?? defaultIcon}
|
|
80
|
+
className={currentStyle.winningScreenIcon}
|
|
81
|
+
/>
|
|
82
|
+
</div>
|
|
83
|
+
)}
|
|
84
|
+
<div
|
|
85
|
+
id={currentStyle.couponScreenTitleWrapper}
|
|
86
|
+
style={{
|
|
87
|
+
display: 'flex',
|
|
88
|
+
justifyContent: 'center',
|
|
89
|
+
textAlign: 'center',
|
|
90
|
+
fontSize: winningScreenTitleSize,
|
|
91
|
+
fontFamily: 'inherit',
|
|
92
|
+
color: widgetCustomisation.fontColour,
|
|
93
|
+
}}
|
|
94
|
+
>
|
|
95
|
+
{(multiLingualData?.winningScreenTitle ??
|
|
96
|
+
widgetCustomisation.winningScreenTitle) ? (
|
|
97
|
+
parse(
|
|
98
|
+
decodeTextHelper(
|
|
99
|
+
multiLingualData?.winningScreenTitle ??
|
|
100
|
+
widgetCustomisation.winningScreenTitle,
|
|
101
|
+
),
|
|
102
|
+
)
|
|
103
|
+
) : (
|
|
104
|
+
<p id={currentStyle.bikHeader}>{'Congratulations!'}</p>
|
|
105
|
+
)}
|
|
106
|
+
</div>
|
|
107
|
+
<div
|
|
108
|
+
id={currentStyle.couponScreenTitleWrapper}
|
|
109
|
+
style={{
|
|
110
|
+
display: 'flex',
|
|
111
|
+
justifyContent: 'center',
|
|
112
|
+
textAlign: 'center',
|
|
113
|
+
marginTop: props.preview ? 0 : 8,
|
|
114
|
+
fontFamily: 'inherit',
|
|
115
|
+
fontSize: winningScreenSubTitleSize,
|
|
116
|
+
color: widgetCustomisation.fontColour,
|
|
117
|
+
opacity: 0.8,
|
|
118
|
+
}}
|
|
119
|
+
>
|
|
120
|
+
{(multiLingualData?.winningScreenSubTitle ??
|
|
121
|
+
widgetCustomisation.winningScreenSubTitle) ? (
|
|
122
|
+
parse(
|
|
123
|
+
decodeTextHelper(
|
|
124
|
+
multiLingualData?.winningScreenSubTitle ??
|
|
125
|
+
widgetCustomisation.winningScreenSubTitle,
|
|
126
|
+
),
|
|
127
|
+
)
|
|
128
|
+
) : (
|
|
129
|
+
<></>
|
|
130
|
+
)}
|
|
131
|
+
</div>
|
|
132
|
+
<div id={currentStyle.bikFooterLastPage}>
|
|
133
|
+
{props.couponCodeDetails && (
|
|
134
|
+
<div
|
|
135
|
+
id={currentStyle.bikDiscountCodeDetails}
|
|
136
|
+
style={{
|
|
137
|
+
backgroundColor: widgetCustomisation.winningScreenCouponBgColour,
|
|
138
|
+
borderColor: widgetCustomisation.winningScreenCouponTextColour,
|
|
139
|
+
margin: props.preview ? '5px 0' : '20px 0',
|
|
140
|
+
borderWidth: 1,
|
|
141
|
+
borderRadius: 18,
|
|
142
|
+
}}
|
|
143
|
+
>
|
|
144
|
+
<p
|
|
145
|
+
id={currentStyle.bikDiscountCouponName}
|
|
146
|
+
className={currentStyle.font14 + ' ' + currentStyle.fontWeight600}
|
|
147
|
+
style={{
|
|
148
|
+
color: widgetCustomisation.winningScreenCouponTextColour,
|
|
149
|
+
marginTop: 0,
|
|
150
|
+
}}
|
|
151
|
+
>
|
|
152
|
+
{props.couponCodeDetails.code}
|
|
153
|
+
</p>
|
|
154
|
+
<p
|
|
155
|
+
id={currentStyle.bikDiscountCouponDetail}
|
|
156
|
+
className={currentStyle.font14 + ' ' + currentStyle.fontWeight400}
|
|
157
|
+
style={{
|
|
158
|
+
color: widgetCustomisation.winningScreenCouponTextColour,
|
|
159
|
+
}}
|
|
160
|
+
>
|
|
161
|
+
{props.couponCodeDetails.description}
|
|
162
|
+
</p>
|
|
163
|
+
</div>
|
|
164
|
+
)}
|
|
165
|
+
<button
|
|
166
|
+
data-testid={'copy-btn'}
|
|
167
|
+
id={currentStyle.bikayiBtn}
|
|
168
|
+
className={currentStyle.copyBtn}
|
|
169
|
+
style={{
|
|
170
|
+
backgroundColor: widgetCustomisation.winningScreenButtonColour,
|
|
171
|
+
color: widgetCustomisation.winningScreenButtonTextColour,
|
|
172
|
+
fontFamily: widgetCustomisation.fontFamily?.name ?? 'inherit',
|
|
173
|
+
}}
|
|
174
|
+
onClick={
|
|
175
|
+
props.widgetCustomisation.isRedirectionButtonEnabled
|
|
176
|
+
? onRedirectionHandle
|
|
177
|
+
: onCopyHandle
|
|
178
|
+
}
|
|
179
|
+
>
|
|
180
|
+
{btnText}
|
|
181
|
+
</button>
|
|
182
|
+
</div>
|
|
183
|
+
{props.templateName !== WIDGET_NAME.STW2 && (
|
|
184
|
+
<p
|
|
185
|
+
className={currentStyle.poweredBy}
|
|
186
|
+
style={{ opacity: 0.4 }}
|
|
187
|
+
onClick={() =>
|
|
188
|
+
window.open(
|
|
189
|
+
`https://bik.ai/?utm_campaign=${props.widgetName}&utm_medium=Widgets&utm_source=Powered_by_bik`,
|
|
190
|
+
)
|
|
191
|
+
}
|
|
192
|
+
>
|
|
193
|
+
<a
|
|
194
|
+
href={`https://bik.ai/?utm_campaign=${props.widgetName}&utm_medium=Widgets&utm_source=Powered_by_bik`}
|
|
195
|
+
target="_blank"
|
|
196
|
+
rel="noreferrer"
|
|
197
|
+
style={{ color: widgetCustomisation.fontColour }}
|
|
198
|
+
>
|
|
199
|
+
{languageUtilities.getPoweredByMessage(widgetLanguage)}
|
|
200
|
+
</a>
|
|
201
|
+
<SVGFactory
|
|
202
|
+
name={SVGName.BIK}
|
|
203
|
+
color={widgetCustomisation.fontColour}
|
|
204
|
+
/>
|
|
205
|
+
</p>
|
|
206
|
+
)}
|
|
207
|
+
</>
|
|
208
|
+
);
|
|
209
|
+
};
|
|
210
|
+
export default Coupon;
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
.winningScreenIconWrapper {
|
|
2
|
+
width: 100%;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
margin-bottom: 4px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
#couponScreenTitleWrapper p {
|
|
9
|
+
margin-bottom: 0;
|
|
10
|
+
font-family: inherit;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.winningScreenIcon {
|
|
14
|
+
height: 24px;
|
|
15
|
+
width: auto;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#bikHeader {
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-weight: 600;
|
|
21
|
+
font-size: 13px;
|
|
22
|
+
line-height: 20px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
font-feature-settings:
|
|
25
|
+
'tnum' on,
|
|
26
|
+
'lnum' on,
|
|
27
|
+
'case' on,
|
|
28
|
+
'ss04' on;
|
|
29
|
+
color: #212121;
|
|
30
|
+
margin: 0;
|
|
31
|
+
font-family: inherit;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#bikSubheader {
|
|
35
|
+
font-feature-settings:
|
|
36
|
+
'tnum' on,
|
|
37
|
+
'lnum' on,
|
|
38
|
+
'case' on,
|
|
39
|
+
'ss04' on;
|
|
40
|
+
text-align: center;
|
|
41
|
+
margin: 2px 0 8px 0;
|
|
42
|
+
font-weight: 600;
|
|
43
|
+
font-size: 8px;
|
|
44
|
+
line-height: 8px;
|
|
45
|
+
color: #212121;
|
|
46
|
+
font-family: inherit;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
#bikHeader p,
|
|
50
|
+
#bikSubheader p {
|
|
51
|
+
margin-bottom: 0 !important;
|
|
52
|
+
font-family: inherit;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.font14 {
|
|
56
|
+
font-size: 8px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.font10 {
|
|
60
|
+
font-size: 10px;
|
|
61
|
+
line-height: 12px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.fontWeight400 {
|
|
65
|
+
font-weight: 400;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.fontWeight600 {
|
|
69
|
+
font-weight: 600;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
#bikFooter2 {
|
|
73
|
+
display: none;
|
|
74
|
+
padding-bottom: 16px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#bikDiscountCodeDetails {
|
|
78
|
+
margin: 0 auto;
|
|
79
|
+
width: 85%;
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-direction: column;
|
|
82
|
+
align-items: center;
|
|
83
|
+
padding: 4px;
|
|
84
|
+
gap: 4px;
|
|
85
|
+
min-height: 30px;
|
|
86
|
+
background: #e6f4e7;
|
|
87
|
+
border-radius: 4px;
|
|
88
|
+
font-family: inherit;
|
|
89
|
+
text-align: center;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
#bikDiscountCouponName {
|
|
93
|
+
color: #212121;
|
|
94
|
+
line-height: 8px;
|
|
95
|
+
margin: 0;
|
|
96
|
+
font-family: inherit;
|
|
97
|
+
text-align: center;
|
|
98
|
+
width: 100%;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
#bikDiscountCouponDetail {
|
|
102
|
+
color: #616161;
|
|
103
|
+
line-height: 10px;
|
|
104
|
+
margin: 0;
|
|
105
|
+
font-family: inherit;
|
|
106
|
+
text-align: center;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
#bikFooterLastPage {
|
|
110
|
+
display: flex;
|
|
111
|
+
flex-direction: column;
|
|
112
|
+
align-items: center;
|
|
113
|
+
font-family: inherit;
|
|
114
|
+
min-width: 150px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.poweredBy {
|
|
118
|
+
color: #9e9e9e;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
font-size: 10px;
|
|
121
|
+
line-height: 12px;
|
|
122
|
+
pointer-events: none;
|
|
123
|
+
text-align: center;
|
|
124
|
+
margin: 0 0 0 auto;
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
justify-content: flex-end;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.poweredBy a {
|
|
131
|
+
color: #9e9e9e;
|
|
132
|
+
pointer-events: none;
|
|
133
|
+
text-decoration: none;
|
|
134
|
+
margin-right: 4px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.poweredBy svg {
|
|
138
|
+
width: 20px;
|
|
139
|
+
height: 20px;
|
|
140
|
+
margin: 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
#bikayiBtn {
|
|
144
|
+
border: none;
|
|
145
|
+
background: #731dcf;
|
|
146
|
+
border-radius: 8px;
|
|
147
|
+
outline: none;
|
|
148
|
+
color: #fff;
|
|
149
|
+
margin-top: 4px;
|
|
150
|
+
cursor: pointer;
|
|
151
|
+
font-weight: 600;
|
|
152
|
+
font-size: 8px;
|
|
153
|
+
line-height: 6px;
|
|
154
|
+
font-family: inherit;
|
|
155
|
+
padding: 5px 0;
|
|
156
|
+
width: 85%;
|
|
157
|
+
pointer-events: none;
|
|
158
|
+
}
|