@tap-payments/auth-jsconnect 1.0.52 → 1.0.53
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/build/@types/app.d.ts +2 -3
- package/build/@types/form.d.ts +16 -1
- package/build/api/entity.d.ts +5 -2
- package/build/api/index.d.ts +3 -3
- package/build/api/lead.d.ts +1 -1
- package/build/app/rootReducer.d.ts +3 -0
- package/build/app/rootReducer.js +7 -1
- package/build/app/store.d.ts +6 -0
- package/build/components/AnimationFlow/AnimationFlow.d.ts +3 -1
- package/build/components/AnimationFlow/AnimationFlow.js +5 -1
- package/build/components/AnimationFlow/Loader.d.ts +2 -0
- package/build/components/AnimationFlow/Loader.js +14 -0
- package/build/components/Loader/Loader.d.ts +1 -0
- package/build/components/Loader/Loader.js +1 -1
- package/build/constants/app.d.ts +18 -0
- package/build/constants/app.js +47 -11
- package/build/features/app/bank/bankStore.d.ts +1 -1
- package/build/features/app/bank/bankStore.js +5 -6
- package/build/features/app/business/businessStore.d.ts +1 -2
- package/build/features/app/business/businessStore.js +56 -56
- package/build/features/app/connect/connectStore.js +17 -30
- package/build/features/app/individual/individualStore.d.ts +36 -0
- package/build/features/app/individual/individualStore.js +222 -0
- package/build/features/app/password/passwordStore.d.ts +36 -0
- package/build/features/app/password/passwordStore.js +218 -0
- package/build/features/app/tax/taxStore.d.ts +36 -0
- package/build/features/app/tax/taxStore.js +217 -0
- package/build/features/bank/Bank.js +1 -1
- package/build/features/bank/screens/Verify/Verify.js +2 -2
- package/build/features/business/screens/Activities/Activities.js +8 -8
- package/build/features/business/screens/Activities/ActivitiesList.js +7 -7
- package/build/features/business/screens/Activities/SalesChannels.js +1 -1
- package/build/features/connect/Connect.js +2 -2
- package/build/features/connect/screens/Merchant/BrandList.js +1 -1
- package/build/features/connect/screens/Merchant/Merchant.js +32 -21
- package/build/features/connect/screens/Merchant/SocialMedia.d.ts +2 -1
- package/build/features/connect/screens/Merchant/SocialMedia.js +6 -2
- package/build/features/connect/screens/Merchant/validation.d.ts +6 -1
- package/build/features/connect/screens/Merchant/validation.js +67 -9
- package/build/features/connect/screens/Mobile/MobileNumber.js +1 -1
- package/build/features/featuresScreens.js +15 -5
- package/build/features/individual/Individual.d.ts +2 -1
- package/build/features/individual/Individual.js +15 -7
- package/build/features/individual/screens/Verify/OTPInput.d.ts +5 -0
- package/build/features/individual/screens/Verify/OTPInput.js +42 -0
- package/build/features/individual/screens/Verify/Verify.d.ts +5 -0
- package/build/features/individual/screens/Verify/Verify.js +78 -0
- package/build/features/individual/screens/Verify/index.d.ts +2 -0
- package/build/features/individual/screens/Verify/index.js +2 -0
- package/build/features/individual/screens/Verify/validation.d.ts +8 -0
- package/build/features/individual/screens/Verify/validation.js +4 -0
- package/build/features/password/Password.d.ts +2 -1
- package/build/features/password/Password.js +15 -7
- package/build/features/password/screens/Verify/OTPInput.d.ts +5 -0
- package/build/features/password/screens/Verify/OTPInput.js +42 -0
- package/build/features/password/screens/Verify/Verify.d.ts +5 -0
- package/build/features/password/screens/Verify/Verify.js +78 -0
- package/build/features/password/screens/Verify/index.d.ts +2 -0
- package/build/features/password/screens/Verify/index.js +2 -0
- package/build/features/password/screens/Verify/validation.d.ts +8 -0
- package/build/features/password/screens/Verify/validation.js +4 -0
- package/build/features/tax/Tax.d.ts +2 -1
- package/build/features/tax/Tax.js +15 -7
- package/build/features/tax/screens/Verify/OTPInput.d.ts +5 -0
- package/build/features/tax/screens/Verify/OTPInput.js +42 -0
- package/build/features/tax/screens/Verify/Verify.d.ts +5 -0
- package/build/features/tax/screens/Verify/Verify.js +78 -0
- package/build/features/tax/screens/Verify/index.d.ts +2 -0
- package/build/features/tax/screens/Verify/index.js +2 -0
- package/build/features/tax/screens/Verify/validation.d.ts +8 -0
- package/build/features/tax/screens/Verify/validation.js +4 -0
- package/build/hooks/useAppDispatch.d.ts +3 -0
- package/build/utils/string.js +0 -1
- package/package.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { RootState } from '../../../app/store';
|
|
2
|
+
import { OTPFormValues, PasswordCreateFormValues, ResponseData, SharedState } from '../../../@types';
|
|
3
|
+
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
4
|
+
data: any;
|
|
5
|
+
leadData: any;
|
|
6
|
+
token: string;
|
|
7
|
+
}, string, {}>;
|
|
8
|
+
export declare const verifyPasswordLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
9
|
+
data: any;
|
|
10
|
+
formData: {
|
|
11
|
+
otp: string;
|
|
12
|
+
};
|
|
13
|
+
}, OTPFormValues, {}>;
|
|
14
|
+
export declare const updateLeadSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
15
|
+
response: any;
|
|
16
|
+
formData: void;
|
|
17
|
+
}, void, {}>;
|
|
18
|
+
declare type VerifyData = {
|
|
19
|
+
token: string;
|
|
20
|
+
};
|
|
21
|
+
export interface PasswordData {
|
|
22
|
+
verify: ResponseData & VerifyData;
|
|
23
|
+
otpData: OTPFormValues & ResponseData;
|
|
24
|
+
passwordData: PasswordCreateFormValues & ResponseData;
|
|
25
|
+
}
|
|
26
|
+
export interface PasswordState extends SharedState<PasswordData> {
|
|
27
|
+
}
|
|
28
|
+
export declare const passwordSlice: import("@reduxjs/toolkit").Slice<PasswordState, {
|
|
29
|
+
clearError: (state: PasswordState) => void;
|
|
30
|
+
stopLoader: (state: PasswordState) => void;
|
|
31
|
+
resetOTPScreen: (state: PasswordState) => void;
|
|
32
|
+
}, "password/store">;
|
|
33
|
+
export declare const clearError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, stopLoader: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, resetOTPScreen: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
|
|
34
|
+
declare const _default: import("redux").Reducer<PasswordState, import("redux").AnyAction>;
|
|
35
|
+
export default _default;
|
|
36
|
+
export declare const passwordSelector: (state: RootState) => PasswordState;
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
13
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
14
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
15
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
16
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
17
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
22
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
25
|
+
function step(op) {
|
|
26
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
27
|
+
while (_) try {
|
|
28
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
29
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
30
|
+
switch (op[0]) {
|
|
31
|
+
case 0: case 1: t = op; break;
|
|
32
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
33
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
34
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
35
|
+
default:
|
|
36
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
37
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
38
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
39
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
40
|
+
if (t[2]) _.ops.pop();
|
|
41
|
+
_.trys.pop(); continue;
|
|
42
|
+
}
|
|
43
|
+
op = body.call(thisArg, _);
|
|
44
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
45
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
var _a;
|
|
49
|
+
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
50
|
+
import API from '../../../api';
|
|
51
|
+
import { removeRequestHeaders } from '../../../utils';
|
|
52
|
+
import { handleNextScreenStep } from '../../../app/settings';
|
|
53
|
+
import { PASSWORD_STEP_NAMES } from '../../../constants';
|
|
54
|
+
export var verifyLeadToken = createAsyncThunk('verifyLeadToken', function (token, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
55
|
+
var payload, data, leadResponse;
|
|
56
|
+
return __generator(this, function (_a) {
|
|
57
|
+
switch (_a.label) {
|
|
58
|
+
case 0:
|
|
59
|
+
payload = {
|
|
60
|
+
service_name: 'tap_email',
|
|
61
|
+
verify_token: token
|
|
62
|
+
};
|
|
63
|
+
return [4, API.leadService.verifyLeadToken(payload)];
|
|
64
|
+
case 1:
|
|
65
|
+
data = (_a.sent()).data;
|
|
66
|
+
leadResponse = undefined;
|
|
67
|
+
if (!(!(data === null || data === void 0 ? void 0 : data.errors) && !(data === null || data === void 0 ? void 0 : data.mw_error))) return [3, 3];
|
|
68
|
+
return [4, API.leadService.retrieveLead(data === null || data === void 0 ? void 0 : data.id)];
|
|
69
|
+
case 2:
|
|
70
|
+
leadResponse = _a.sent();
|
|
71
|
+
if (data.step_name === PASSWORD_STEP_NAMES.IDENTITY_AUTH) {
|
|
72
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
73
|
+
}
|
|
74
|
+
_a.label = 3;
|
|
75
|
+
case 3: return [2, { data: data, leadData: leadResponse === null || leadResponse === void 0 ? void 0 : leadResponse.data, token: token }];
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
}); });
|
|
79
|
+
export var verifyPasswordLeadOTP = createAsyncThunk('verifyPasswordLeadOTP', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
80
|
+
var _a, password, settings, responseBody, payload, data;
|
|
81
|
+
var _b, _c, _d;
|
|
82
|
+
return __generator(this, function (_e) {
|
|
83
|
+
switch (_e.label) {
|
|
84
|
+
case 0:
|
|
85
|
+
_a = thunkApi.getState(), password = _a.password, settings = _a.settings;
|
|
86
|
+
responseBody = password.data.verify.responseBody;
|
|
87
|
+
payload = {
|
|
88
|
+
data: params.otp,
|
|
89
|
+
service_name: (_b = responseBody === null || responseBody === void 0 ? void 0 : responseBody.verification_by) === null || _b === void 0 ? void 0 : _b.service_name,
|
|
90
|
+
verify_token: responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token,
|
|
91
|
+
step_name: PASSWORD_STEP_NAMES.PHONE_AUTH,
|
|
92
|
+
encryption_contract: ['data']
|
|
93
|
+
};
|
|
94
|
+
return [4, API.leadService.verifyLeadOTP(payload)];
|
|
95
|
+
case 1:
|
|
96
|
+
data = (_e.sent()).data;
|
|
97
|
+
if (!data.errors) {
|
|
98
|
+
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, { otp: params.otp });
|
|
99
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
100
|
+
}
|
|
101
|
+
return [2, { data: data, formData: __assign({}, params) }];
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}); });
|
|
105
|
+
export var updateLeadSuccess = createAsyncThunk('updateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
106
|
+
var _a, settings, password, payload, data;
|
|
107
|
+
var _b, _c, _d, _e, _f;
|
|
108
|
+
return __generator(this, function (_g) {
|
|
109
|
+
switch (_g.label) {
|
|
110
|
+
case 0:
|
|
111
|
+
_a = thunkApi.getState(), settings = _a.settings, password = _a.password;
|
|
112
|
+
payload = {
|
|
113
|
+
step_name: PASSWORD_STEP_NAMES.PASSWORD_SUCCESS,
|
|
114
|
+
id: ((_b = password.data.otpData.responseBody) === null || _b === void 0 ? void 0 : _b.id) || '',
|
|
115
|
+
encryption_contract: []
|
|
116
|
+
};
|
|
117
|
+
return [4, API.leadService.updateLead(payload)];
|
|
118
|
+
case 1:
|
|
119
|
+
data = (_g.sent()).data;
|
|
120
|
+
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, params);
|
|
121
|
+
(_f = (_e = settings.data.appConfig).onFlowCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, { data: data });
|
|
122
|
+
return [2, { response: data, formData: params }];
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
}); });
|
|
126
|
+
var initialState = {
|
|
127
|
+
error: null,
|
|
128
|
+
loading: false,
|
|
129
|
+
data: {
|
|
130
|
+
verify: {
|
|
131
|
+
token: ''
|
|
132
|
+
},
|
|
133
|
+
otpData: {
|
|
134
|
+
otp: ''
|
|
135
|
+
},
|
|
136
|
+
passwordData: {
|
|
137
|
+
password: '',
|
|
138
|
+
confirmPassword: ''
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
export var passwordSlice = createSlice({
|
|
143
|
+
name: 'password/store',
|
|
144
|
+
initialState: initialState,
|
|
145
|
+
reducers: {
|
|
146
|
+
clearError: function (state) {
|
|
147
|
+
state.error = null;
|
|
148
|
+
},
|
|
149
|
+
stopLoader: function (state) {
|
|
150
|
+
state.loading = false;
|
|
151
|
+
},
|
|
152
|
+
resetOTPScreen: function (state) {
|
|
153
|
+
state.data.otpData.otp = '';
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
extraReducers: function (builder) {
|
|
157
|
+
builder
|
|
158
|
+
.addCase(verifyLeadToken.fulfilled, function (state, action) {
|
|
159
|
+
var _a;
|
|
160
|
+
state.error = null;
|
|
161
|
+
var _b = action.payload, data = _b.data, token = _b.token, leadData = _b.leadData;
|
|
162
|
+
var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
163
|
+
if (description) {
|
|
164
|
+
state.error = description;
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
state.data.verify.responseBody = __assign(__assign({}, data), leadData);
|
|
168
|
+
state.data.verify.token = token;
|
|
169
|
+
})
|
|
170
|
+
.addCase(verifyLeadToken.rejected, function (state, action) {
|
|
171
|
+
state.error = action.error.message;
|
|
172
|
+
})
|
|
173
|
+
.addCase(verifyPasswordLeadOTP.pending, function (state) {
|
|
174
|
+
state.loading = true;
|
|
175
|
+
state.error = null;
|
|
176
|
+
})
|
|
177
|
+
.addCase(verifyPasswordLeadOTP.fulfilled, function (state, action) {
|
|
178
|
+
var _a;
|
|
179
|
+
state.loading = false;
|
|
180
|
+
state.error = null;
|
|
181
|
+
var _b = action.payload, data = _b.data, formData = _b.formData;
|
|
182
|
+
var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
183
|
+
if (description) {
|
|
184
|
+
state.error = description;
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
187
|
+
state.data.otpData = formData;
|
|
188
|
+
state.data.otpData.responseBody = data;
|
|
189
|
+
})
|
|
190
|
+
.addCase(verifyPasswordLeadOTP.rejected, function (state, action) {
|
|
191
|
+
state.loading = false;
|
|
192
|
+
state.error = action.error.message;
|
|
193
|
+
})
|
|
194
|
+
.addCase(updateLeadSuccess.fulfilled, function (state, action) {
|
|
195
|
+
var _a;
|
|
196
|
+
state.loading = false;
|
|
197
|
+
state.error = null;
|
|
198
|
+
var response = action.payload.response;
|
|
199
|
+
var description = (((_a = response === null || response === void 0 ? void 0 : response.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
200
|
+
if (description) {
|
|
201
|
+
state.error = description;
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
removeRequestHeaders();
|
|
205
|
+
})
|
|
206
|
+
.addCase(updateLeadSuccess.pending, function (state) {
|
|
207
|
+
state.loading = true;
|
|
208
|
+
state.error = null;
|
|
209
|
+
})
|
|
210
|
+
.addCase(updateLeadSuccess.rejected, function (state, action) {
|
|
211
|
+
state.loading = false;
|
|
212
|
+
state.error = action.error.message;
|
|
213
|
+
});
|
|
214
|
+
}
|
|
215
|
+
});
|
|
216
|
+
export var clearError = (_a = passwordSlice.actions, _a.clearError), stopLoader = _a.stopLoader, resetOTPScreen = _a.resetOTPScreen;
|
|
217
|
+
export default passwordSlice.reducer;
|
|
218
|
+
export var passwordSelector = function (state) { return state.password; };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { RootState } from '../../../app/store';
|
|
2
|
+
import { OTPFormValues, ResponseData, SharedState, TaxFormValues } from '../../../@types';
|
|
3
|
+
export declare const verifyLeadToken: import("@reduxjs/toolkit").AsyncThunk<{
|
|
4
|
+
data: any;
|
|
5
|
+
leadData: any;
|
|
6
|
+
token: string;
|
|
7
|
+
}, string, {}>;
|
|
8
|
+
export declare const verifyTaxLeadOTP: import("@reduxjs/toolkit").AsyncThunk<{
|
|
9
|
+
data: any;
|
|
10
|
+
formData: {
|
|
11
|
+
otp: string;
|
|
12
|
+
};
|
|
13
|
+
}, OTPFormValues, {}>;
|
|
14
|
+
export declare const updateLeadSuccess: import("@reduxjs/toolkit").AsyncThunk<{
|
|
15
|
+
response: any;
|
|
16
|
+
formData: void;
|
|
17
|
+
}, void, {}>;
|
|
18
|
+
declare type VerifyData = {
|
|
19
|
+
token: string;
|
|
20
|
+
};
|
|
21
|
+
export interface TaxData {
|
|
22
|
+
verify: ResponseData & VerifyData;
|
|
23
|
+
otpData: OTPFormValues & ResponseData;
|
|
24
|
+
taxData: TaxFormValues & ResponseData;
|
|
25
|
+
}
|
|
26
|
+
export interface TaxState extends SharedState<TaxData> {
|
|
27
|
+
}
|
|
28
|
+
export declare const taxSlice: import("@reduxjs/toolkit").Slice<TaxState, {
|
|
29
|
+
clearError: (state: TaxState) => void;
|
|
30
|
+
stopLoader: (state: TaxState) => void;
|
|
31
|
+
resetOTPScreen: (state: TaxState) => void;
|
|
32
|
+
}, "tax/store">;
|
|
33
|
+
export declare const clearError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, stopLoader: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>, resetOTPScreen: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
|
|
34
|
+
declare const _default: import("redux").Reducer<TaxState, import("redux").AnyAction>;
|
|
35
|
+
export default _default;
|
|
36
|
+
export declare const taxSelector: (state: RootState) => TaxState;
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
13
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
14
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
15
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
16
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
17
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
18
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
22
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
24
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
25
|
+
function step(op) {
|
|
26
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
27
|
+
while (_) try {
|
|
28
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
29
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
30
|
+
switch (op[0]) {
|
|
31
|
+
case 0: case 1: t = op; break;
|
|
32
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
33
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
34
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
35
|
+
default:
|
|
36
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
37
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
38
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
39
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
40
|
+
if (t[2]) _.ops.pop();
|
|
41
|
+
_.trys.pop(); continue;
|
|
42
|
+
}
|
|
43
|
+
op = body.call(thisArg, _);
|
|
44
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
45
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
var _a;
|
|
49
|
+
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
50
|
+
import API from '../../../api';
|
|
51
|
+
import { removeRequestHeaders } from '../../../utils';
|
|
52
|
+
import { handleNextScreenStep } from '../../../app/settings';
|
|
53
|
+
import { TAX_STEP_NAMES } from '../../../constants';
|
|
54
|
+
export var verifyLeadToken = createAsyncThunk('verifyLeadToken', function (token, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
55
|
+
var payload, data, leadResponse;
|
|
56
|
+
return __generator(this, function (_a) {
|
|
57
|
+
switch (_a.label) {
|
|
58
|
+
case 0:
|
|
59
|
+
payload = {
|
|
60
|
+
service_name: 'tap_email',
|
|
61
|
+
verify_token: token
|
|
62
|
+
};
|
|
63
|
+
return [4, API.leadService.verifyLeadToken(payload)];
|
|
64
|
+
case 1:
|
|
65
|
+
data = (_a.sent()).data;
|
|
66
|
+
leadResponse = undefined;
|
|
67
|
+
if (!(!(data === null || data === void 0 ? void 0 : data.errors) && !(data === null || data === void 0 ? void 0 : data.mw_error))) return [3, 3];
|
|
68
|
+
return [4, API.leadService.retrieveLead(data === null || data === void 0 ? void 0 : data.id)];
|
|
69
|
+
case 2:
|
|
70
|
+
leadResponse = _a.sent();
|
|
71
|
+
if (data.step_name === TAX_STEP_NAMES.IDENTITY_AUTH) {
|
|
72
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
73
|
+
}
|
|
74
|
+
_a.label = 3;
|
|
75
|
+
case 3: return [2, { data: data, leadData: leadResponse === null || leadResponse === void 0 ? void 0 : leadResponse.data, token: token }];
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
}); });
|
|
79
|
+
export var verifyTaxLeadOTP = createAsyncThunk('verifyTaxLeadOTP', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
80
|
+
var _a, tax, settings, responseBody, payload, data;
|
|
81
|
+
var _b, _c, _d;
|
|
82
|
+
return __generator(this, function (_e) {
|
|
83
|
+
switch (_e.label) {
|
|
84
|
+
case 0:
|
|
85
|
+
_a = thunkApi.getState(), tax = _a.tax, settings = _a.settings;
|
|
86
|
+
responseBody = tax.data.verify.responseBody;
|
|
87
|
+
payload = {
|
|
88
|
+
data: params.otp,
|
|
89
|
+
service_name: (_b = responseBody === null || responseBody === void 0 ? void 0 : responseBody.verification_by) === null || _b === void 0 ? void 0 : _b.service_name,
|
|
90
|
+
verify_token: responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token,
|
|
91
|
+
step_name: TAX_STEP_NAMES.PHONE_AUTH,
|
|
92
|
+
encryption_contract: ['data']
|
|
93
|
+
};
|
|
94
|
+
return [4, API.leadService.verifyLeadOTP(payload)];
|
|
95
|
+
case 1:
|
|
96
|
+
data = (_e.sent()).data;
|
|
97
|
+
if (!data.errors) {
|
|
98
|
+
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, { otp: params.otp });
|
|
99
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
100
|
+
}
|
|
101
|
+
return [2, { data: data, formData: __assign({}, params) }];
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}); });
|
|
105
|
+
export var updateLeadSuccess = createAsyncThunk('updateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
106
|
+
var _a, settings, tax, payload, data;
|
|
107
|
+
var _b, _c, _d, _e, _f;
|
|
108
|
+
return __generator(this, function (_g) {
|
|
109
|
+
switch (_g.label) {
|
|
110
|
+
case 0:
|
|
111
|
+
_a = thunkApi.getState(), settings = _a.settings, tax = _a.tax;
|
|
112
|
+
payload = {
|
|
113
|
+
step_name: TAX_STEP_NAMES.TAX_SUCCESS,
|
|
114
|
+
id: ((_b = tax.data.otpData.responseBody) === null || _b === void 0 ? void 0 : _b.id) || '',
|
|
115
|
+
encryption_contract: []
|
|
116
|
+
};
|
|
117
|
+
return [4, API.leadService.updateLead(payload)];
|
|
118
|
+
case 1:
|
|
119
|
+
data = (_g.sent()).data;
|
|
120
|
+
(_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, params);
|
|
121
|
+
(_f = (_e = settings.data.appConfig).onFlowCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, { data: data });
|
|
122
|
+
return [2, { response: data, formData: params }];
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
}); });
|
|
126
|
+
var initialState = {
|
|
127
|
+
error: null,
|
|
128
|
+
loading: false,
|
|
129
|
+
data: {
|
|
130
|
+
verify: {
|
|
131
|
+
token: ''
|
|
132
|
+
},
|
|
133
|
+
otpData: {
|
|
134
|
+
otp: ''
|
|
135
|
+
},
|
|
136
|
+
taxData: {
|
|
137
|
+
vatId: ''
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
};
|
|
141
|
+
export var taxSlice = createSlice({
|
|
142
|
+
name: 'tax/store',
|
|
143
|
+
initialState: initialState,
|
|
144
|
+
reducers: {
|
|
145
|
+
clearError: function (state) {
|
|
146
|
+
state.error = null;
|
|
147
|
+
},
|
|
148
|
+
stopLoader: function (state) {
|
|
149
|
+
state.loading = false;
|
|
150
|
+
},
|
|
151
|
+
resetOTPScreen: function (state) {
|
|
152
|
+
state.data.otpData.otp = '';
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
extraReducers: function (builder) {
|
|
156
|
+
builder
|
|
157
|
+
.addCase(verifyLeadToken.fulfilled, function (state, action) {
|
|
158
|
+
var _a;
|
|
159
|
+
state.error = null;
|
|
160
|
+
var _b = action.payload, data = _b.data, token = _b.token, leadData = _b.leadData;
|
|
161
|
+
var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
162
|
+
if (description) {
|
|
163
|
+
state.error = description;
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
state.data.verify.responseBody = __assign(__assign({}, data), leadData);
|
|
167
|
+
state.data.verify.token = token;
|
|
168
|
+
})
|
|
169
|
+
.addCase(verifyLeadToken.rejected, function (state, action) {
|
|
170
|
+
state.error = action.error.message;
|
|
171
|
+
})
|
|
172
|
+
.addCase(verifyTaxLeadOTP.pending, function (state) {
|
|
173
|
+
state.loading = true;
|
|
174
|
+
state.error = null;
|
|
175
|
+
})
|
|
176
|
+
.addCase(verifyTaxLeadOTP.fulfilled, function (state, action) {
|
|
177
|
+
var _a;
|
|
178
|
+
state.loading = false;
|
|
179
|
+
state.error = null;
|
|
180
|
+
var _b = action.payload, data = _b.data, formData = _b.formData;
|
|
181
|
+
var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
182
|
+
if (description) {
|
|
183
|
+
state.error = description;
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
state.data.otpData = formData;
|
|
187
|
+
state.data.otpData.responseBody = data;
|
|
188
|
+
})
|
|
189
|
+
.addCase(verifyTaxLeadOTP.rejected, function (state, action) {
|
|
190
|
+
state.loading = false;
|
|
191
|
+
state.error = action.error.message;
|
|
192
|
+
})
|
|
193
|
+
.addCase(updateLeadSuccess.fulfilled, function (state, action) {
|
|
194
|
+
var _a;
|
|
195
|
+
state.loading = false;
|
|
196
|
+
state.error = null;
|
|
197
|
+
var response = action.payload.response;
|
|
198
|
+
var description = (((_a = response === null || response === void 0 ? void 0 : response.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
199
|
+
if (description) {
|
|
200
|
+
state.error = description;
|
|
201
|
+
return;
|
|
202
|
+
}
|
|
203
|
+
removeRequestHeaders();
|
|
204
|
+
})
|
|
205
|
+
.addCase(updateLeadSuccess.pending, function (state) {
|
|
206
|
+
state.loading = true;
|
|
207
|
+
state.error = null;
|
|
208
|
+
})
|
|
209
|
+
.addCase(updateLeadSuccess.rejected, function (state, action) {
|
|
210
|
+
state.loading = false;
|
|
211
|
+
state.error = action.error.message;
|
|
212
|
+
});
|
|
213
|
+
}
|
|
214
|
+
});
|
|
215
|
+
export var clearError = (_a = taxSlice.actions, _a.clearError), stopLoader = _a.stopLoader, resetOTPScreen = _a.resetOTPScreen;
|
|
216
|
+
export default taxSlice.reducer;
|
|
217
|
+
export var taxSelector = function (state) { return state.tax; };
|
|
@@ -22,7 +22,7 @@ import { FeatureContainer } from '../shared/Containers';
|
|
|
22
22
|
import { BANK_SCREENS_NAVIGATION } from '../../constants';
|
|
23
23
|
import { bankFeatureScreens } from '../featuresScreens';
|
|
24
24
|
import CustomFooter from '../shared/Footer';
|
|
25
|
-
import { verifyLeadToken } from '
|
|
25
|
+
import { verifyLeadToken } from '../app/bank/bankStore';
|
|
26
26
|
var Bank = memo(function (props) {
|
|
27
27
|
var open = React.useState(true)[0];
|
|
28
28
|
var theme = useAppTheme().theme;
|
|
@@ -24,7 +24,7 @@ import { maskPhone } from '../../../../utils';
|
|
|
24
24
|
import Form from '../../../../components/Form';
|
|
25
25
|
import Text from '../../../../components/Text';
|
|
26
26
|
import { ScreenContainer } from '../../../shared/Containers';
|
|
27
|
-
import { bankSelector, clearError, resetOTPScreen,
|
|
27
|
+
import { bankSelector, clearError, resetOTPScreen, verifyBankLeadOTP } from '../../../app/bank/bankStore';
|
|
28
28
|
import Button from '../../../shared/Button';
|
|
29
29
|
import { OTPValidation } from './validation';
|
|
30
30
|
import OTPInput from './OTPInput';
|
|
@@ -66,7 +66,7 @@ var VerifyNumber = function (_a) {
|
|
|
66
66
|
};
|
|
67
67
|
}, [methods.formState.isValid]);
|
|
68
68
|
var onSubmit = function (formData) {
|
|
69
|
-
dispatch(
|
|
69
|
+
dispatch(verifyBankLeadOTP(formData));
|
|
70
70
|
};
|
|
71
71
|
var onBack = function () {
|
|
72
72
|
dispatch(handlePrevScreenStep());
|
|
@@ -32,14 +32,12 @@ var FormStyled = styled(Form)(function () { return ({
|
|
|
32
32
|
flexDirection: 'column'
|
|
33
33
|
}); });
|
|
34
34
|
var Activities = function () {
|
|
35
|
-
var _a;
|
|
36
|
-
var _b = React.useState(false),
|
|
37
|
-
var _c = React.useState(false), collapse = _c[0], setCollapse = _c[1];
|
|
35
|
+
var _a = React.useState(false), anchorEl = _a[0], setAnchorEl = _a[1];
|
|
36
|
+
var _b = React.useState(false), collapse = _b[0], setCollapse = _b[1];
|
|
38
37
|
var dispatch = useAppDispatch();
|
|
39
38
|
var isAr = useLanguage().isAr;
|
|
40
39
|
var t = useTranslation().t;
|
|
41
|
-
var
|
|
42
|
-
var businessTypeResponse = data.businessTypeData.responseBody;
|
|
40
|
+
var _c = useSelector(businessSelector), data = _c.data, loading = _c.loading, error = _c.error;
|
|
43
41
|
var activitiesData = data.activitiesData;
|
|
44
42
|
var methods = useForm({
|
|
45
43
|
resolver: yupResolver(ActivitiesValidationSchema),
|
|
@@ -50,7 +48,6 @@ var Activities = function () {
|
|
|
50
48
|
dispatch(updateActivitiesInfo(__assign({}, data)));
|
|
51
49
|
};
|
|
52
50
|
var handleCollapseOpenClose = function (flag) {
|
|
53
|
-
console.log('flag', flag);
|
|
54
51
|
setCollapse(flag);
|
|
55
52
|
};
|
|
56
53
|
var onBack = function () {
|
|
@@ -60,6 +57,10 @@ var Activities = function () {
|
|
|
60
57
|
var salesChannels = activitiesData.salesChannels;
|
|
61
58
|
methods.setValue('salesChannels', salesChannels);
|
|
62
59
|
}, [activitiesData.salesChannels]);
|
|
60
|
+
React.useEffect(function () {
|
|
61
|
+
var activities = activitiesData.activities;
|
|
62
|
+
methods.setValue('activities', activities);
|
|
63
|
+
}, [activitiesData === null || activitiesData === void 0 ? void 0 : activitiesData.activities]);
|
|
63
64
|
React.useEffect(function () {
|
|
64
65
|
if (error)
|
|
65
66
|
dispatch(clearError());
|
|
@@ -67,8 +68,7 @@ var Activities = function () {
|
|
|
67
68
|
var handleMenuClick = function () {
|
|
68
69
|
anchorEl ? setAnchorEl(false) : setAnchorEl(true);
|
|
69
70
|
};
|
|
70
|
-
var activities_list = ((_a = businessTypeResponse === null || businessTypeResponse === void 0 ? void 0 : businessTypeResponse.activities) === null || _a === void 0 ? void 0 : _a.length) > 0;
|
|
71
71
|
var disabled = !methods.formState.isValid || !!error;
|
|
72
|
-
return (_jsx(ScreenContainer, { children: _jsx(FormProvider, __assign({}, methods, { children: _jsxs(FormStyled, __assign({ onSubmit: methods.handleSubmit(onSubmit) }, { children: [_jsxs(Collapse, __assign({ in: !collapse }, { children: [
|
|
72
|
+
return (_jsx(ScreenContainer, { children: _jsx(FormProvider, __assign({}, methods, { children: _jsxs(FormStyled, __assign({ onSubmit: methods.handleSubmit(onSubmit) }, { children: [_jsxs(Collapse, __assign({ in: !collapse }, { children: [_jsx(ActivitiesList, { onListOpen: function () { return handleMenuClick(); }, onListClose: function () { return handleMenuClick(); } }), _jsx(Collapse, __assign({ in: !anchorEl }, { children: _jsx(SalesChannels, {}) }))] })), _jsx(Collapse, __assign({ in: !anchorEl }, { children: _jsx(OperationStartDate, { onDateClicked: handleCollapseOpenClose }) })), _jsx(Collapse, __assign({ in: !collapse && !anchorEl }, { children: _jsx(Button, __assign({ onBackClicked: function () { return onBack(); }, isAr: isAr, disabled: disabled, loading: loading, error: t(error || '') }, { children: t('next') })) }))] })) })) }));
|
|
73
73
|
};
|
|
74
74
|
export default Activities;
|
|
@@ -106,9 +106,9 @@ var ActivitiesList = function (_a) {
|
|
|
106
106
|
(_a = rest.onListClose) === null || _a === void 0 ? void 0 : _a.call(rest);
|
|
107
107
|
};
|
|
108
108
|
var onSelectItem = function (item) {
|
|
109
|
-
var isActivityExists = controlValue === null || controlValue === void 0 ? void 0 : controlValue.find(function (activity) { return activity.
|
|
109
|
+
var isActivityExists = controlValue === null || controlValue === void 0 ? void 0 : controlValue.find(function (activity) { return activity.en === (item === null || item === void 0 ? void 0 : item.en); });
|
|
110
110
|
if (isActivityExists) {
|
|
111
|
-
var updatedIdList = controlValue === null || controlValue === void 0 ? void 0 : controlValue.filter(function (activity) { return activity.
|
|
111
|
+
var updatedIdList = controlValue === null || controlValue === void 0 ? void 0 : controlValue.filter(function (activity) { return activity.en !== (item === null || item === void 0 ? void 0 : item.en); });
|
|
112
112
|
if (updatedIdList.length >= 1)
|
|
113
113
|
activitiesControl.field.onChange(updatedIdList);
|
|
114
114
|
return;
|
|
@@ -120,13 +120,13 @@ var ActivitiesList = function (_a) {
|
|
|
120
120
|
if ((controlValue === null || controlValue === void 0 ? void 0 : controlValue.length) > 1) {
|
|
121
121
|
return (controlValue === null || controlValue === void 0 ? void 0 : controlValue.length) + ' ' + t('activities_selected');
|
|
122
122
|
}
|
|
123
|
-
return isAr ? (_a = controlValue[0]) === null || _a === void 0 ? void 0 : _a.
|
|
123
|
+
return isAr ? (_a = controlValue[0]) === null || _a === void 0 ? void 0 : _a.ar : (_b = controlValue[0]) === null || _b === void 0 ? void 0 : _b.en;
|
|
124
124
|
};
|
|
125
125
|
var getSelectedActivityFlag = function (item) {
|
|
126
|
-
return controlValue === null || controlValue === void 0 ? void 0 : controlValue.find(function (activity) { return activity.
|
|
126
|
+
return controlValue === null || controlValue === void 0 ? void 0 : controlValue.find(function (activity) { return activity.en === (item === null || item === void 0 ? void 0 : item.en); });
|
|
127
127
|
};
|
|
128
|
-
return (_jsxs(ScreenContainer, { children: [_jsxs(InputLabelStyled, { children: [t(isCR ? 'activities' : 'category'), " ", _jsx(MandatoryStyled, { children: "*" })] }), _jsxs(Box, { children: [_jsx(InputStyled, { readOnly: true, value: getSelectedActivities(), placeholder: isCR ? t('choose_activities') : t('category_name'), onClick: !!anchorEl ? function () { return onCloseList(); } : onOpenList, endAdornment: _jsx(ExpandIcon, { anchorEl: !!anchorEl }) }), _jsx(Collapse, __assign({ in: !!anchorEl, timeout: 300 }, { children: _jsx(SimpleListStyled, { searchKeyPath: 'name', list: activitiesMenuList, onSelectItem: onSelectItem, renderItem: function (item) {
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
return (_jsx(Collapse, __assign({ in: (activitiesMenuList === null || activitiesMenuList === void 0 ? void 0 : activitiesMenuList.length) > 0 }, { children: _jsxs(ScreenContainer, { children: [_jsxs(InputLabelStyled, { children: [t(isCR ? 'activities' : 'category'), " ", _jsx(MandatoryStyled, { children: "*" })] }), _jsxs(Box, { children: [_jsx(InputStyled, { readOnly: true, value: getSelectedActivities(), placeholder: isCR ? t('choose_activities') : t('category_name'), onClick: !!anchorEl ? function () { return onCloseList(); } : onOpenList, endAdornment: _jsx(ExpandIcon, { anchorEl: !!anchorEl }) }), _jsx(Collapse, __assign({ in: !!anchorEl, timeout: 300 }, { children: _jsx(SimpleListStyled, { searchKeyPath: 'name', list: activitiesMenuList, onSelectItem: onSelectItem, renderItem: function (item) {
|
|
129
|
+
return (_jsxs(_Fragment, { children: [_jsx(Box, __assign({ display: 'flex' }, { children: _jsx(NameContainer, __assign({ isSelected: (item === null || item === void 0 ? void 0 : item.en) === getSelectedActivityFlag(item) }, { children: isAr ? item === null || item === void 0 ? void 0 : item.ar : item === null || item === void 0 ? void 0 : item.en })) })), getSelectedActivityFlag(item) && _jsx(CheckIconStyled, {})] }));
|
|
130
|
+
} }) }))] })] }) })));
|
|
131
131
|
};
|
|
132
132
|
export default ActivitiesList;
|
|
@@ -84,7 +84,7 @@ var SalesChannels = function () {
|
|
|
84
84
|
var channelsChecked = channelsControl.field.value;
|
|
85
85
|
var warningMessage = (_a = channelsControl.fieldState.error) === null || _a === void 0 ? void 0 : _a.message;
|
|
86
86
|
var data = useSelector(businessSelector).data;
|
|
87
|
-
var response = data.
|
|
87
|
+
var response = data.businessTypeData.responseBody;
|
|
88
88
|
React.useEffect(function () {
|
|
89
89
|
var _a;
|
|
90
90
|
if (((_a = response === null || response === void 0 ? void 0 : response.channelList) === null || _a === void 0 ? void 0 : _a.length) > 0) {
|
|
@@ -27,14 +27,14 @@ var Connect = memo(function (props) {
|
|
|
27
27
|
var open = React.useState(true)[0];
|
|
28
28
|
var theme = useAppTheme().theme;
|
|
29
29
|
var dispatch = useAppDispatch();
|
|
30
|
-
var
|
|
30
|
+
var _a = useAppSelector(settingsSelector), data = _a.data, loading = _a.loading;
|
|
31
31
|
useAppConfig(__assign({ navigation: CONNECT_SCREENS_NAVIGATION }, props));
|
|
32
32
|
useErrorListener();
|
|
33
33
|
var activeScreen = data.activeScreen;
|
|
34
34
|
useEffect(function () {
|
|
35
35
|
dispatch(getCountries());
|
|
36
36
|
}, []);
|
|
37
|
-
return (_jsx(ThemeProvider, __assign({ theme: theme }, { children: _jsx(AnimationFlow, __assign({ open: open, breakpoint: 'sm', footer: _jsx(CustomFooter, {}) }, { children: _jsx(FeatureContainer, { children: connectFeatureScreens.map(function (_a, index) {
|
|
37
|
+
return (_jsx(ThemeProvider, __assign({ theme: theme }, { children: _jsx(AnimationFlow, __assign({ loading: false, open: open, breakpoint: 'sm', footer: _jsx(CustomFooter, {}) }, { children: _jsx(FeatureContainer, { children: connectFeatureScreens.map(function (_a, index) {
|
|
38
38
|
var Element = _a.element, name = _a.name;
|
|
39
39
|
var isActive = activeScreen.name === name;
|
|
40
40
|
return (_jsx(Collapse, __assign({ in: isActive, timeout: { enter: 1000, exit: 800 } }, { children: _jsx(Element, {}) }), index));
|
|
@@ -51,7 +51,7 @@ var BrandList = function (_a) {
|
|
|
51
51
|
var _b = React.useState(null), anchorEl = _b[0], setAnchorEl = _b[1];
|
|
52
52
|
var t = useTranslation().t;
|
|
53
53
|
var isAr = useLanguage().isAr;
|
|
54
|
-
var _c = useFormContext(), setValue = _c.setValue, control = _c.control
|
|
54
|
+
var _c = useFormContext(), setValue = _c.setValue, control = _c.control;
|
|
55
55
|
var linksControl = useController({ control: control, name: 'links' });
|
|
56
56
|
var selectedBrandControl = useController({ control: control, name: 'selectedBrandItem' });
|
|
57
57
|
var links = linksControl.field.value;
|