-
Notifications
You must be signed in to change notification settings - Fork 576
/
Copy pathprops.js
959 lines (857 loc) · 24.4 KB
/
props.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
/* eslint-disable eslint-comments/disable-enable-pair */
/* @flow */
import { ZalgoPromise } from "@krakenjs/zalgo-promise/src";
import { values, uniqueID } from "@krakenjs/belter/src";
import {
type OrderCreateRequest,
type FundingEligibilityType,
type OrderGetResponse,
type OrderCaptureResponse,
type OrderAuthorizeResponse,
} from "@paypal/sdk-client/src";
import {
CURRENCY,
FUNDING,
PLATFORM,
INTENT,
COMMIT,
VAULT,
ENV,
COUNTRY,
LANG,
COUNTRY_LANGS,
type LocaleType,
CARD,
COMPONENTS,
DISPLAY_ONLY_VALUES,
} from "@paypal/sdk-constants/src";
import { type CrossDomainWindowType } from "@krakenjs/cross-domain-utils/src";
import { LOGO_COLOR } from "@paypal/sdk-logos/src";
import { SUPPORTED_FUNDING_SOURCES } from "@paypal/funding-components/src";
import type { ComponentFunctionType } from "@krakenjs/jsx-pragmatic/src";
import type { ContentType, Wallet, Experiment } from "../../types";
import {
BUTTON_LABEL,
BUTTON_COLOR,
BUTTON_LAYOUT,
BUTTON_SHAPE,
BUTTON_SIZE,
BUTTON_FLOW,
MENU_PLACEMENT,
MESSAGE_OFFER,
MESSAGE_COLOR,
MESSAGE_POSITION,
MESSAGE_ALIGN,
} from "../../constants";
import { getFundingConfig, isFundingEligible } from "../../funding";
import { BUTTON_SIZE_STYLE } from "./config";
import { isBorderRadiusNumber, calculateMessagePosition } from "./util";
export type CreateOrderData = {||} | {||};
export type CreateOrderActions = {|
order: {|
create: (OrderCreateRequest) => ZalgoPromise<string>,
|},
|};
export type CreateOrder = (
CreateOrderData,
CreateOrderActions
) => ZalgoPromise<string> | string;
export type OnApproveData = {|
orderID: string,
payerID: string,
paymentID?: string,
|};
export type OnCompleteData = {||};
export type CreateBillingAgreement = () => ZalgoPromise<string> | string;
export type CreateVaultSetupToken = () => ZalgoPromise<string>;
export type CreateSubscriptionRequest = {||};
export type SubscriptionResponse = {||} | {||};
export type CreateSubscriptionData = {||} | {||};
export type CreateSubscriptionActions = {|
subscription: {|
create: (CreateSubscriptionRequest) => ZalgoPromise<string>,
revise: (CreateSubscriptionRequest) => ZalgoPromise<string>,
|},
|};
export type CreateSubscription = (
CreateSubscriptionData,
CreateSubscriptionActions
) => ZalgoPromise<string> | string;
export type OnApproveActions = {|
redirect: (string, CrossDomainWindowType) => ZalgoPromise<void>,
order: {|
capture: () => ZalgoPromise<OrderCaptureResponse>,
get: () => ZalgoPromise<OrderGetResponse>,
authorize: () => ZalgoPromise<OrderAuthorizeResponse>,
|},
subscription: {|
get: () => ZalgoPromise<SubscriptionResponse>,
activate: () => ZalgoPromise<SubscriptionResponse>,
|},
|};
export type OnCompleteActions = {|
redirect: (string, CrossDomainWindowType) => ZalgoPromise<void>,
|};
export type OnApprove = (
data: OnApproveData,
actions: OnApproveActions
) => ZalgoPromise<void> | void;
export type OnComplete = (
data: OnCompleteData,
actions: OnCompleteActions
) => ZalgoPromise<void> | void;
type OnShippingChangeAddress = {|
city: string,
state: string,
country_code: string,
postal_code: string,
|};
type OnShippingChangeOption = {|
id?: string,
label: string,
type: string,
amount: {|
currency_code: string,
value: string,
|},
|};
export type ON_SHIPPING_CHANGE_EVENT = "add" | "replace";
export type ShippingOption = {|
id?: string,
label: string,
selected: boolean,
type: string,
amount: {|
currency_code: string,
value: string,
|},
|};
export type Query = {|
op: ON_SHIPPING_CHANGE_EVENT,
path: string,
value: mixed,
|};
export type Breakdown = {|
item_total?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
shipping?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
handling?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
tax_total?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
insurance?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
shipping_discount?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
discount?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
|};
export type ShippingAmount = {|
breakdown?: {|
item_total?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
shipping?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
handling?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
tax_total?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
insurance?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
shipping_discount?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
discount?: {|
currency_code: $Values<typeof CURRENCY>,
value: string,
|},
|},
currency_code: $Values<typeof CURRENCY>,
value: string,
|};
export type OnShippingChangeData = {|
orderID: string,
payerID: string,
paymentID?: string,
shipping_address: OnShippingChangeAddress,
selected_shipping_option: OnShippingChangeOption,
amount?: ShippingAmount,
|};
export type OnShippingChangeActions = {|
order: {|
patch: () => ZalgoPromise<OrderGetResponse>,
|},
|};
export type OnShippingChange = (
data: OnShippingChangeData,
actions: OnShippingChangeActions
) => ZalgoPromise<void> | void;
export type OnShippingAddressChangeData = {|
orderID: string,
payerID?: string,
paymentID?: string,
amount?: ShippingAmount,
event?: ON_SHIPPING_CHANGE_EVENT,
shipping_address: OnShippingChangeAddress,
|};
export type OnShippingAddressChangeActions = {|
patch: () => ZalgoPromise<OrderGetResponse>,
query: () => $ReadOnlyArray<Query>,
updateShippingDiscount: ({|
discountAmount: string,
|}) => ZalgoPromise<void> | void,
updateShippingOptions: ({|
shippingOptions: $ReadOnlyArray<ShippingOption>,
|}) => ZalgoPromise<void> | void,
updateTax: {| taxAmount: string |},
|};
export type OnShippingAddressChange = (
data: OnShippingAddressChangeData,
actions: OnShippingAddressChangeActions
) => ZalgoPromise<void> | void;
export type OnShippingOptionsChangeData = {|
orderID: string,
payerID: string,
paymentID?: string,
selected_shipping_option: OnShippingChangeOption,
|};
export type OnShippingOptionsChangeActions = {|
patch: () => ZalgoPromise<OrderGetResponse>,
query: () => string,
updateShippingDiscount: ({|
discountAmount: string,
|}) => ZalgoPromise<void> | void,
updateShippingOptions: ({|
shippingOptions: $ReadOnlyArray<ShippingOption>,
|}) => ZalgoPromise<void> | void,
updateTax: {| taxAmount: string |},
|};
export type OnShippingOptionsChange = (
data: OnShippingOptionsChangeData,
actions: OnShippingOptionsChangeActions
) => ZalgoPromise<void> | void;
export type OnCancelData = {|
orderID: string,
paymentID?: string,
|};
export type OnCancelActions = {|
redirect: (string, CrossDomainWindowType) => ZalgoPromise<void>,
|};
export type OnCancel = (
OnCancelData,
OnCancelActions
) => ZalgoPromise<void> | void;
export type OnClickData = {|
fundingSource: $Values<typeof FUNDING>,
card?: $Values<typeof CARD>,
|};
export type OnClickActions = {|
resolve: () => ZalgoPromise<void>,
reject: () => ZalgoPromise<void>,
|};
export type OnClick = (OnClickData, OnClickActions) => void;
export type ButtonStyle = {|
label: $Values<typeof BUTTON_LABEL> | void,
color: $Values<typeof BUTTON_COLOR>,
shape: $Values<typeof BUTTON_SHAPE>,
tagline: boolean,
layout: $Values<typeof BUTTON_LAYOUT>,
menuPlacement: $Values<typeof MENU_PLACEMENT>,
period?: number,
height?: number,
disableMaxWidth?: boolean,
borderRadius?: number,
|};
export type ButtonStyleInputs = {|
label?: $Values<typeof BUTTON_LABEL> | void,
color?: $Values<typeof BUTTON_COLOR> | void,
shape?: $Values<typeof BUTTON_SHAPE> | void,
tagline?: boolean | void,
layout?: $Values<typeof BUTTON_LAYOUT> | void,
period?: number | void,
height?: number | void,
disableMaxWidth?: boolean | void,
borderRadius?: number | void,
|};
type PersonalizationComponentProps = {|
logoColor: $Values<typeof LOGO_COLOR>,
period: ?number,
|};
export type Personalization = {|
buttonText?: {|
text: string,
Component: ?ComponentFunctionType<PersonalizationComponentProps>,
tracking: {|
impression: string,
click: string,
|},
|},
tagline?: {|
text: string,
Component: ?ComponentFunctionType<PersonalizationComponentProps>,
tracking: {|
impression: string,
click: string,
|},
|},
|};
// https://developer.apple.com/documentation/apple_pay_on_the_web/applepayerror/2970147-applepayerror
export type ApplePayError = {|
code: string, // https://developer.apple.com/documentation/apple_pay_on_the_web/applepayerrorcode
contactField: string, // https://developer.apple.com/documentation/apple_pay_on_the_web/applepayerrorcontactfield
message: string, // custom error message
|};
export type ApplePayLineItem = {|
type?: string, // 'final' | 'pending'
label?: string,
amount?: string,
|};
export type ApplePayShippingMethod = {|
label: string,
detail: string,
amount: string,
identifier: string,
|};
export type ApplePayShippingContactUpdate = {|
errors?: $ReadOnlyArray<ApplePayError>,
newShippingMethods?: $ReadOnlyArray<ApplePayShippingMethod>,
newTotal: ApplePayLineItem,
newLineItems?: $ReadOnlyArray<ApplePayLineItem>,
|};
export type ApplePayPaymentMethodUpdate = {|
newTotal: ApplePayLineItem,
newLineItems?: $ReadOnlyArray<ApplePayLineItem>,
|};
export type ApplePayShippingMethodUpdate = {|
newTotal: ApplePayLineItem,
newLineItems?: $ReadOnlyArray<ApplePayLineItem>,
|};
export type ApplePayPaymentAuthorizationResult = {|
status: number,
errors?: $ReadOnlyArray<ApplePayError>,
|};
export type ApplePaySessionConfig = {|
begin: () => void,
abort: () => void,
addEventListener: (string, Function) => void,
// eslint-disable-next-line flowtype/no-weak-types
completeMerchantValidation: (validatedSession: any) => void,
completeShippingMethodSelection: (
update: ApplePayShippingMethodUpdate | {||}
) => void,
completeShippingContactSelection: (
update: ApplePayShippingContactUpdate | {||}
) => void,
completePaymentMethodSelection: (
update: ApplePayPaymentMethodUpdate | {||}
) => void,
completePayment: (result: ApplePayPaymentAuthorizationResult) => void,
|};
export type ApplePaySessionConfigRequest = (
version: number,
request: Object
) => ApplePaySessionConfig;
export type ButtonMessage = {|
amount?: number,
offer?: $ReadOnlyArray<$Values<typeof MESSAGE_OFFER>>,
color: $Values<typeof MESSAGE_COLOR>,
position: $Values<typeof MESSAGE_POSITION>,
align: $Values<typeof MESSAGE_ALIGN>,
|};
export type ButtonMessageInputs = {|
amount?: number | void,
offer?: $ReadOnlyArray<$Values<typeof MESSAGE_OFFER>> | void,
color?: $Values<typeof MESSAGE_COLOR> | void,
position?: $Values<typeof MESSAGE_POSITION> | void,
align?: $Values<typeof MESSAGE_ALIGN> | void,
|};
export type RenderButtonProps = {|
style: ButtonStyle,
locale: LocaleType,
commit: boolean,
fundingSource: ?$Values<typeof FUNDING>,
env: $Values<typeof ENV>,
stage?: string,
stageUrl?: string,
platform: $Values<typeof PLATFORM>,
fundingEligibility: FundingEligibilityType,
wallet: ?Wallet,
remembered: $ReadOnlyArray<$Values<typeof FUNDING>>,
clientID: string,
sessionID: string,
buttonSessionID: string,
nonce: string,
enableFunding?: $ReadOnlyArray<?$Values<typeof FUNDING>>,
components: $ReadOnlyArray<$Values<typeof COMPONENTS>>,
onShippingChange: ?OnShippingChange,
onShippingAddressChange: ?OnShippingAddressChange,
onShippingOptionsChange: ?OnShippingOptionsChange,
personalization: ?Personalization,
clientAccessToken: ?string,
content?: ContentType,
flow: $Values<typeof BUTTON_FLOW>,
experiment: Experiment,
vault: boolean,
userIDToken: ?string,
applePay: ApplePaySessionConfigRequest,
applePaySupport: boolean,
supportsPopups: boolean,
supportedNativeBrowser: boolean,
showPayLabel: boolean,
displayOnly?: $ReadOnlyArray<$Values<typeof DISPLAY_ONLY_VALUES>>,
message?: ButtonMessage,
messageMarkup?: string,
|};
export type PrerenderDetails = {|
win: ?CrossDomainWindowType,
fundingSource: $Values<typeof FUNDING>,
card: ?$Values<typeof CARD>,
|};
export type GetPrerenderDetails = () => PrerenderDetails | void;
export type ButtonProps = {|
fundingSource?: ?$Values<typeof FUNDING>,
intent: $Values<typeof INTENT>,
createOrder: CreateOrder,
createBillingAgreement: CreateBillingAgreement,
createSubscription: CreateSubscription,
currency: string,
disableFunding?: $ReadOnlyArray<$Values<typeof FUNDING>>,
oncancel: OnCancel,
onApprove: OnApprove,
onComplete: OnComplete,
onClick: OnClick,
getPrerenderDetails: GetPrerenderDetails,
style: ButtonStyle,
locale: LocaleType,
commit: boolean,
env: $Values<typeof ENV>,
stage?: string,
stageUrl?: string,
platform: $Values<typeof PLATFORM>,
fundingEligibility: FundingEligibilityType,
remembered: $ReadOnlyArray<$Values<typeof FUNDING>>,
remember: ($ReadOnlyArray<$Values<typeof FUNDING>>) => void,
clientID: string,
sessionID: string,
buttonLocation: string,
buttonSessionID: string,
onShippingChange: ?OnShippingChange,
onShippingAddressChange: ?OnShippingAddressChange,
onShippingOptionsChange: ?OnShippingOptionsChange,
clientAccessToken?: ?string,
nonce: string,
merchantID?: $ReadOnlyArray<string>,
merchantRequestedPopupsDisabled: ?boolean,
userIDToken: ?string,
flow: $Values<typeof BUTTON_FLOW>,
experiment: Experiment,
vault: boolean,
enableFunding?: $ReadOnlyArray<?$Values<typeof FUNDING>>,
components: $ReadOnlyArray<$Values<typeof COMPONENTS>>,
supportsPopups: boolean,
supportedNativeBrowser: boolean,
applePaySupport: boolean,
applePay: ApplePaySessionConfigRequest,
meta: {||},
renderedButtons: $ReadOnlyArray<$Values<typeof FUNDING>>,
createVaultSetupToken: CreateVaultSetupToken,
displayOnly?: $ReadOnlyArray<$Values<typeof DISPLAY_ONLY_VALUES>>,
hostedButtonId?: string,
message?: ButtonMessage,
messageMarkup?: string,
|};
// eslint-disable-next-line flowtype/require-exact-type
export type ButtonPropsInputs = {
clientID: string,
fundingSource?: ?$Values<typeof FUNDING>,
style?: ButtonStyleInputs | void,
locale?: $PropertyType<ButtonProps, "locale"> | void,
commit?: $PropertyType<ButtonProps, "commit"> | void,
env?: $PropertyType<ButtonProps, "env"> | void,
meta?: $PropertyType<ButtonProps, "meta"> | void,
stage?: $PropertyType<ButtonProps, "stage"> | void,
stageUrl?: $PropertyType<ButtonProps, "stageUrl"> | void,
platform?: $PropertyType<ButtonProps, "platform"> | void,
fundingEligibility?: $PropertyType<ButtonProps, "fundingEligibility"> | void,
remembered?: $PropertyType<ButtonProps, "remembered"> | void,
remember?: $PropertyType<ButtonProps, "remember"> | void,
sessionID?: $PropertyType<ButtonProps, "sessionID"> | void,
buttonSessionID?: $PropertyType<ButtonProps, "buttonSessionID"> | void,
nonce: string,
enableFunding?: $ReadOnlyArray<?$Values<typeof FUNDING>>,
components: $ReadOnlyArray<$Values<typeof COMPONENTS>>,
onShippingChange: ?Function,
onShippingAddressChange: ?Function,
onShippingOptionsChange: ?Function,
personalization?: Personalization,
clientAccessToken?: ?string,
wallet?: ?Wallet,
csp: {|
nonce: string,
|},
content?: ContentType,
flow?: $Values<typeof BUTTON_FLOW>,
experiment: Experiment,
vault: boolean,
userIDToken: ?string,
applePay: ApplePaySessionConfigRequest,
applePaySupport: boolean,
supportsPopups: boolean,
supportedNativeBrowser: boolean,
showPayLabel: boolean,
displayOnly: $ReadOnlyArray<$Values<typeof DISPLAY_ONLY_VALUES>>,
message?: ButtonMessageInputs | void,
messageMarkup?: string | void,
renderedButtons: $ReadOnlyArray<$Values<typeof FUNDING>>,
};
export const DEFAULT_STYLE = {
LAYOUT: BUTTON_LAYOUT.VERTICAL,
COLOR: BUTTON_COLOR.GOLD,
SHAPE: BUTTON_SHAPE.RECT,
};
export const DEFAULT_PROPS = {
LOCALE: {
country: COUNTRY.US,
lang: LANG.EN,
},
COMMIT: COMMIT.TRUE,
VAULT: VAULT.FALSE,
INTENT: INTENT.CAPTURE,
ENV: ENV.PRODUCTION,
PLATFORM: PLATFORM.DESKTOP,
};
const getDefaultButtonPropsInput = (): ButtonPropsInputs => {
return {};
};
export function normalizeButtonStyle(
props: ?ButtonPropsInputs,
style: ButtonStyleInputs
): ButtonStyle {
if (!style) {
throw new Error(`Expected props.style to be set`);
}
props = props || getDefaultButtonPropsInput();
const { fundingSource } = props;
const FUNDING_CONFIG = getFundingConfig();
const fundingConfig =
FUNDING_CONFIG[fundingSource || FUNDING.PAYPAL] ||
FUNDING_CONFIG[FUNDING.PAYPAL];
if (!fundingConfig) {
throw new Error(
`Expected ${fundingSource || FUNDING.PAYPAL} to be eligible`
);
}
let {
label,
layout = fundingSource
? BUTTON_LAYOUT.HORIZONTAL
: fundingConfig.layouts[0],
shape = fundingConfig.shapes[0],
tagline = layout === BUTTON_LAYOUT.HORIZONTAL && !fundingSource,
height,
period,
menuPlacement = MENU_PLACEMENT.BELOW,
disableMaxWidth,
borderRadius,
} = style;
// $FlowFixMe
if (tagline === "false") {
// $FlowFixMe
tagline = false;
}
// if color is a falsy value, set it to the default color from the funding config
const color = style.color ? style.color : fundingConfig.colors[0];
if (values(BUTTON_LAYOUT).indexOf(layout) === -1) {
throw new Error(`Invalid layout: ${layout}`);
}
if (label && values(BUTTON_LABEL).indexOf(label) === -1) {
throw new Error(`Invalid label: ${label}`);
}
if (color && fundingConfig.colors.indexOf(color) === -1) {
throw new Error(
`Unexpected style.color for ${
fundingSource || FUNDING.PAYPAL
} button: ${color}, expected ${fundingConfig.colors.join(", ")}`
);
}
if (shape && fundingConfig.shapes.indexOf(shape) === -1) {
throw new Error(
`Unexpected style.shape for ${
fundingSource || FUNDING.PAYPAL
} button: ${shape}, expected ${fundingConfig.shapes.join(", ")}`
);
}
if (height !== undefined) {
if (typeof height !== "number") {
throw new TypeError(
`Expected style.height to be a number, got: ${height}`
);
}
const [minHeight, maxHeight] = [
BUTTON_SIZE_STYLE[BUTTON_SIZE.SMALL].minHeight,
BUTTON_SIZE_STYLE[BUTTON_SIZE.HUGE].maxHeight,
];
if (height < minHeight || height > maxHeight) {
throw new Error(
`Expected style.height to be between ${minHeight}px and ${maxHeight}px - got ${height}px`
);
}
}
if (borderRadius !== undefined) {
if (!isBorderRadiusNumber(borderRadius)) {
throw new TypeError(
`Expected style.borderRadius to be a number, got: ${borderRadius}`
);
}
if (borderRadius < 0) {
throw new Error(
`Expected style.borderRadius to be greater than or equal to 0, got: ${borderRadius}`
);
}
}
if (layout === BUTTON_LAYOUT.VERTICAL) {
if (tagline) {
throw new Error(
`style.tagline is not allowed for ${BUTTON_LAYOUT.VERTICAL} layout`
);
}
}
return {
label,
layout,
color,
shape,
tagline,
height,
period,
menuPlacement,
disableMaxWidth,
borderRadius,
};
}
export function normalizeButtonMessage(
message: ButtonMessageInputs,
layout: $Values<typeof BUTTON_LAYOUT>,
fundingSources: $ReadOnlyArray<$Values<typeof FUNDING>>
): ButtonMessage {
const {
amount,
offer,
color = MESSAGE_COLOR.BLACK,
position,
align = MESSAGE_ALIGN.CENTER,
} = message;
if (typeof amount !== "undefined") {
if (typeof amount !== "number") {
throw new TypeError(
`Expected message.amount to be a number, got: ${amount}`
);
}
if (amount < 0) {
throw new Error(
`Expected message.amount to be a positive number, got: ${amount}`
);
}
}
if (typeof offer !== "undefined") {
if (!Array.isArray(offer)) {
throw new TypeError(
`Expected message.offer to be an array of strings, got: ${String(
offer
)}`
);
}
const invalidOffers = offer.filter(
(o) => !values(MESSAGE_OFFER).includes(o)
);
if (invalidOffers.length > 0) {
throw new Error(`Invalid offer(s): ${invalidOffers.join(",")}`);
}
}
if (typeof color !== "undefined" && !values(MESSAGE_COLOR).includes(color)) {
throw new Error(`Invalid color: ${color}`);
}
if (
typeof position !== "undefined" &&
!values(MESSAGE_POSITION).includes(position)
) {
throw new Error(`Invalid position: ${position}`);
}
if (typeof align !== "undefined" && !values(MESSAGE_ALIGN).includes(align)) {
throw new Error(`Invalid align: ${align}`);
}
return {
amount,
offer,
color,
position: calculateMessagePosition(fundingSources, layout, position),
align,
};
}
const COUNTRIES = values(COUNTRY);
const FUNDING_SOURCES = values(FUNDING);
const ENVS = values(ENV);
const PLATFORMS = values(PLATFORM);
const getDefaultStyle = (): ButtonStyleInputs => {
// $FlowFixMe
return {};
};
const getDefaultExperiment = (): Experiment => {
// $FlowFixMe
return {};
};
export function normalizeButtonProps(
props: ?ButtonPropsInputs
): RenderButtonProps {
if (!props) {
throw new Error(`Expected props`);
}
let {
clientID,
fundingSource,
style = getDefaultStyle(),
remembered = [],
locale = DEFAULT_PROPS.LOCALE,
env = DEFAULT_PROPS.ENV,
platform = DEFAULT_PROPS.PLATFORM,
commit = DEFAULT_PROPS.COMMIT,
fundingEligibility,
sessionID = uniqueID(),
buttonSessionID = uniqueID(),
enableFunding,
components = [COMPONENTS.BUTTONS],
nonce,
onShippingChange,
onShippingAddressChange,
onShippingOptionsChange,
personalization,
clientAccessToken,
content,
wallet,
flow = BUTTON_FLOW.PURCHASE,
experiment = getDefaultExperiment(),
vault,
userIDToken,
applePay,
applePaySupport = false,
supportsPopups = false,
supportedNativeBrowser = false,
showPayLabel = true,
displayOnly = [],
message,
messageMarkup,
renderedButtons,
} = props;
const { country, lang } = locale;
if (!country || COUNTRIES.indexOf(country) === -1) {
throw new Error(`Expected valid country, got ${country || "undefined"}`);
}
if (!lang || COUNTRY_LANGS[country].indexOf(lang) === -1) {
throw new Error(`Expected valid lang, got ${lang || "undefined"}`);
}
if (remembered.some((source) => FUNDING_SOURCES.indexOf(source) === -1)) {
throw new Error(
`Expected valid funding sources, got ${JSON.stringify(remembered)}`
);
}
if (ENVS.indexOf(env) === -1) {
throw new Error(`Expected valid env, got ${env || "undefined"}`);
}
if (!fundingEligibility) {
throw new Error(`Expected fundingEligibility`);
}
if (PLATFORMS.indexOf(platform) === -1) {
throw new Error(`Expected valid platform, got ${platform || "undefined"}`);
}
if (fundingSource) {
if (SUPPORTED_FUNDING_SOURCES.indexOf(fundingSource) === -1) {
throw new Error(`Invalid funding source: ${fundingSource}`);
}
if (
!isFundingEligible(fundingSource, {
platform,
fundingSource,
fundingEligibility,
enableFunding,
components,
onShippingChange,
onShippingAddressChange,
onShippingOptionsChange,
wallet,
flow,
applePaySupport,
supportsPopups,
supportedNativeBrowser,
displayOnly,
})
) {
throw new Error(`Funding Source not eligible: ${fundingSource}`);
}
}
style = normalizeButtonStyle(props, style);
const { layout } = style;
message = message
? normalizeButtonMessage(message, layout, renderedButtons)
: undefined;
return {
clientID,
fundingSource,
style,
locale,
remembered,
env,
fundingEligibility,
platform,
clientAccessToken,
buttonSessionID,
commit,
sessionID,
nonce,
enableFunding,
components,
onShippingChange,
onShippingAddressChange,
onShippingOptionsChange,
personalization,
content,
wallet,
flow,
experiment,
vault,
userIDToken,
applePay,
applePaySupport,
supportsPopups,
supportedNativeBrowser,
showPayLabel,
displayOnly,
message,
messageMarkup,
};
}