@akinon/pz-masterpass 1.99.0 → 1.100.0-rc.71
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/CHANGELOG.md +19 -0
- package/README.md +462 -2
- package/package.json +1 -1
- package/src/hooks/use-delete-card.tsx +16 -5
- package/src/views/card-list/index.tsx +124 -79
- package/src/views/card-registration/index.tsx +67 -6
- package/src/views/delete-confirmation-modal/index.tsx +25 -1
- package/src/views/link-modal/index.tsx +23 -1
- package/src/views/otp-modal/index.tsx +38 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @akinon/pz-masterpass
|
|
2
2
|
|
|
3
|
+
## 1.100.0-rc.71
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
8
|
+
- ad0bec92: ZERO-3364 :Update readme file for masterpass
|
|
9
|
+
- 16aff543: ZERO-3431: Add test script for redirect utility in package.json
|
|
10
|
+
- 64699d3ff: ZERO-2761: Fix invalid import for plugin module
|
|
11
|
+
- e974d8e8: ZERO-3406: Fix rc build
|
|
12
|
+
- b31333ed: ZERO-3357 :Add components with renderer properties for customizable UI elements in pz-masterpass
|
|
13
|
+
- 7eb51ca9: ZERO-3424 :Update package versions
|
|
14
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
15
|
+
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
16
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
17
|
+
- 08c3cae: ZERO-3607 :Enhance the DeleteButton component with additional features and improve the OTP modal functionality by adding minutes and seconds
|
|
18
|
+
- e9af4e2: ZERO-3607 :Enhance the DeleteButton component with additional features and improve the OTP modal functionality by adding minutes and seconds
|
|
19
|
+
|
|
3
20
|
## 1.99.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -22,6 +39,8 @@
|
|
|
22
39
|
|
|
23
40
|
## 1.91.0
|
|
24
41
|
|
|
42
|
+
> > > > > > > origin/ZERO-3418
|
|
43
|
+
|
|
25
44
|
## 1.90.0
|
|
26
45
|
|
|
27
46
|
## 1.89.0
|
package/README.md
CHANGED
|
@@ -12,10 +12,14 @@ npx @akinon/projectzero@latest --plugins
|
|
|
12
12
|
|
|
13
13
|
## Available Props
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
## Masterpass Provider
|
|
16
16
|
|
|
17
17
|
##### File Path: src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx
|
|
18
18
|
|
|
19
|
+
### Usage Examples
|
|
20
|
+
|
|
21
|
+
##### Default Usage
|
|
22
|
+
|
|
19
23
|
```javascript
|
|
20
24
|
<PluginModule
|
|
21
25
|
component={Component.MasterpassProvider}
|
|
@@ -29,7 +33,7 @@ npx @akinon/projectzero@latest --plugins
|
|
|
29
33
|
</PluginModule>
|
|
30
34
|
```
|
|
31
35
|
|
|
32
|
-
|
|
36
|
+
##### Customized Usage with Additional Params
|
|
33
37
|
|
|
34
38
|
##### To add extra parameters, it can be added by passing additional Params property to the Masterpass Provider.
|
|
35
39
|
|
|
@@ -51,8 +55,30 @@ npx @akinon/projectzero@latest --plugins
|
|
|
51
55
|
|
|
52
56
|
### Delete Confirmation Modal
|
|
53
57
|
|
|
58
|
+
#### Props
|
|
59
|
+
|
|
60
|
+
| Props | Type | Required | Description |
|
|
61
|
+
| --- | --- | --- | --- |
|
|
62
|
+
| translations | typeof defaultTranslations | Optional | Used to customize the default texts. |
|
|
63
|
+
| renderer | RendererProps | Optional | Renderer functions that can be used to customize all subcomponents. |
|
|
64
|
+
|
|
65
|
+
#### RendererProps
|
|
66
|
+
|
|
67
|
+
| Props | Type | Description |
|
|
68
|
+
| --- | --- | --- |
|
|
69
|
+
| open | boolean | It is information whether the modal is open or not. |
|
|
70
|
+
| setOpen | (open: boolean) => void | Used to manage modal on/off operation. |
|
|
71
|
+
| onConfirm | () => void | This is the function that will perform the deletion operation. |
|
|
72
|
+
| onCancel | () => void | This is the function that will be run if the user cancels the deletion process. |
|
|
73
|
+
| loading | boolean | Indicates the loading status during the deletion process. |
|
|
74
|
+
| error | string / null | Error message to be displayed if an error occurs during deletion. |
|
|
75
|
+
|
|
54
76
|
##### File Path: src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx
|
|
55
77
|
|
|
78
|
+
### Usage Examples
|
|
79
|
+
|
|
80
|
+
##### Default Usage
|
|
81
|
+
|
|
56
82
|
```javascript
|
|
57
83
|
<PluginModule
|
|
58
84
|
component={Component.MasterpassDeleteConfirmationModal}
|
|
@@ -66,10 +92,70 @@ npx @akinon/projectzero@latest --plugins
|
|
|
66
92
|
/>
|
|
67
93
|
```
|
|
68
94
|
|
|
95
|
+
##### Customized Usage with Renderer
|
|
96
|
+
|
|
97
|
+
```javascript
|
|
98
|
+
<PluginModule
|
|
99
|
+
component={Component.MasterpassDeleteConfirmationModal}
|
|
100
|
+
props={{
|
|
101
|
+
renderer: {
|
|
102
|
+
Content: ({ open, setOpen, onConfirm, onCancel, loading, error }) => (
|
|
103
|
+
<Modal
|
|
104
|
+
open={open}
|
|
105
|
+
setOpen={setOpen}
|
|
106
|
+
className="w-full sm:w-[28rem]"
|
|
107
|
+
portalId="masterpass-remove-card-modal"
|
|
108
|
+
>
|
|
109
|
+
<div className="flex flex-col items-center p-5">
|
|
110
|
+
<div className="text-xs mb-3">
|
|
111
|
+
Are you sure you want to delete your card?
|
|
112
|
+
</div>
|
|
113
|
+
<Button onClick={onConfirm} className="bg-red-600 text-black">
|
|
114
|
+
{loading ? 'Deletion...' : 'Delete'}
|
|
115
|
+
</Button>
|
|
116
|
+
<Button appearance="outlined" onClick={onCancel}>
|
|
117
|
+
Cancel
|
|
118
|
+
</Button>
|
|
119
|
+
{error && (
|
|
120
|
+
<p className="text-red-500 text-sm mt-2 text-center">
|
|
121
|
+
🚨 {error}
|
|
122
|
+
</p>
|
|
123
|
+
)}
|
|
124
|
+
</div>
|
|
125
|
+
</Modal>
|
|
126
|
+
)
|
|
127
|
+
}
|
|
128
|
+
}}
|
|
129
|
+
/>
|
|
130
|
+
```
|
|
131
|
+
|
|
69
132
|
### OTP Modal
|
|
70
133
|
|
|
134
|
+
#### Props
|
|
135
|
+
|
|
136
|
+
| Props | Type | Required | Description |
|
|
137
|
+
| --- | --- | --- | --- |
|
|
138
|
+
| translations | { [key: string]: string } | Optional | Translation object to customize all texts. Overrides default texts. |
|
|
139
|
+
| renderer | RendererProps | Optional | Renderer functions that can be used to customize all subcomponents. |
|
|
140
|
+
|
|
141
|
+
#### RendererProps
|
|
142
|
+
|
|
143
|
+
| Props | Type | Description |
|
|
144
|
+
| --- | --- | --- |
|
|
145
|
+
| open | boolean | It is information whether the modal is open or not. |
|
|
146
|
+
| setOpen | (open: boolean) => void | Used to manage modal on/off operation. |
|
|
147
|
+
| onSubmit | (data: { otp_code: string }) => void | Sends the OTP code entered by the user. |
|
|
148
|
+
| loading | boolean | Indicates the loading status during validation. |
|
|
149
|
+
| error | string / null | Error message to be displayed if there is an error. |
|
|
150
|
+
| resendSms | () => void | Function triggered when the user requests SMS again. |
|
|
151
|
+
| resendSmsFetching | boolean | Indicates the loading status during the resending process. |
|
|
152
|
+
| targetDate | number | When the countdown will end (as a timestamp). |
|
|
153
|
+
| otpRef | string / null | Transaction reference number, if applicable. |
|
|
154
|
+
|
|
71
155
|
##### File Path: src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx
|
|
72
156
|
|
|
157
|
+
##### Default Usage
|
|
158
|
+
|
|
73
159
|
```javascript
|
|
74
160
|
<PluginModule
|
|
75
161
|
component={Component.MasterpassOtpModal}
|
|
@@ -86,10 +172,123 @@ npx @akinon/projectzero@latest --plugins
|
|
|
86
172
|
/>
|
|
87
173
|
```
|
|
88
174
|
|
|
175
|
+
##### Customized Usage with Renderer
|
|
176
|
+
|
|
177
|
+
```javascript
|
|
178
|
+
<PluginModule
|
|
179
|
+
component={Component.MasterpassOtpModal}
|
|
180
|
+
props={{
|
|
181
|
+
renderer: {
|
|
182
|
+
Content: ({
|
|
183
|
+
open,
|
|
184
|
+
setOpen,
|
|
185
|
+
onSubmit,
|
|
186
|
+
loading,
|
|
187
|
+
error,
|
|
188
|
+
resendSms,
|
|
189
|
+
resendSmsFetching,
|
|
190
|
+
targetDate,
|
|
191
|
+
otpRef,
|
|
192
|
+
minutes,
|
|
193
|
+
seconds,
|
|
194
|
+
control,
|
|
195
|
+
formError
|
|
196
|
+
}) => {
|
|
197
|
+
const [code, setCode] = useState('');
|
|
198
|
+
return (
|
|
199
|
+
<Modal
|
|
200
|
+
portalId="otp-masterpass"
|
|
201
|
+
open={open}
|
|
202
|
+
setOpen={setOpen}
|
|
203
|
+
className="w-[330px] bottom-auto top-1/4 mx-auto px-0 pb-0 md:pb-0 md:rounded-none md:pt-0 md:px-0 md:bottom-auto"
|
|
204
|
+
iconSize={20}
|
|
205
|
+
>
|
|
206
|
+
<div className="py-4 px-14 pt-12 pb-9 flex flex-col justify-center items-center">
|
|
207
|
+
<div className="text-lg leading-5 font-semibold text-secondary text-center pb-7">
|
|
208
|
+
Telefon doğrulama kodunu gir
|
|
209
|
+
</div>
|
|
210
|
+
<form
|
|
211
|
+
onSubmit={(e) => {
|
|
212
|
+
e.preventDefault();
|
|
213
|
+
onSubmit({ otp_code: code });
|
|
214
|
+
}}
|
|
215
|
+
>
|
|
216
|
+
<div className="mt-2 flex flex-col items-center justify-between">
|
|
217
|
+
<div>
|
|
218
|
+
<label className="text-xs leading-[14px] font-normal text-secondary">
|
|
219
|
+
SMS kodu
|
|
220
|
+
</label>
|
|
221
|
+
<Input
|
|
222
|
+
id="otp_code"
|
|
223
|
+
autoComplete="off"
|
|
224
|
+
minLength={6}
|
|
225
|
+
maxLength={6}
|
|
226
|
+
max="999999"
|
|
227
|
+
min="000000"
|
|
228
|
+
control={control}
|
|
229
|
+
className="h-9 rounded-full border-gray-620 mt-2"
|
|
230
|
+
onChange={(e) =>
|
|
231
|
+
setCode((e.target as HTMLInputElement).value)
|
|
232
|
+
}
|
|
233
|
+
/>
|
|
234
|
+
</div>
|
|
235
|
+
<Button className="w-full capitalize bg-secondary rounded-full text-base h-auto py-1.5 mt-2 border-none">
|
|
236
|
+
Doğrula
|
|
237
|
+
</Button>
|
|
238
|
+
{formError && (
|
|
239
|
+
<p className="mt-2 text-error text-xs text-center">
|
|
240
|
+
{formError}
|
|
241
|
+
</p>
|
|
242
|
+
)}
|
|
243
|
+
</div>
|
|
244
|
+
</form>
|
|
245
|
+
{minutes + seconds > 0 ? (
|
|
246
|
+
<div className="flex mt-2 flex justify-center">
|
|
247
|
+
{`0${minutes}`} :{' '}
|
|
248
|
+
{`${seconds < 10 ? '0' : ''}${seconds}`}
|
|
249
|
+
</div>
|
|
250
|
+
) : (
|
|
251
|
+
<Button
|
|
252
|
+
onClick={() => resendSms()}
|
|
253
|
+
className="w-full capitalize bg-secondary rounded-full text-base h-auto py-1.5 mt-2 border-none text-white"
|
|
254
|
+
>
|
|
255
|
+
{!resendSmsFetching ? 'resend code' : <LoaderSpinner />}
|
|
256
|
+
</Button>
|
|
257
|
+
)}
|
|
258
|
+
</div>
|
|
259
|
+
</Modal>
|
|
260
|
+
);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}}
|
|
264
|
+
/>
|
|
265
|
+
```
|
|
266
|
+
|
|
89
267
|
### Link Modal
|
|
90
268
|
|
|
269
|
+
#### Props
|
|
270
|
+
|
|
271
|
+
| Props | Type | Required | Description |
|
|
272
|
+
| --- | --- | --- | --- |
|
|
273
|
+
| translations | { [key: string]: string } | Optional | Translation object to customize all texts. Overrides default texts. |
|
|
274
|
+
| renderer | RendererProps | Optional | Renderer functions that can be used to customize all subcomponents. |
|
|
275
|
+
|
|
276
|
+
#### RendererProps
|
|
277
|
+
|
|
278
|
+
| Props | Type | Description |
|
|
279
|
+
| --- | --- | --- |
|
|
280
|
+
| open | boolean | It is information whether the modal is open or not. |
|
|
281
|
+
| setOpen | (open: boolean) => void | Used to manage modal on/off operation. |
|
|
282
|
+
| onClick | () => void | It is the function that is called when the user clicks the "Use" button. |
|
|
283
|
+
| loading | boolean | This is the loading status that will be displayed during the API request. |
|
|
284
|
+
| error | string | If there is an error in the API response, a message is displayed in this field. |
|
|
285
|
+
|
|
91
286
|
##### File Path: src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx
|
|
92
287
|
|
|
288
|
+
### Usage Examples
|
|
289
|
+
|
|
290
|
+
##### Default Usage
|
|
291
|
+
|
|
93
292
|
```javascript
|
|
94
293
|
<PluginModule
|
|
95
294
|
component={Component.MasterpassLinkModal}
|
|
@@ -103,10 +302,67 @@ npx @akinon/projectzero@latest --plugins
|
|
|
103
302
|
/>
|
|
104
303
|
```
|
|
105
304
|
|
|
305
|
+
##### Customized Usage with Renderer
|
|
306
|
+
|
|
307
|
+
```javascript
|
|
308
|
+
<PluginModule
|
|
309
|
+
component={Component.MasterpassLinkModal}
|
|
310
|
+
props={{
|
|
311
|
+
renderer: {
|
|
312
|
+
Content: ({ open, setOpen, onClick, loading, error }) => (
|
|
313
|
+
<Modal
|
|
314
|
+
open={open}
|
|
315
|
+
setOpen={setOpen}
|
|
316
|
+
className="w-full sm:w-[28rem]"
|
|
317
|
+
portalId="masterpass-check-user"
|
|
318
|
+
>
|
|
319
|
+
<div className="p-10">
|
|
320
|
+
<p className="text-sm text-center">
|
|
321
|
+
You have cards registered to your Masterpass account. Do you want
|
|
322
|
+
to use your cards?
|
|
323
|
+
</p>
|
|
324
|
+
<Button
|
|
325
|
+
onClick={onClick}
|
|
326
|
+
disabled={loading}
|
|
327
|
+
className="bg-green-600 text-error w-full py-2 mt-4"
|
|
328
|
+
>
|
|
329
|
+
{loading ? 'Loading...' : 'Use'}
|
|
330
|
+
</Button>
|
|
331
|
+
{error && <p className="text-error text-sm">{error}</p>}
|
|
332
|
+
</div>
|
|
333
|
+
</Modal>
|
|
334
|
+
)
|
|
335
|
+
}
|
|
336
|
+
}}
|
|
337
|
+
/>
|
|
338
|
+
```
|
|
339
|
+
|
|
106
340
|
### Card List
|
|
107
341
|
|
|
342
|
+
#### Props
|
|
343
|
+
|
|
344
|
+
| Props | Type | Required | Description |
|
|
345
|
+
| --- | --- | --- | --- |
|
|
346
|
+
| className | string | Optional | Gives an additional style class to the component's outer container. |
|
|
347
|
+
| translations | { [key: string]: string } | Optional | Translation object to customize all texts. Overrides default texts. |
|
|
348
|
+
| renderer | RendererProps | Optional | Renderer functions that can be used to customize all subcomponents. |
|
|
349
|
+
|
|
350
|
+
#### RendererProps
|
|
351
|
+
|
|
352
|
+
| Props | Type | Description |
|
|
353
|
+
| --- | --- | --- |
|
|
354
|
+
| Header | JSX.Element | Used to customize the title area at the top of the card list. |
|
|
355
|
+
| CardItem | (params: { card, selectedCard, onSelect, DeleteButton }) => JSX.Element | It allows you to fully customize the card element. |
|
|
356
|
+
| Loader | () => JSX.Element | Used to define a custom loader component to be displayed when loading cards. |
|
|
357
|
+
| ErrorFallback | (params: { error: string; onRetry: () => void }) => JSX.Element | Custom widget to be shown if an error occurs while loading cards. |
|
|
358
|
+
| SwitchPaymentButton | (props: { onClick: () => void; label: string }) => JSX.Element | Used to customize the "Pay with a new card" option. |
|
|
359
|
+
|
|
108
360
|
##### File Path: src/views/checkout/steps/payment/options/credit-card/index.tsx
|
|
109
361
|
|
|
362
|
+
### Usage Examples
|
|
363
|
+
|
|
364
|
+
##### Default Usage
|
|
365
|
+
|
|
110
366
|
```javascript
|
|
111
367
|
<PluginModule
|
|
112
368
|
component={Component.MasterpassCardList}
|
|
@@ -121,10 +377,131 @@ npx @akinon/projectzero@latest --plugins
|
|
|
121
377
|
/>
|
|
122
378
|
```
|
|
123
379
|
|
|
380
|
+
##### Customized Usage with Renderer
|
|
381
|
+
|
|
382
|
+
```javascript
|
|
383
|
+
<PluginModule
|
|
384
|
+
component={Component.MasterpassCardList}
|
|
385
|
+
props={{
|
|
386
|
+
className: 'px-10',
|
|
387
|
+
form: {
|
|
388
|
+
control,
|
|
389
|
+
register,
|
|
390
|
+
errors,
|
|
391
|
+
setFormValue,
|
|
392
|
+
clearErrors
|
|
393
|
+
},
|
|
394
|
+
renderer: {
|
|
395
|
+
Header: () => (
|
|
396
|
+
<div className="flex items-center gap-2 mt-4 px-10 text-success">
|
|
397
|
+
Select a card to pay
|
|
398
|
+
</div>
|
|
399
|
+
),
|
|
400
|
+
Loader: () => (
|
|
401
|
+
<div className="flex justify-center items-center p-10">
|
|
402
|
+
<span className="text-lg font-bold text-error">
|
|
403
|
+
Loading your cards...
|
|
404
|
+
</span>
|
|
405
|
+
</div>
|
|
406
|
+
),
|
|
407
|
+
ErrorFallback: ({ error, onRetry }) => (
|
|
408
|
+
<div className="text-center p-8">
|
|
409
|
+
<h2 className="text-red-500 text-xl mb-4">Oops! {error}</h2>
|
|
410
|
+
<Button onClick={onRetry}>Try Again</Button>
|
|
411
|
+
</div>
|
|
412
|
+
),
|
|
413
|
+
CardItem: ({ card, onSelect, DeleteButton, selectedCard }) => (
|
|
414
|
+
<li
|
|
415
|
+
key={card.UniqueId}
|
|
416
|
+
className="p-4 cursor-pointer rounded-[10px] border-gray border space-x-5 pl-5 mb-6 md:mb-2.5"
|
|
417
|
+
onClick={() => onSelect(card)}
|
|
418
|
+
>
|
|
419
|
+
<div className="flex justify-between items-center">
|
|
420
|
+
<div className="flex items-center">
|
|
421
|
+
<Checkbox
|
|
422
|
+
key={
|
|
423
|
+
selectedCard?.UniqueId === card.UniqueId
|
|
424
|
+
? 'selected'
|
|
425
|
+
: 'not-selected'
|
|
426
|
+
}
|
|
427
|
+
checked={selectedCard?.UniqueId === card.UniqueId}
|
|
428
|
+
onChange={() => onSelect(card)}
|
|
429
|
+
className="mr-2"
|
|
430
|
+
/>
|
|
431
|
+
<div>
|
|
432
|
+
<h3 className="font-semibold">{card.Name}</h3>
|
|
433
|
+
<p className="text-xs text-gray-500">{card.Value1}</p>
|
|
434
|
+
</div>
|
|
435
|
+
</div>
|
|
436
|
+
<DeleteButton
|
|
437
|
+
cardAliasName={card.Name}
|
|
438
|
+
content={<Icon name="close" size={12} />}
|
|
439
|
+
className="mb-8"
|
|
440
|
+
/>
|
|
441
|
+
</div>
|
|
442
|
+
</li>
|
|
443
|
+
),
|
|
444
|
+
SwitchPaymentButton: ({ onClick, label }) => (
|
|
445
|
+
<div className="px-10">
|
|
446
|
+
<button
|
|
447
|
+
onClick={onClick}
|
|
448
|
+
className="p-4 w-full text-left cursor-pointer rounded-[10px] border-gray border space-x-5 pl-5 mb-6 md:mb-2.5"
|
|
449
|
+
>
|
|
450
|
+
{label}
|
|
451
|
+
</button>
|
|
452
|
+
</div>
|
|
453
|
+
)
|
|
454
|
+
}
|
|
455
|
+
}}
|
|
456
|
+
/>
|
|
457
|
+
```
|
|
458
|
+
|
|
124
459
|
### Card Registration
|
|
125
460
|
|
|
461
|
+
#### Props
|
|
462
|
+
|
|
463
|
+
| Props | Type | Required | Description |
|
|
464
|
+
| --- | --- | --- | --- |
|
|
465
|
+
| getValues | () => Record<string, string> | Required | Returns the values of form fields. |
|
|
466
|
+
| className | string | Optional | Gives an additional CSS class to the outer container. |
|
|
467
|
+
| infoModalContent | React.ReactNode | Optional | Body content for the informational modal. |
|
|
468
|
+
| infoModalIcon | React.ReactNode | Optional | Used to override the notification icon. |
|
|
469
|
+
| translations | typeof defaultTranslations | Optional | Can be used to override default texts. |
|
|
470
|
+
| renderer | RendererProps | Optional | Renderer functions that can be used to customize all subcomponents. |
|
|
471
|
+
|
|
472
|
+
#### RendererProps
|
|
473
|
+
|
|
474
|
+
| Props | Type | Description |
|
|
475
|
+
| --- | --- | --- |
|
|
476
|
+
| Content | (props: { isChecked, toggle, setIsInfoModalOpen, onChange, onSubmit, loading, error, showGoBackLink?, onClickGoBackLink? }) => JSX.Element | Used to render the main content. |
|
|
477
|
+
| InfoModal | (props: { open: boolean; setOpen: (value: boolean) => void }) => JSX.Element | Can be used to override the notification modal. |
|
|
478
|
+
|
|
126
479
|
##### File Path: src/views/checkout/steps/payment/options/credit-card/index.tsx
|
|
127
480
|
|
|
481
|
+
### Usage Examples
|
|
482
|
+
|
|
483
|
+
##### Default Usage
|
|
484
|
+
|
|
485
|
+
```javascript
|
|
486
|
+
<PluginModule
|
|
487
|
+
component={Component.MasterpassCardRegistration}
|
|
488
|
+
props={{
|
|
489
|
+
// Do not remove getValues, it is used to get the form values
|
|
490
|
+
getValues,
|
|
491
|
+
translations: {
|
|
492
|
+
enter_card_name: 'Enter card name',
|
|
493
|
+
continue: 'Continue',
|
|
494
|
+
pay_with_my_masterpass_card: 'Pay with my Masterpass card',
|
|
495
|
+
terms_and_conditions: 'Masterpass terms and conditions',
|
|
496
|
+
card_registration_consent:
|
|
497
|
+
'I want to store my card information in the Mastercard infrastructure and use it again in my next purchase.'
|
|
498
|
+
}
|
|
499
|
+
}}
|
|
500
|
+
/>
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
##### Customized Usage with className, infoModalContent, infoModalIcon
|
|
504
|
+
|
|
128
505
|
```javascript
|
|
129
506
|
<PluginModule
|
|
130
507
|
component={Component.MasterpassCardRegistration}
|
|
@@ -145,3 +522,86 @@ npx @akinon/projectzero@latest --plugins
|
|
|
145
522
|
}}
|
|
146
523
|
/>
|
|
147
524
|
```
|
|
525
|
+
|
|
526
|
+
##### Customized Usage with Renderer
|
|
527
|
+
|
|
528
|
+
```javascript
|
|
529
|
+
<PluginModule
|
|
530
|
+
component={Component.MasterpassCardRegistration}
|
|
531
|
+
props={{
|
|
532
|
+
// Do not remove getValues, it is used to get the form values
|
|
533
|
+
getValues,
|
|
534
|
+
renderer: {
|
|
535
|
+
InfoModal: ({ open, setOpen }) => (
|
|
536
|
+
<Modal
|
|
537
|
+
open={open}
|
|
538
|
+
setOpen={setOpen}
|
|
539
|
+
portalId="masterpass-info-modal"
|
|
540
|
+
>
|
|
541
|
+
masterpass information
|
|
542
|
+
</Modal>
|
|
543
|
+
),
|
|
544
|
+
Content: ({
|
|
545
|
+
isChecked,
|
|
546
|
+
toggle,
|
|
547
|
+
setIsInfoModalOpen,
|
|
548
|
+
onChange,
|
|
549
|
+
onSubmit,
|
|
550
|
+
loading,
|
|
551
|
+
error,
|
|
552
|
+
showGoBackLink,
|
|
553
|
+
onClickGoBackLink
|
|
554
|
+
}) => (
|
|
555
|
+
<div className="bg-[#F8F8F8] mx-10 mb-5 px-2 py-1">
|
|
556
|
+
<div className="flex items-center gap-2 pb-4 mb-4">
|
|
557
|
+
<Checkbox checked={isChecked} onChange={toggle} />
|
|
558
|
+
<h1>Masterpass</h1>
|
|
559
|
+
<div>
|
|
560
|
+
<Icon
|
|
561
|
+
name="info"
|
|
562
|
+
size={15}
|
|
563
|
+
className="fill-[#000000] cursor-pointer"
|
|
564
|
+
onClick={() => {
|
|
565
|
+
setIsInfoModalOpen(true);
|
|
566
|
+
}}
|
|
567
|
+
/>
|
|
568
|
+
</div>
|
|
569
|
+
</div>
|
|
570
|
+
<p className="text-xs">
|
|
571
|
+
I want to store my card information in the Mastercard infrastructure and use it again in my next purchase.
|
|
572
|
+
</p>
|
|
573
|
+
{isChecked && (
|
|
574
|
+
<>
|
|
575
|
+
<Input
|
|
576
|
+
label="Give your card a name"
|
|
577
|
+
onChange={(e) =>
|
|
578
|
+
onChange((e.target as HTMLInputElement).value)
|
|
579
|
+
}
|
|
580
|
+
className="mt-2"
|
|
581
|
+
/>
|
|
582
|
+
<Button
|
|
583
|
+
onClick={onSubmit}
|
|
584
|
+
className="bg-green-600 text-black w-full mt-3"
|
|
585
|
+
>
|
|
586
|
+
{loading ? 'Loading...' : 'Save'}
|
|
587
|
+
</Button>
|
|
588
|
+
{error && (
|
|
589
|
+
<p className="text-xs text-red-600 mt-2">🚨 {error}</p>
|
|
590
|
+
)}
|
|
591
|
+
</>
|
|
592
|
+
)}
|
|
593
|
+
{showGoBackLink && (
|
|
594
|
+
<div>
|
|
595
|
+
<button
|
|
596
|
+
onClick={onClickGoBackLink}
|
|
597
|
+
className="text-xs text-red-600 underline mt-3"
|
|
598
|
+
>
|
|
599
|
+
I want to pay with my card registered to Masterpass.
|
|
600
|
+
</button>
|
|
601
|
+
</div>
|
|
602
|
+
)}
|
|
603
|
+
</div>
|
|
604
|
+
)
|
|
605
|
+
}
|
|
606
|
+
}}
|
|
607
|
+
```
|
package/package.json
CHANGED
|
@@ -3,14 +3,20 @@
|
|
|
3
3
|
import { useAppDispatch, useAppSelector } from '@akinon/next/redux/hooks';
|
|
4
4
|
import { Icon } from 'components';
|
|
5
5
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
6
|
+
import { twMerge } from 'tailwind-merge';
|
|
6
7
|
import {
|
|
7
8
|
setDeletionCardAliasName,
|
|
8
9
|
setDeletionModalVisible
|
|
9
10
|
} from '../redux/reducer';
|
|
10
|
-
import { CheckMasterpassResponse } from '../types';
|
|
11
11
|
import { formCreator } from '../utils';
|
|
12
12
|
import { useCards } from './use-cards';
|
|
13
13
|
|
|
14
|
+
export type DeleteButtonProps = {
|
|
15
|
+
cardAliasName: string;
|
|
16
|
+
content?: JSX.Element;
|
|
17
|
+
className?: string;
|
|
18
|
+
};
|
|
19
|
+
|
|
14
20
|
export const useDeleteCard = () => {
|
|
15
21
|
const { msisdn, token, language, deletion } = useAppSelector(
|
|
16
22
|
(state: any) => state.masterpass
|
|
@@ -67,22 +73,27 @@ export const useDeleteCard = () => {
|
|
|
67
73
|
|
|
68
74
|
const DeleteButton = useMemo(
|
|
69
75
|
() =>
|
|
70
|
-
({ cardAliasName
|
|
76
|
+
({ cardAliasName, content, className }: DeleteButtonProps) => {
|
|
71
77
|
return (
|
|
72
78
|
<span
|
|
73
|
-
className=
|
|
79
|
+
className={twMerge('cursor-pointer p-1', className)}
|
|
74
80
|
onClick={(event: React.MouseEvent<HTMLElement>) => {
|
|
75
81
|
event.stopPropagation();
|
|
76
82
|
dispatch(setDeletionModalVisible(true));
|
|
77
83
|
dispatch(setDeletionCardAliasName(cardAliasName));
|
|
78
84
|
}}
|
|
79
85
|
>
|
|
80
|
-
<Icon name="close" size={12} />
|
|
86
|
+
{content ?? <Icon name="close" size={12} />}
|
|
81
87
|
</span>
|
|
82
88
|
);
|
|
83
89
|
},
|
|
84
90
|
[]
|
|
85
91
|
);
|
|
86
92
|
|
|
87
|
-
return {
|
|
93
|
+
return {
|
|
94
|
+
DeleteButton,
|
|
95
|
+
deleteCard,
|
|
96
|
+
isLoading,
|
|
97
|
+
error
|
|
98
|
+
};
|
|
88
99
|
};
|
|
@@ -48,6 +48,30 @@ const defaultTranslations = {
|
|
|
48
48
|
security_code_info: 'What’s CVC?'
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
+
interface RendererProps {
|
|
52
|
+
Header?: () => JSX.Element;
|
|
53
|
+
CardItem?: (params: {
|
|
54
|
+
card: any;
|
|
55
|
+
selectedCard: any;
|
|
56
|
+
onSelect: (card: any) => Promise<void>;
|
|
57
|
+
DeleteButton?: React.FC<{
|
|
58
|
+
cardAliasName: string;
|
|
59
|
+
onDelete: () => void;
|
|
60
|
+
className?: string;
|
|
61
|
+
content?: JSX.Element;
|
|
62
|
+
}>;
|
|
63
|
+
}) => JSX.Element;
|
|
64
|
+
Loader?: () => JSX.Element;
|
|
65
|
+
ErrorFallback?: (params: {
|
|
66
|
+
error: string;
|
|
67
|
+
onRetry: () => void;
|
|
68
|
+
}) => JSX.Element;
|
|
69
|
+
SwitchPaymentButton?: (props: {
|
|
70
|
+
onClick: () => void;
|
|
71
|
+
label: string;
|
|
72
|
+
}) => JSX.Element;
|
|
73
|
+
}
|
|
74
|
+
|
|
51
75
|
export interface MasterpassCardListProps {
|
|
52
76
|
className?: string;
|
|
53
77
|
translations?: typeof defaultTranslations;
|
|
@@ -58,12 +82,14 @@ export interface MasterpassCardListProps {
|
|
|
58
82
|
register: UseFormRegister<any>;
|
|
59
83
|
setFormValue: UseFormSetValue<any>;
|
|
60
84
|
};
|
|
85
|
+
renderer?: RendererProps;
|
|
61
86
|
}
|
|
62
87
|
|
|
63
88
|
export const MasterpassCardList = ({
|
|
64
89
|
className,
|
|
65
90
|
translations,
|
|
66
|
-
form
|
|
91
|
+
form,
|
|
92
|
+
renderer
|
|
67
93
|
}: MasterpassCardListProps) => {
|
|
68
94
|
const { preOrder } = useAppSelector((state) => state.checkout);
|
|
69
95
|
const { accountStatus, isDirectPurchase, selectedCard, cvcRequired } =
|
|
@@ -73,7 +99,28 @@ export const MasterpassCardList = ({
|
|
|
73
99
|
const { DeleteButton } = useDeleteCard();
|
|
74
100
|
const dispatch = useAppDispatch();
|
|
75
101
|
|
|
76
|
-
const
|
|
102
|
+
const onSelectCard = async (card: any) => {
|
|
103
|
+
if (selectedCard?.UniqueId !== card.UniqueId) {
|
|
104
|
+
await setMasterpassBinNumber(card.Value1.substring(0, 6)).unwrap();
|
|
105
|
+
dispatch(setSelectedCard(card));
|
|
106
|
+
dispatch(setCvcRequired(false));
|
|
107
|
+
if (form) {
|
|
108
|
+
form.setFormValue('card_cvv', '');
|
|
109
|
+
form.clearErrors('card_cvv');
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
const switchPaymentButton = renderer?.SwitchPaymentButton ? (
|
|
115
|
+
renderer.SwitchPaymentButton({
|
|
116
|
+
onClick: () => {
|
|
117
|
+
dispatch(setIsDirectPurchase(true));
|
|
118
|
+
dispatch(setInstallmentOptions([]));
|
|
119
|
+
},
|
|
120
|
+
label:
|
|
121
|
+
translations?.pay_with_new_card ?? defaultTranslations.pay_with_new_card
|
|
122
|
+
})
|
|
123
|
+
) : (
|
|
77
124
|
<a
|
|
78
125
|
href="#"
|
|
79
126
|
className="text-xs underline"
|
|
@@ -92,7 +139,9 @@ export const MasterpassCardList = ({
|
|
|
92
139
|
}
|
|
93
140
|
|
|
94
141
|
if (loading) {
|
|
95
|
-
return (
|
|
142
|
+
return renderer?.Loader ? (
|
|
143
|
+
renderer.Loader()
|
|
144
|
+
) : (
|
|
96
145
|
<div className="p-5">
|
|
97
146
|
<LoaderSpinner className="w-8 h-8" />
|
|
98
147
|
</div>
|
|
@@ -100,18 +149,14 @@ export const MasterpassCardList = ({
|
|
|
100
149
|
}
|
|
101
150
|
|
|
102
151
|
if (error && !isDirectPurchase) {
|
|
103
|
-
return (
|
|
152
|
+
return renderer?.ErrorFallback ? (
|
|
153
|
+
renderer.ErrorFallback({ error, onRetry: refreshCards })
|
|
154
|
+
) : (
|
|
104
155
|
<div className="flex flex-col items-center">
|
|
105
156
|
<div className="p-5">{error}</div>
|
|
106
|
-
<Button
|
|
107
|
-
className="w-48 mb-5"
|
|
108
|
-
onClick={() => {
|
|
109
|
-
refreshCards();
|
|
110
|
-
}}
|
|
111
|
-
>
|
|
157
|
+
<Button className="w-48 mb-5" onClick={refreshCards}>
|
|
112
158
|
{translations?.retryFetchCards ?? defaultTranslations.retryFetchCards}
|
|
113
159
|
</Button>
|
|
114
|
-
|
|
115
160
|
{switchPaymentButton}
|
|
116
161
|
</div>
|
|
117
162
|
);
|
|
@@ -126,38 +171,75 @@ export const MasterpassCardList = ({
|
|
|
126
171
|
}
|
|
127
172
|
|
|
128
173
|
return (
|
|
129
|
-
<div className=
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
174
|
+
<div className="w-full">
|
|
175
|
+
{renderer?.Header ? (
|
|
176
|
+
renderer.Header()
|
|
177
|
+
) : (
|
|
178
|
+
<>
|
|
179
|
+
<Image
|
|
180
|
+
className="mb-4"
|
|
181
|
+
width={140}
|
|
182
|
+
height={25}
|
|
183
|
+
src={masterpassLogo.src}
|
|
184
|
+
alt="Masterpass Logo"
|
|
185
|
+
/>
|
|
186
|
+
<p className="text-xs">
|
|
187
|
+
{translations?.title ?? defaultTranslations.title}
|
|
188
|
+
</p>
|
|
189
|
+
</>
|
|
190
|
+
)}
|
|
191
|
+
|
|
192
|
+
<ul className={twMerge('mt-4 text-xs', className)}>
|
|
141
193
|
{cards?.map((card) => {
|
|
142
|
-
|
|
194
|
+
const cvcField =
|
|
195
|
+
selectedCard?.UniqueId === card.UniqueId && form && cvcRequired ? (
|
|
196
|
+
<div
|
|
197
|
+
className={twMerge(
|
|
198
|
+
clsx('flex items-center justify-start mt-2', {
|
|
199
|
+
'items-baseline': form.errors.card_cvv
|
|
200
|
+
})
|
|
201
|
+
)}
|
|
202
|
+
>
|
|
203
|
+
<label
|
|
204
|
+
className="text-xs text-black-400 mr-1.5"
|
|
205
|
+
htmlFor="card_cvv"
|
|
206
|
+
>
|
|
207
|
+
{translations?.security_code ??
|
|
208
|
+
defaultTranslations.security_code}
|
|
209
|
+
</label>
|
|
210
|
+
<Input
|
|
211
|
+
format="###"
|
|
212
|
+
mask="_"
|
|
213
|
+
control={form.control}
|
|
214
|
+
allowEmptyFormatting={true}
|
|
215
|
+
{...form.register('card_cvv')}
|
|
216
|
+
error={form.errors.card_cvv}
|
|
217
|
+
/>
|
|
218
|
+
<div className="group relative flex items-center justify-start text-gray-600 cursor-pointer ml-2 transition-all hover:text-secondary">
|
|
219
|
+
<span className="text-xs underline">
|
|
220
|
+
{translations?.security_code_info ??
|
|
221
|
+
defaultTranslations.security_code_info}
|
|
222
|
+
</span>
|
|
223
|
+
<Icon name="cvc" size={16} className="leading-none ml-2" />
|
|
224
|
+
<div className="hidden group-hover:block absolute right-0 bottom-5 w-[11rem] lg:w-[21rem] lg:left-auto lg:right-auto border-2">
|
|
225
|
+
<Image src="/cvv.jpg" alt="Cvv" width={385} height={262} />
|
|
226
|
+
</div>
|
|
227
|
+
</div>
|
|
228
|
+
</div>
|
|
229
|
+
) : null;
|
|
230
|
+
|
|
231
|
+
return renderer?.CardItem ? (
|
|
232
|
+
renderer.CardItem({
|
|
233
|
+
card,
|
|
234
|
+
selectedCard,
|
|
235
|
+
onSelect: onSelectCard,
|
|
236
|
+
DeleteButton
|
|
237
|
+
})
|
|
238
|
+
) : (
|
|
143
239
|
<li
|
|
144
240
|
key={card.UniqueId}
|
|
145
241
|
className="p-4 mb-2 border-2 border-gray-200 flex flex-col space-x-2 cursor-pointer"
|
|
146
|
-
onClick={
|
|
147
|
-
if (selectedCard?.UniqueId !== card.UniqueId) {
|
|
148
|
-
await setMasterpassBinNumber(
|
|
149
|
-
card.Value1.substring(0, 6)
|
|
150
|
-
).unwrap();
|
|
151
|
-
|
|
152
|
-
dispatch(setSelectedCard(card));
|
|
153
|
-
dispatch(setCvcRequired(false));
|
|
154
|
-
|
|
155
|
-
if (form) {
|
|
156
|
-
form.setFormValue('card_cvv', '');
|
|
157
|
-
form.clearErrors('card_cvv');
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}}
|
|
242
|
+
onClick={() => onSelectCard(card)}
|
|
161
243
|
>
|
|
162
244
|
<div className="flex justify-between items-center">
|
|
163
245
|
<input
|
|
@@ -169,12 +251,14 @@ export const MasterpassCardList = ({
|
|
|
169
251
|
className="mr-2"
|
|
170
252
|
onChange={(e) => e.preventDefault()}
|
|
171
253
|
/>
|
|
254
|
+
|
|
172
255
|
<label
|
|
173
256
|
htmlFor={card.UniqueId}
|
|
174
257
|
className="flex flex-col w-full cursor-pointer md:flex-row md:items-center md:justify-between"
|
|
175
258
|
>
|
|
176
259
|
<p className="w-full lg:w-1/3">{card.Name}</p>
|
|
177
260
|
<p className="w-full text-[10px] lg:w-1/3">{card.Value1}</p>
|
|
261
|
+
|
|
178
262
|
<Image
|
|
179
263
|
className="w-8 h-6 object-contain flex items-center justify-center mr-4"
|
|
180
264
|
width={50}
|
|
@@ -186,46 +270,7 @@ export const MasterpassCardList = ({
|
|
|
186
270
|
|
|
187
271
|
<DeleteButton cardAliasName={card.Name} />
|
|
188
272
|
</div>
|
|
189
|
-
{
|
|
190
|
-
<div
|
|
191
|
-
className={twMerge(
|
|
192
|
-
clsx('flex items-center justify-start mt-2', {
|
|
193
|
-
'items-baseline': form.errors.card_cvv
|
|
194
|
-
})
|
|
195
|
-
)}
|
|
196
|
-
>
|
|
197
|
-
<label
|
|
198
|
-
className="text-xs text-black-400 mr-1.5"
|
|
199
|
-
htmlFor="card_cvv"
|
|
200
|
-
>
|
|
201
|
-
{translations?.security_code ??
|
|
202
|
-
defaultTranslations.security_code}
|
|
203
|
-
</label>
|
|
204
|
-
<Input
|
|
205
|
-
format="###"
|
|
206
|
-
mask="_"
|
|
207
|
-
control={form.control}
|
|
208
|
-
allowEmptyFormatting={true}
|
|
209
|
-
{...form.register('card_cvv')}
|
|
210
|
-
error={form.errors.card_cvv}
|
|
211
|
-
/>
|
|
212
|
-
<div className="group relative flex items-center justify-start text-gray-600 cursor-pointer ml-2 transition-all hover:text-secondary">
|
|
213
|
-
<span className="text-xs underline">
|
|
214
|
-
{translations?.security_code_info ??
|
|
215
|
-
defaultTranslations.security_code_info}
|
|
216
|
-
</span>
|
|
217
|
-
<Icon name="cvc" size={16} className="leading-none ml-2" />
|
|
218
|
-
<div className="hidden group-hover:block absolute right-0 bottom-5 w-[11rem] lg:w-[21rem] lg:left-auto lg:right-auto border-2">
|
|
219
|
-
<Image
|
|
220
|
-
src="/cvv.jpg"
|
|
221
|
-
alt="Cvv"
|
|
222
|
-
width={385}
|
|
223
|
-
height={262}
|
|
224
|
-
/>
|
|
225
|
-
</div>
|
|
226
|
-
</div>
|
|
227
|
-
</div>
|
|
228
|
-
)}
|
|
273
|
+
{cvcField}
|
|
229
274
|
</li>
|
|
230
275
|
);
|
|
231
276
|
})}
|
|
@@ -32,13 +32,31 @@ export const MasterpassCardRegistration = ({
|
|
|
32
32
|
className,
|
|
33
33
|
infoModalContent,
|
|
34
34
|
infoModalIcon,
|
|
35
|
-
translations
|
|
35
|
+
translations,
|
|
36
|
+
renderer = {}
|
|
36
37
|
}: {
|
|
37
38
|
getValues: () => Record<string, string | number | boolean>;
|
|
38
39
|
className?: string;
|
|
39
40
|
infoModalContent?: React.ReactNode;
|
|
40
41
|
infoModalIcon?: React.ReactNode;
|
|
41
42
|
translations?: typeof defaultTranslations;
|
|
43
|
+
renderer?: {
|
|
44
|
+
Content?: (props: {
|
|
45
|
+
isChecked: boolean;
|
|
46
|
+
toggle: () => void;
|
|
47
|
+
setIsInfoModalOpen: (value: boolean) => void;
|
|
48
|
+
onChange: (value: string) => void;
|
|
49
|
+
onSubmit: () => void;
|
|
50
|
+
loading: boolean;
|
|
51
|
+
error: string | null;
|
|
52
|
+
showGoBackLink?: boolean;
|
|
53
|
+
onClickGoBackLink?: () => void;
|
|
54
|
+
}) => JSX.Element;
|
|
55
|
+
InfoModal?: (props: {
|
|
56
|
+
open: boolean;
|
|
57
|
+
setOpen: (value: boolean) => void;
|
|
58
|
+
}) => JSX.Element;
|
|
59
|
+
};
|
|
42
60
|
}) => {
|
|
43
61
|
const { preOrder } = useAppSelector((state: RootState) => state.checkout);
|
|
44
62
|
const { msisdn, token, language, otp, isDirectPurchase, accountStatus } =
|
|
@@ -168,13 +186,56 @@ export const MasterpassCardRegistration = ({
|
|
|
168
186
|
return null;
|
|
169
187
|
}
|
|
170
188
|
|
|
189
|
+
if (renderer.Content) {
|
|
190
|
+
return (
|
|
191
|
+
<>
|
|
192
|
+
{renderer.InfoModal ? (
|
|
193
|
+
<renderer.InfoModal
|
|
194
|
+
open={isInfoModalOpen}
|
|
195
|
+
setOpen={setIsInfoModalOpen}
|
|
196
|
+
/>
|
|
197
|
+
) : (
|
|
198
|
+
<InfoModal
|
|
199
|
+
open={isInfoModalOpen}
|
|
200
|
+
setOpen={setIsInfoModalOpen}
|
|
201
|
+
content={infoModalContent}
|
|
202
|
+
/>
|
|
203
|
+
)}
|
|
204
|
+
|
|
205
|
+
<renderer.Content
|
|
206
|
+
isChecked={isAgreementChecked}
|
|
207
|
+
toggle={() => setIsAgreementChecked(!isAgreementChecked)}
|
|
208
|
+
setIsInfoModalOpen={setIsInfoModalOpen}
|
|
209
|
+
onChange={(value) => setAccountAliasName(value)}
|
|
210
|
+
onSubmit={registerCard}
|
|
211
|
+
loading={isBusy}
|
|
212
|
+
error={formError}
|
|
213
|
+
showGoBackLink={
|
|
214
|
+
accountStatus !== MasterpassStatus.NoAccount && cards?.length > 0
|
|
215
|
+
}
|
|
216
|
+
onClickGoBackLink={() => {
|
|
217
|
+
dispatch(setIsDirectPurchase(false));
|
|
218
|
+
dispatch(setInstallmentOptions([]));
|
|
219
|
+
}}
|
|
220
|
+
/>
|
|
221
|
+
</>
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
|
|
171
225
|
return (
|
|
172
226
|
<div className={twMerge('w-full', className)}>
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
227
|
+
{renderer.InfoModal ? (
|
|
228
|
+
<renderer.InfoModal
|
|
229
|
+
open={isInfoModalOpen}
|
|
230
|
+
setOpen={setIsInfoModalOpen}
|
|
231
|
+
/>
|
|
232
|
+
) : (
|
|
233
|
+
<InfoModal
|
|
234
|
+
open={isInfoModalOpen}
|
|
235
|
+
setOpen={setIsInfoModalOpen}
|
|
236
|
+
content={infoModalContent}
|
|
237
|
+
/>
|
|
238
|
+
)}
|
|
178
239
|
|
|
179
240
|
<div className="border border-[#ddd]">
|
|
180
241
|
<div className="p-4">
|
|
@@ -15,15 +15,39 @@ const defaultTranslations = {
|
|
|
15
15
|
|
|
16
16
|
export interface MasterpassDeleteConfirmationModalProps {
|
|
17
17
|
translations?: typeof defaultTranslations;
|
|
18
|
+
renderer?: {
|
|
19
|
+
Content?: (props: {
|
|
20
|
+
open: boolean;
|
|
21
|
+
setOpen: (open: boolean) => void;
|
|
22
|
+
onConfirm: () => void;
|
|
23
|
+
onCancel: () => void;
|
|
24
|
+
loading: boolean;
|
|
25
|
+
error: string | null;
|
|
26
|
+
}) => JSX.Element;
|
|
27
|
+
};
|
|
18
28
|
}
|
|
19
29
|
|
|
20
30
|
export const MasterpassDeleteConfirmationModal = ({
|
|
21
|
-
translations
|
|
31
|
+
translations,
|
|
32
|
+
renderer = {}
|
|
22
33
|
}: MasterpassDeleteConfirmationModalProps) => {
|
|
23
34
|
const { deletion } = useAppSelector((state) => state.masterpass);
|
|
24
35
|
const { deleteCard, isLoading, error } = useDeleteCard();
|
|
25
36
|
const dispatch = useAppDispatch();
|
|
26
37
|
|
|
38
|
+
if (renderer.Content) {
|
|
39
|
+
return (
|
|
40
|
+
<renderer.Content
|
|
41
|
+
open={deletion.isModalVisible}
|
|
42
|
+
setOpen={() => dispatch(setDeletionModalVisible(false))}
|
|
43
|
+
onConfirm={deleteCard}
|
|
44
|
+
onCancel={() => dispatch(setDeletionModalVisible(false))}
|
|
45
|
+
loading={isLoading}
|
|
46
|
+
error={error}
|
|
47
|
+
/>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
|
|
27
51
|
return (
|
|
28
52
|
<Modal
|
|
29
53
|
portalId="masterpass-remove-card-modal"
|
|
@@ -21,10 +21,20 @@ const defaultTranslations = {
|
|
|
21
21
|
|
|
22
22
|
export interface MasterpassLinkModalProps {
|
|
23
23
|
translations?: typeof defaultTranslations;
|
|
24
|
+
renderer?: {
|
|
25
|
+
Content?: (props: {
|
|
26
|
+
open: boolean;
|
|
27
|
+
setOpen: (open: boolean) => void;
|
|
28
|
+
onClick: () => void;
|
|
29
|
+
loading: boolean;
|
|
30
|
+
error: string | null;
|
|
31
|
+
}) => JSX.Element;
|
|
32
|
+
};
|
|
24
33
|
}
|
|
25
34
|
|
|
26
35
|
export const MasterpassLinkModal = ({
|
|
27
|
-
translations
|
|
36
|
+
translations,
|
|
37
|
+
renderer = {}
|
|
28
38
|
}: MasterpassLinkModalProps) => {
|
|
29
39
|
const { msisdn, token, accountStatus, otp, language } = useAppSelector(
|
|
30
40
|
(state) => state.masterpass
|
|
@@ -93,6 +103,18 @@ export const MasterpassLinkModal = ({
|
|
|
93
103
|
}
|
|
94
104
|
}, [otp.response]);
|
|
95
105
|
|
|
106
|
+
if (renderer.Content) {
|
|
107
|
+
return (
|
|
108
|
+
<renderer.Content
|
|
109
|
+
open={isOpen}
|
|
110
|
+
setOpen={setIsOpen}
|
|
111
|
+
onClick={onLinkButtonClick}
|
|
112
|
+
loading={isLoading}
|
|
113
|
+
error={error}
|
|
114
|
+
/>
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
|
|
96
118
|
return (
|
|
97
119
|
<Modal
|
|
98
120
|
portalId="masterpass-check-user"
|
|
@@ -12,15 +12,32 @@ import { OtpForm, OtpFormProps, defaultTranslations } from './otp-form';
|
|
|
12
12
|
import { useAppDispatch, useAppSelector } from '@akinon/next/redux/hooks';
|
|
13
13
|
import { setOtpModalVisible, setOtpResponse } from '../../redux/reducer';
|
|
14
14
|
import { Image } from '@akinon/next/components/image';
|
|
15
|
+
import { useCountdown } from '../../hooks/use-countdown';
|
|
15
16
|
|
|
16
17
|
export interface MasterpassOtpModalProps {
|
|
17
18
|
translations?: {
|
|
18
19
|
5001?: string;
|
|
19
20
|
} & OtpFormProps['translations'];
|
|
21
|
+
renderer?: {
|
|
22
|
+
Content?: (props: {
|
|
23
|
+
open: boolean;
|
|
24
|
+
setOpen: (open: boolean) => void;
|
|
25
|
+
onSubmit: (data: { otp_code: string }) => void;
|
|
26
|
+
loading: boolean;
|
|
27
|
+
error: string | null;
|
|
28
|
+
resendSms: () => void;
|
|
29
|
+
resendSmsFetching: boolean;
|
|
30
|
+
targetDate: number;
|
|
31
|
+
otpRef: string | null;
|
|
32
|
+
minutes?: number;
|
|
33
|
+
seconds?: number;
|
|
34
|
+
}) => JSX.Element;
|
|
35
|
+
};
|
|
20
36
|
}
|
|
21
37
|
|
|
22
38
|
export const MasterpassOtpModal = ({
|
|
23
|
-
translations
|
|
39
|
+
translations,
|
|
40
|
+
renderer = {}
|
|
24
41
|
}: MasterpassOtpModalProps) => {
|
|
25
42
|
const { token, otp, language } = useAppSelector((state) => state.masterpass);
|
|
26
43
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
@@ -111,6 +128,26 @@ export const MasterpassOtpModal = ({
|
|
|
111
128
|
}
|
|
112
129
|
}, [isModalOpen]);
|
|
113
130
|
|
|
131
|
+
if (renderer.Content) {
|
|
132
|
+
const [minutes, seconds] = useCountdown(new Date(otpTime));
|
|
133
|
+
|
|
134
|
+
return (
|
|
135
|
+
<renderer.Content
|
|
136
|
+
open={isModalOpen}
|
|
137
|
+
setOpen={handleModalVisibility}
|
|
138
|
+
onSubmit={onFormSubmit}
|
|
139
|
+
loading={isBusy}
|
|
140
|
+
error={otpError}
|
|
141
|
+
resendSms={resendSms}
|
|
142
|
+
resendSmsFetching={isBusy}
|
|
143
|
+
targetDate={otpTime}
|
|
144
|
+
otpRef={otpRef}
|
|
145
|
+
minutes={minutes}
|
|
146
|
+
seconds={seconds}
|
|
147
|
+
/>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
|
|
114
151
|
return (
|
|
115
152
|
<Modal
|
|
116
153
|
portalId="otp-masterpass"
|