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
184open ReactNative
open Style
type buttonState = Normal | LoadingButton | Completed | Disabled
type buttonType = Primary
type iconType = CustomIcon(React.element) | NoIcon
@react.component
let make = (
~loadingText="Loading..",
~buttonState: buttonState=Normal,
~text=?,
~buttonType: buttonType=Primary,
~leftIcon: iconType=NoIcon,
~rightIcon: iconType=NoIcon,
~onPress,
~backgroundColor=?,
~borderWidth=0.,
~borderRadius=0.,
~borderColor="#ffffff",
~children=None,
~testID=?,
) => {
let fillAnimation = AnimatedValue.useAnimatedValue(0.)
let {
payNowButtonColor,
payNowButtonTextColor,
payNowButtonShadowColor,
payNowButtonShadowIntensity,
component,
primaryButtonHeight,
} = ThemebasedStyle.useThemeBasedStyle()
let getShadowStyle = ShadowHook.useGetShadowStyle(
~shadowIntensity=payNowButtonShadowIntensity,
~shadowColor=payNowButtonShadowColor,
(),
)
let _buttonColor = switch buttonState {
| Normal => ("#0048a0", "#0570de")
| LoadingButton => ("#0048a0", "#0570de")
| Completed => ("#0048a0", "#0570de")
| Disabled => ("#808080", "#808080")
}
let disabled = switch buttonState {
| Normal => false
| _ => true
}
let loaderIconColor = switch buttonType {
| Primary => Some(payNowButtonTextColor)
}
let fillStyle = s({
position: #absolute,
top: 0.->dp,
bottom: 0.->dp,
right: 0.->dp,
opacity: 0.4,
backgroundColor: {component.background},
})
let widthStyle = s({
width: Animated.Interpolation.interpolate(
fillAnimation,
{
inputRange: [0.0, 1.0],
outputRange: ["95%", "0%"]->Animated.Interpolation.fromStringArray,
},
)->Animated.StyleProp.size,
})
let fillButton = () => {
Animated.timing(
fillAnimation,
{
toValue: 1.0->Animated.Value.Timing.fromRawValue,
duration: 1800.0,
useNativeDriver: false,
},
)->Animated.start
}
<CustomPressable
disabled
testID={testID->Option.getOr("")}
style={array([
s({
height: primaryButtonHeight->dp,
width: 100.->pct,
borderRadius,
borderWidth,
borderColor,
backgroundColor: ?(
children->Option.isNone ? Some(backgroundColor->Option.getOr(payNowButtonColor)) : None
),
overflow: #hidden,
}),
])}
onPress={ev => {
Keyboard.dismiss()
onPress(ev)
}}
>
<View
style={array([
getShadowStyle,
s({
width: 100.->pct,
height: 100.->pct,
flexDirection: #row,
}),
])}
pointerEvents={Platform.os === #web ? #auto : #none}
>
{switch children {
| Some(child) => child
| _ =>
<>
<UIUtils.RenderIf condition={buttonState == LoadingButton}>
{
fillButton()
<Animated.View style={array([fillStyle, widthStyle])} />
}
</UIUtils.RenderIf>
{switch text {
| Some(textStr) if textStr !== "" =>
<View
style={s({
flex: 1.,
flexDirection: #row,
alignItems: #center,
justifyContent: #center,
gap: 12.->dp,
})}
>
{switch leftIcon {
| CustomIcon(element) => element
| NoIcon => React.null
}}
<TextWrapper
text={switch buttonState {
| LoadingButton => loadingText
| Completed => "Complete"
| _ => textStr
}}
// textType=CardText
textType={ButtonTextBold}
/>
{switch rightIcon {
| CustomIcon(element) => element
| NoIcon => React.null
}}
</View>
| _ =>
<View
style={s({
flex: 1.,
flexDirection: #row,
alignItems: #center,
justifyContent: #center,
gap: 12.->dp,
})}
>
{switch leftIcon {
| CustomIcon(element) => element
| NoIcon => React.null
}}
{switch rightIcon {
| CustomIcon(element) => element
| NoIcon => React.null
}}
</View>
}}
<UIUtils.RenderIf condition={buttonState == LoadingButton || buttonState == Completed}>
<Loadericon iconColor=?loaderIconColor />
</UIUtils.RenderIf>
</>
}}
</View>
</CustomPressable>
}