@opexa/portal-components 0.0.1082 → 0.0.1083
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/dist/client/hooks/useGlobalStore.d.ts +2 -0
- package/dist/client/hooks/useGlobalStore.js +6 -0
- package/dist/components/KYC/KYCDefault/PersonalInformation.js +7 -0
- package/dist/components/Messages/MessagesPopup.js +4 -2
- package/dist/components/SignUp/SignUpDefault/SignUpDefaultForm.js +2 -0
- package/package.json +1 -1
|
@@ -94,6 +94,8 @@ export interface GlobalStore {
|
|
|
94
94
|
bankInformationDetails: PopupStore;
|
|
95
95
|
isNonRegulated: boolean;
|
|
96
96
|
setIsNonRegulated: (isNonRegulated: boolean) => void;
|
|
97
|
+
firstTimeSignUp: boolean;
|
|
98
|
+
setFirstTimeSignUp: (firstTimeSignUp: boolean) => void;
|
|
97
99
|
reset: () => void;
|
|
98
100
|
}
|
|
99
101
|
export declare const useGlobalStore: import("zustand").UseBoundStore<Omit<Omit<import("zustand").StoreApi<GlobalStore>, "setState" | "devtools"> & {
|
|
@@ -509,6 +509,11 @@ export const useGlobalStore = create()(devtools(subscribeWithSelector((set) => (
|
|
|
509
509
|
...state,
|
|
510
510
|
isNonRegulated,
|
|
511
511
|
})),
|
|
512
|
+
firstTimeSignUp: false,
|
|
513
|
+
setFirstTimeSignUp: (firstTimeSignUp) => set((state) => ({
|
|
514
|
+
...state,
|
|
515
|
+
firstTimeSignUp,
|
|
516
|
+
})),
|
|
512
517
|
reset: () => {
|
|
513
518
|
set((state) => ({
|
|
514
519
|
...state,
|
|
@@ -608,6 +613,7 @@ export const useGlobalStore = create()(devtools(subscribeWithSelector((set) => (
|
|
|
608
613
|
open: false,
|
|
609
614
|
'~touched': false,
|
|
610
615
|
},
|
|
616
|
+
firstTimeSignUp: false,
|
|
611
617
|
}));
|
|
612
618
|
},
|
|
613
619
|
}))));
|
|
@@ -111,6 +111,9 @@ export function PersonalInformation() {
|
|
|
111
111
|
kyc: ctx.kyc,
|
|
112
112
|
kycReminder: ctx.kycReminder,
|
|
113
113
|
kycAccountVerificationRequired: ctx.kycAccountVerificationRequired,
|
|
114
|
+
disclaimer: ctx.disclaimer,
|
|
115
|
+
firstTimeSignUp: ctx.firstTimeSignUp,
|
|
116
|
+
setFirstTimeSignUp: ctx.setFirstTimeSignUp,
|
|
114
117
|
})));
|
|
115
118
|
const memberVerificationQuery = useMemberVerificationQuery();
|
|
116
119
|
const memberVerificationId = memberVerificationQuery.data?.id;
|
|
@@ -158,6 +161,10 @@ export function PersonalInformation() {
|
|
|
158
161
|
if (accountQuery.data?.status === 'VERIFICATION_LOCKED') {
|
|
159
162
|
globalStore.kycReminder.setOpen(true);
|
|
160
163
|
}
|
|
164
|
+
if (globalStore.firstTimeSignUp) {
|
|
165
|
+
globalStore.disclaimer.setOpen(true);
|
|
166
|
+
globalStore.setFirstTimeSignUp(false);
|
|
167
|
+
}
|
|
161
168
|
toaster.success({
|
|
162
169
|
title: 'Success',
|
|
163
170
|
description: 'Personal information has been set successfully.',
|
|
@@ -38,6 +38,7 @@ export function MessagesPopup() {
|
|
|
38
38
|
responsibleGamingReminder: ctx.responsibleGamingReminder,
|
|
39
39
|
signIn: ctx.signIn,
|
|
40
40
|
signUp: ctx.signUp,
|
|
41
|
+
disclaimer: ctx.disclaimer,
|
|
41
42
|
})));
|
|
42
43
|
const markMessageAsReadMutation = useMarkMessageAsReadMutation();
|
|
43
44
|
const accountQuery = useAccountQuery();
|
|
@@ -86,8 +87,9 @@ export function MessagesPopup() {
|
|
|
86
87
|
!globalStore.account__mobile.open &&
|
|
87
88
|
!globalStore.kyc.open &&
|
|
88
89
|
!globalStore.kycReminder.open &&
|
|
89
|
-
!globalStore.responsibleGamingReminder.open
|
|
90
|
-
|
|
90
|
+
!globalStore.responsibleGamingReminder.open &&
|
|
91
|
+
!globalStore.disclaimer.open,
|
|
92
|
+
refetchInterval: disclosure.open ? undefined : 2000 * 10,
|
|
91
93
|
});
|
|
92
94
|
const messages = messagesQuery.data?.pages.flatMap((page) => page.edges
|
|
93
95
|
.filter((edge) => globalStore.gameLaunch.details.status === 'PLAYING'
|
|
@@ -61,6 +61,7 @@ export function SignUpDefaultForm() {
|
|
|
61
61
|
responsibleGaming: ctx.responsibleGaming,
|
|
62
62
|
kyc: ctx.kyc,
|
|
63
63
|
termsOfUse: ctx.termsOfUse,
|
|
64
|
+
setFirstTimeSignUp: ctx.setFirstTimeSignUp,
|
|
64
65
|
})));
|
|
65
66
|
const search = useSearchParams();
|
|
66
67
|
const signUpMutation = useSignUpMutation();
|
|
@@ -338,6 +339,7 @@ export function SignUpDefaultForm() {
|
|
|
338
339
|
return;
|
|
339
340
|
}
|
|
340
341
|
globalStore.signUp.setOpen(false);
|
|
342
|
+
globalStore.setFirstTimeSignUp(true);
|
|
341
343
|
step1Form.reset();
|
|
342
344
|
step2Form.reset();
|
|
343
345
|
setStep(1);
|