@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,183 @@
|
|
|
1
|
+
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import {
|
|
3
|
+
addDiscountText,
|
|
4
|
+
getContrastColor,
|
|
5
|
+
getSegmentDetails,
|
|
6
|
+
updateSegmentWidth,
|
|
7
|
+
} from '../utility';
|
|
8
|
+
import {
|
|
9
|
+
ISegmentDetails,
|
|
10
|
+
ISTWWidgetCustomisation,
|
|
11
|
+
WIDGET_NAME,
|
|
12
|
+
} from '@bikdotai/bik-models/dm';
|
|
13
|
+
import { ComponentStyleMap } from '../../../utilities/styleUtils';
|
|
14
|
+
|
|
15
|
+
const WheelDesign: React.FC<{
|
|
16
|
+
widgetCustomisation: ISTWWidgetCustomisation;
|
|
17
|
+
templateName: WIDGET_NAME;
|
|
18
|
+
preview: boolean;
|
|
19
|
+
isMobile: boolean;
|
|
20
|
+
onSpinHandle?: () => void;
|
|
21
|
+
onCloseHandle?: (
|
|
22
|
+
component: 'wheel' | 'userDetails' | 'couponDetails',
|
|
23
|
+
) => void;
|
|
24
|
+
}> = ({
|
|
25
|
+
widgetCustomisation,
|
|
26
|
+
preview,
|
|
27
|
+
isMobile,
|
|
28
|
+
onSpinHandle,
|
|
29
|
+
onCloseHandle,
|
|
30
|
+
templateName,
|
|
31
|
+
}) => {
|
|
32
|
+
const {
|
|
33
|
+
spinnerColor,
|
|
34
|
+
spikesCount,
|
|
35
|
+
segmentColor1,
|
|
36
|
+
segmentColor2,
|
|
37
|
+
discountCodeTitle,
|
|
38
|
+
couponFont,
|
|
39
|
+
} = widgetCustomisation;
|
|
40
|
+
const [segmentWidth, setSegmentWidth] = useState<number>(null);
|
|
41
|
+
const [segmentDetailsFinal, setSegmentDetailsFinal] = useState<
|
|
42
|
+
ISegmentDetails[]
|
|
43
|
+
>([]);
|
|
44
|
+
const [segmentDividerAngle, setSegmentDividerAngle] = useState<number>(null);
|
|
45
|
+
const [currentStyle, setCurrentStyle] = useState<any>(null);
|
|
46
|
+
useEffect(() => {
|
|
47
|
+
setSegmentDividerAngle(90 - 360 / (spikesCount * 2));
|
|
48
|
+
setSegmentWidth(
|
|
49
|
+
updateSegmentWidth(spikesCount, preview, isMobile, templateName),
|
|
50
|
+
);
|
|
51
|
+
setSegmentDetailsFinal(
|
|
52
|
+
getSegmentDetails(
|
|
53
|
+
spikesCount,
|
|
54
|
+
segmentColor1,
|
|
55
|
+
segmentColor2,
|
|
56
|
+
discountCodeTitle,
|
|
57
|
+
),
|
|
58
|
+
);
|
|
59
|
+
}, [preview, isMobile, spikesCount, segmentColor1, segmentColor2]);
|
|
60
|
+
|
|
61
|
+
useEffect(() => {
|
|
62
|
+
if (
|
|
63
|
+
discountCodeTitle &&
|
|
64
|
+
Object.keys(discountCodeTitle)?.length &&
|
|
65
|
+
segmentDetailsFinal?.length
|
|
66
|
+
) {
|
|
67
|
+
setSegmentDetailsFinal(
|
|
68
|
+
addDiscountText(discountCodeTitle, segmentDetailsFinal),
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
}, [discountCodeTitle]);
|
|
72
|
+
|
|
73
|
+
const addTextLuminance = color => {
|
|
74
|
+
return getContrastColor(color);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
useEffect(() => {
|
|
78
|
+
if (preview) {
|
|
79
|
+
if (isMobile) {
|
|
80
|
+
ComponentStyleMap[templateName]?.wheelPreviewMobile.then(
|
|
81
|
+
async style => {
|
|
82
|
+
setCurrentStyle((await style()).default);
|
|
83
|
+
},
|
|
84
|
+
);
|
|
85
|
+
} else {
|
|
86
|
+
ComponentStyleMap[templateName]?.wheelPreviewDesktop.then(
|
|
87
|
+
async style => {
|
|
88
|
+
setCurrentStyle((await style()).default);
|
|
89
|
+
},
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
} else {
|
|
93
|
+
ComponentStyleMap[templateName]?.globalStyle.then(async style => {
|
|
94
|
+
setCurrentStyle((await style()).default);
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
}, [preview, isMobile]);
|
|
98
|
+
|
|
99
|
+
if (!currentStyle) {
|
|
100
|
+
return <></>;
|
|
101
|
+
}
|
|
102
|
+
return (
|
|
103
|
+
<div id={currentStyle.outerContainer}>
|
|
104
|
+
<div className={currentStyle.mainContainer}>
|
|
105
|
+
<div className={currentStyle.bikContainerSpinner}>
|
|
106
|
+
<div
|
|
107
|
+
className={currentStyle.containerInner}
|
|
108
|
+
style={{ fontFamily: couponFont }}
|
|
109
|
+
>
|
|
110
|
+
<div className={currentStyle.containerOverlay}>
|
|
111
|
+
<div className={currentStyle.lightContainer}>
|
|
112
|
+
{' '}
|
|
113
|
+
<span style={{ '--n': 1 }}></span>{' '}
|
|
114
|
+
<span style={{ '--n': 2 }}></span>
|
|
115
|
+
<span style={{ '--n': 3 }}></span>{' '}
|
|
116
|
+
<span style={{ '--n': 4 }}></span>{' '}
|
|
117
|
+
<span style={{ '--n': 5 }}></span>
|
|
118
|
+
<span style={{ '--n': 6 }}></span>{' '}
|
|
119
|
+
<span style={{ '--n': 7 }}></span>{' '}
|
|
120
|
+
<span style={{ '--n': 8 }}></span>
|
|
121
|
+
<span style={{ '--n': 9 }}></span>{' '}
|
|
122
|
+
<span style={{ '--n': 10 }}></span>{' '}
|
|
123
|
+
<span style={{ '--n': 11 }}></span>
|
|
124
|
+
<span style={{ '--n': 12 }}></span>{' '}
|
|
125
|
+
<span style={{ '--n': 13 }}></span>{' '}
|
|
126
|
+
<span style={{ '--n': 14 }}></span>{' '}
|
|
127
|
+
<span style={{ '--n': 15 }}></span>{' '}
|
|
128
|
+
<span style={{ '--n': 16 }}></span>
|
|
129
|
+
<span style={{ '--n': 17 }}></span>{' '}
|
|
130
|
+
</div>
|
|
131
|
+
</div>
|
|
132
|
+
{segmentDetailsFinal.map((details, index) => {
|
|
133
|
+
return (
|
|
134
|
+
<div
|
|
135
|
+
className={currentStyle.segment + ' ' + details.class}
|
|
136
|
+
style={{
|
|
137
|
+
backgroundColor: details.color,
|
|
138
|
+
transform: `rotate(${details.rotationValue}deg)`,
|
|
139
|
+
width: `${segmentWidth}px`,
|
|
140
|
+
color:
|
|
141
|
+
(index % 2 === 0
|
|
142
|
+
? widgetCustomisation.segmentTextColor1
|
|
143
|
+
: widgetCustomisation.segmentTextColor2) ??
|
|
144
|
+
addTextLuminance(details.color),
|
|
145
|
+
}}
|
|
146
|
+
>
|
|
147
|
+
<span
|
|
148
|
+
style={{
|
|
149
|
+
color: 'inherit',
|
|
150
|
+
}}
|
|
151
|
+
className={currentStyle.couponText}
|
|
152
|
+
>
|
|
153
|
+
{' '}
|
|
154
|
+
{details.text}{' '}
|
|
155
|
+
</span>
|
|
156
|
+
</div>
|
|
157
|
+
);
|
|
158
|
+
})}
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
<div className={currentStyle.containerSpin} onClick={onSpinHandle}>
|
|
162
|
+
<div className={currentStyle.bikSpinArrow}></div>
|
|
163
|
+
<div className={currentStyle.spinOuterContainer}>
|
|
164
|
+
<div
|
|
165
|
+
id={currentStyle.spin}
|
|
166
|
+
className={currentStyle.spinContent}
|
|
167
|
+
style={{ backgroundColor: spinnerColor }}
|
|
168
|
+
>
|
|
169
|
+
<div className={currentStyle.spinLogo}>
|
|
170
|
+
{' '}
|
|
171
|
+
<img
|
|
172
|
+
id={currentStyle.spinLogoImage}
|
|
173
|
+
src="https://firebasestorage.googleapis.com/v0/b/bikayi-chat.appspot.com/o/images-uid%2F62ac2b0f-dd14-4406-85d5-9d82f0416e9a?alt=media&token=b2c0564a-b716-45fe-a912-05c4bdd3f644"
|
|
174
|
+
/>
|
|
175
|
+
</div>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
);
|
|
182
|
+
};
|
|
183
|
+
export default WheelDesign;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import Coupon from '../../../components/couponDetails/coupon';
|
|
3
|
+
import { STWContext } from '../context';
|
|
4
|
+
import { ISTWTemplate } from '../stw1';
|
|
5
|
+
import { ComponentStyleMap } from '../../../utilities/styleUtils';
|
|
6
|
+
import SVGFactory, { SVGName } from '../components/svgFactory';
|
|
7
|
+
|
|
8
|
+
const CouponDetails = (props: ISTWTemplate) => {
|
|
9
|
+
const {
|
|
10
|
+
templateName,
|
|
11
|
+
preview,
|
|
12
|
+
isMobile,
|
|
13
|
+
widgetCustomisation,
|
|
14
|
+
couponCodeDetails,
|
|
15
|
+
} = props;
|
|
16
|
+
const [currentStyle, setCurrentStyle] = useState<any>(null);
|
|
17
|
+
|
|
18
|
+
useEffect(() => {
|
|
19
|
+
if (preview) {
|
|
20
|
+
if (isMobile) {
|
|
21
|
+
ComponentStyleMap[templateName]?.thankyouPreviewMobile.then(
|
|
22
|
+
async style => {
|
|
23
|
+
setCurrentStyle((await style()).default);
|
|
24
|
+
},
|
|
25
|
+
);
|
|
26
|
+
} else {
|
|
27
|
+
ComponentStyleMap[templateName]?.thankyouPreviewDesktop.then(
|
|
28
|
+
async style => {
|
|
29
|
+
setCurrentStyle((await style()).default);
|
|
30
|
+
},
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
} else {
|
|
34
|
+
ComponentStyleMap[templateName]?.globalStyle.then(async style => {
|
|
35
|
+
setCurrentStyle((await style()).default);
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}, [preview, isMobile]);
|
|
39
|
+
|
|
40
|
+
if (!currentStyle || !couponCodeDetails) {
|
|
41
|
+
return <></>;
|
|
42
|
+
}
|
|
43
|
+
return (
|
|
44
|
+
<STWContext.Provider value={{ preview, isMobile, templateName }}>
|
|
45
|
+
<div
|
|
46
|
+
className={currentStyle.bikWrapper}
|
|
47
|
+
style={{ fontFamily: widgetCustomisation.fontFamily?.name }}
|
|
48
|
+
>
|
|
49
|
+
<Coupon {...props} widgetName="Spin_The_Wheel_2" />
|
|
50
|
+
</div>
|
|
51
|
+
<div id={currentStyle.bikCtaContainer}>
|
|
52
|
+
<p
|
|
53
|
+
id={currentStyle.bikCta}
|
|
54
|
+
onClick={() =>
|
|
55
|
+
window.open(
|
|
56
|
+
'https://bik.ai/?utm_campaign=Spin_The_Wheel_2&utm_medium=Widgets&utm_source=Powered_by_bik',
|
|
57
|
+
)
|
|
58
|
+
}
|
|
59
|
+
>
|
|
60
|
+
<a
|
|
61
|
+
target="_blank"
|
|
62
|
+
href="https://bik.ai/?utm_campaign=Spin_The_Wheel_2&utm_medium=Widgets&utm_source=Powered_by_bik"
|
|
63
|
+
>
|
|
64
|
+
Powered by{' '}
|
|
65
|
+
</a>
|
|
66
|
+
<SVGFactory name={SVGName.BIK} />
|
|
67
|
+
</p>
|
|
68
|
+
</div>
|
|
69
|
+
</STWContext.Provider>
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
export default CouponDetails;
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
|
+
import { ISTWTemplate } from '../stw1';
|
|
3
|
+
import {
|
|
4
|
+
BACKGROUND_TYPE,
|
|
5
|
+
ISTWWidgetCustomisation,
|
|
6
|
+
} from '@bikdotai/bik-models/dm';
|
|
7
|
+
import useIsMobile from '../../../hooks/useIsMobile';
|
|
8
|
+
import {
|
|
9
|
+
ComponentStyleMap,
|
|
10
|
+
injectFontLink,
|
|
11
|
+
} from '../../../utilities/styleUtils';
|
|
12
|
+
|
|
13
|
+
const STW2 = (props: ISTWTemplate) => {
|
|
14
|
+
const {
|
|
15
|
+
widgetCustomisation,
|
|
16
|
+
onSpinHandle,
|
|
17
|
+
showComponents,
|
|
18
|
+
preview,
|
|
19
|
+
isMobile,
|
|
20
|
+
templateName,
|
|
21
|
+
couponCodeDetails,
|
|
22
|
+
onCloseHandle,
|
|
23
|
+
} = props;
|
|
24
|
+
const {
|
|
25
|
+
fontFamily,
|
|
26
|
+
backgroundColour,
|
|
27
|
+
backgroundType,
|
|
28
|
+
backgroundImageDesktop,
|
|
29
|
+
backgroundImageMobile,
|
|
30
|
+
} = widgetCustomisation as unknown as ISTWWidgetCustomisation;
|
|
31
|
+
const [currentStyle, setCurrentStyle] = useState<any>(null);
|
|
32
|
+
const [STW2Components, setSTW2Components] = useState<any>();
|
|
33
|
+
const [WheelJSX, setWheelJSX] = useState<any>();
|
|
34
|
+
const [showWheel, setShowWheel] = useState<boolean>(false);
|
|
35
|
+
const isMobileDevice = useIsMobile();
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
if (fontFamily && fontFamily?.link) {
|
|
38
|
+
injectFontLink([fontFamily?.link]);
|
|
39
|
+
}
|
|
40
|
+
}, [fontFamily]);
|
|
41
|
+
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
if (preview && showComponents) {
|
|
44
|
+
if (showComponents.wheel) {
|
|
45
|
+
if (isMobile) {
|
|
46
|
+
ComponentStyleMap[templateName]?.wheelPreviewMobile.then(
|
|
47
|
+
async style => {
|
|
48
|
+
setCurrentStyle((await style()).default);
|
|
49
|
+
},
|
|
50
|
+
);
|
|
51
|
+
} else {
|
|
52
|
+
ComponentStyleMap[templateName]?.wheelPreviewDesktop.then(
|
|
53
|
+
async style => {
|
|
54
|
+
setCurrentStyle((await style()).default);
|
|
55
|
+
},
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
} else if (showComponents.userDetails) {
|
|
59
|
+
if (isMobile) {
|
|
60
|
+
ComponentStyleMap[templateName]?.userInputPreviewMobile.then(
|
|
61
|
+
async style => {
|
|
62
|
+
setCurrentStyle((await style()).default);
|
|
63
|
+
},
|
|
64
|
+
);
|
|
65
|
+
} else {
|
|
66
|
+
ComponentStyleMap[templateName]?.userInputPreviewDesktop.then(
|
|
67
|
+
async style => {
|
|
68
|
+
setCurrentStyle((await style()).default);
|
|
69
|
+
},
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
} else if (showComponents.couponDetails) {
|
|
73
|
+
if (isMobile) {
|
|
74
|
+
ComponentStyleMap[templateName]?.thankyouPreviewMobile.then(
|
|
75
|
+
async style => {
|
|
76
|
+
setCurrentStyle((await style()).default);
|
|
77
|
+
},
|
|
78
|
+
);
|
|
79
|
+
} else {
|
|
80
|
+
ComponentStyleMap[templateName]?.thankyouPreviewDesktop.then(
|
|
81
|
+
async style => {
|
|
82
|
+
setCurrentStyle((await style()).default);
|
|
83
|
+
},
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
} else {
|
|
88
|
+
ComponentStyleMap[templateName]?.globalStyle.then(async style => {
|
|
89
|
+
setCurrentStyle((await style()).default);
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
}, [preview, isMobile]);
|
|
93
|
+
|
|
94
|
+
useEffect(() => {
|
|
95
|
+
if (showComponents && Object.keys(showComponents).length) {
|
|
96
|
+
const showWheelTemp =
|
|
97
|
+
showComponents?.wheel ||
|
|
98
|
+
(!showComponents?.wheel &&
|
|
99
|
+
document.body.clientWidth > 450 &&
|
|
100
|
+
!preview) ||
|
|
101
|
+
(!showComponents?.wheel && preview && !isMobile);
|
|
102
|
+
setShowWheel(showWheelTemp);
|
|
103
|
+
if (showWheelTemp) {
|
|
104
|
+
import('../stw2Components/wheelDesign').then(component => {
|
|
105
|
+
const ComponentTemp = component;
|
|
106
|
+
setWheelJSX(ComponentTemp);
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
if (showComponents.wheel) {
|
|
110
|
+
import('./wheel').then(component => {
|
|
111
|
+
const ComponentTemp = component;
|
|
112
|
+
setSTW2Components(ComponentTemp);
|
|
113
|
+
});
|
|
114
|
+
} else if (showComponents.userDetails) {
|
|
115
|
+
import('./userDetails').then(component => {
|
|
116
|
+
const ComponentTemp = component;
|
|
117
|
+
setSTW2Components(ComponentTemp);
|
|
118
|
+
});
|
|
119
|
+
} else if (showComponents.couponDetails) {
|
|
120
|
+
import('./couponDetails').then(component => {
|
|
121
|
+
const ComponentTemp = component;
|
|
122
|
+
setSTW2Components(ComponentTemp);
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}, [showComponents]);
|
|
127
|
+
|
|
128
|
+
const closeHandle = () => {
|
|
129
|
+
onCloseHandle(
|
|
130
|
+
showComponents.wheel
|
|
131
|
+
? 'wheel'
|
|
132
|
+
: showComponents.userDetails
|
|
133
|
+
? 'userDetails'
|
|
134
|
+
: 'couponDetails',
|
|
135
|
+
);
|
|
136
|
+
};
|
|
137
|
+
if (!currentStyle) {
|
|
138
|
+
return <></>;
|
|
139
|
+
}
|
|
140
|
+
return (
|
|
141
|
+
<>
|
|
142
|
+
<div className={currentStyle.bikSpinOverlay}></div>
|
|
143
|
+
<div className={currentStyle.mainWrapper}>
|
|
144
|
+
<div className={currentStyle.closeBtnWrapper}>
|
|
145
|
+
<div className={currentStyle.closeBtn} onClick={closeHandle}>
|
|
146
|
+
{' '}
|
|
147
|
+
<svg
|
|
148
|
+
width="32"
|
|
149
|
+
height="32"
|
|
150
|
+
viewBox="0 0 32 32"
|
|
151
|
+
fill="none"
|
|
152
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
153
|
+
>
|
|
154
|
+
<path
|
|
155
|
+
d="M24.9428 8.94265C25.4635 8.42195 25.4635 7.57773 24.9428 7.05703C24.4221 6.53633 23.5778 6.53633 23.0572 7.05703L16 14.1142L8.94277 7.05703C8.42207 6.53633 7.57785 6.53633 7.05715 7.05703C6.53645 7.57773 6.53645 8.42195 7.05715 8.94265L14.1143 15.9998L7.05715 23.057C6.53645 23.5777 6.53645 24.4219 7.05715 24.9426C7.57785 25.4633 8.42207 25.4633 8.94277 24.9426L16 17.8855L23.0572 24.9426C23.5778 25.4633 24.4221 25.4633 24.9428 24.9426C25.4635 24.4219 25.4635 23.5777 24.9428 23.057L17.8856 15.9998L24.9428 8.94265Z"
|
|
156
|
+
fill="#142236"
|
|
157
|
+
/>
|
|
158
|
+
</svg>{' '}
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
<div
|
|
162
|
+
className={currentStyle.wrapper}
|
|
163
|
+
style={
|
|
164
|
+
backgroundType === BACKGROUND_TYPE.COLOUR
|
|
165
|
+
? { backgroundColor: backgroundColour }
|
|
166
|
+
: {
|
|
167
|
+
background: `url(${isMobileDevice || isMobile ? backgroundImageMobile : backgroundImageDesktop})`,
|
|
168
|
+
backgroundSize: 'contain',
|
|
169
|
+
backgroundRepeat: 'round',
|
|
170
|
+
backgroundPosition: 'top',
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
>
|
|
174
|
+
{showWheel && WheelJSX ? (
|
|
175
|
+
<WheelJSX.default
|
|
176
|
+
showComponents={showComponents}
|
|
177
|
+
widgetCustomisation={widgetCustomisation}
|
|
178
|
+
onSpinHandle={onSpinHandle}
|
|
179
|
+
preview={preview}
|
|
180
|
+
isMobile={isMobile}
|
|
181
|
+
templateName={templateName}
|
|
182
|
+
/>
|
|
183
|
+
) : (
|
|
184
|
+
<></>
|
|
185
|
+
)}
|
|
186
|
+
{showComponents?.wheel && STW2Components ? (
|
|
187
|
+
<STW2Components.default {...props} onSpinHandle={onSpinHandle} />
|
|
188
|
+
) : (
|
|
189
|
+
<></>
|
|
190
|
+
)}
|
|
191
|
+
{showComponents?.userDetails && STW2Components ? (
|
|
192
|
+
<STW2Components.default
|
|
193
|
+
{...props}
|
|
194
|
+
couponCodeDetails={couponCodeDetails}
|
|
195
|
+
/>
|
|
196
|
+
) : (
|
|
197
|
+
<></>
|
|
198
|
+
)}
|
|
199
|
+
{showComponents?.couponDetails && STW2Components ? (
|
|
200
|
+
<STW2Components.default
|
|
201
|
+
{...props}
|
|
202
|
+
couponCodeDetails={couponCodeDetails}
|
|
203
|
+
/>
|
|
204
|
+
) : (
|
|
205
|
+
<></>
|
|
206
|
+
)}
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
</>
|
|
210
|
+
);
|
|
211
|
+
};
|
|
212
|
+
export default STW2;
|