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
176open ReactNative
open Style
module GiftCardComponent = {
@react.component
let make = React.memo((
~giftCardArr: array<AccountPaymentMethodType.payment_method_type>,
~setContentHeight,
) => {
let (selectedGiftCardType, setSelectedGiftCardType) = React.useState(() =>
giftCardArr
->Array.get(0)
->Option.map(payment_method_type => payment_method_type.payment_method_type)
)
let items = giftCardArr->Array.map(payment_method_type => {
SdkTypes.label: payment_method_type.payment_method_type->CommonUtils.getDisplayName,
value: payment_method_type.payment_method_type,
icon: payment_method_type.payment_method_type->CommonUtils.getDisplayName,
})
let {formDataRef, getRequiredFieldsForTabs, country, _} = React.useContext(
DynamicFieldsContext.dynamicFieldsContext,
)
let (formData, setFormData) = React.useState(_ => Dict.make())
let setFormData = React.useCallback1(data => {
formDataRef->Option.map(ref => ref.current = data)->ignore
setFormData(_ => data)
}, [setFormData])
let (_isFormValid, setIsFormValid) = React.useState(_ => false)
let setIsFormValid = React.useCallback1(isValid => {
setIsFormValid(_ => isValid)
}, [setIsFormValid])
let (_formMethods, setFormMethods) = React.useState(_ => None)
let setFormMethods = React.useCallback1(formSubmit => {
setFormMethods(_ => formSubmit)
}, [setFormMethods])
let (requiredFields, initialValues, _, enabledCardSchemes, accessible) = React.useMemo3(_ => {
switch selectedGiftCardType {
| Some(selectedGiftCardType) =>
switch giftCardArr->Array.find(
payment_method_type => payment_method_type.payment_method_type === selectedGiftCardType,
) {
| Some(data) => getRequiredFieldsForTabs(data, formData, true)
| None => ([], Dict.make(), false, [], true)
}
| None => ([], Dict.make(), false, [], true)
}
}, (selectedGiftCardType, getRequiredFieldsForTabs, country))
<View
style={s({position: #absolute, width: 100.->pct, paddingHorizontal: 2.->dp})}
onLayout={(event: Event.layoutEvent) => {
let height = event.nativeEvent.layout.height
setContentHeight(_ => height)
}}
>
<Space height=30. />
<CustomPicker
value=selectedGiftCardType
setValue=setSelectedGiftCardType
placeholderText="Gift Card"
items
onFocus={() => ()}
onBlur={() => ()}
animate=false
/>
<Space />
<DynamicFields
fields=requiredFields
initialValues
setFormData
setIsFormValid
setFormMethods
isGiftCardPayment=true
enabledCardSchemes
accessible
/>
</View>
})
}
@react.component
let make = (~isLoading, ~giftCardArr, ~style=empty) => {
let (expandGiftCard, setExpandGiftCard) = React.useState(_ => false)
let {
component,
borderRadius,
bgColor,
borderWidth,
shadowColor,
shadowIntensity,
} = ThemebasedStyle.useThemeBasedStyle()
let getShadowStyle = ShadowHook.useGetShadowStyle(~shadowIntensity, ~shadowColor, ())
let (contentHeight, setContentHeight) = React.useState(_ => 0.)
let animatedHeight = React.useRef(Animated.Value.create(0.))
React.useEffect2(() => {
let toValue = (expandGiftCard ? contentHeight : 0.)->Animated.Value.Timing.fromRawValue
Animated.timing(
animatedHeight.current,
{
toValue,
duration: 300.,
useNativeDriver: false,
easing: Easing.ease,
},
)->Animated.start
None
}, (expandGiftCard, contentHeight))
{
!isLoading && giftCardArr->Array.length === 0
? React.null
: <>
<Space />
{isLoading
? <CustomLoader />
: <View
style={array([
bgColor,
getShadowStyle,
s({
backgroundColor: component.background,
borderWidth,
borderColor: component.borderColor,
padding: 20.->dp,
borderRadius,
}),
style,
])}
>
<CustomPressable
onPress={_ => setExpandGiftCard(v => !v)}
style={s({
flexDirection: #row,
alignItems: #center,
justifyContent: #"space-between",
})}
>
<View
style={s({
flexDirection: #row,
alignItems: #center,
justifyContent: #center,
textAlign: #center,
})}
>
<Icon name="gift" width=22. height=22. />
<Space width=10. />
<TextWrapper text="Have a gift card?" textType=TextWrapper.Subheading />
</View>
<Icon name="chevron" width=14. height=14. fill="#525866" />
</CustomPressable>
<Animated.View
style={s({
height: animatedHeight.current->Animated.StyleProp.size,
overflow: #hidden,
})}
>
<GiftCardComponent giftCardArr setContentHeight />
</Animated.View>
</View>}
</>
}
}