@momo-kits/native-kits 0.163.1-beta.2 → 0.163.1-beta.3-debug

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.
Files changed (136) hide show
  1. package/build.gradle.kts +11 -0
  2. package/compose/build.gradle.kts +189 -0
  3. package/compose/build.gradle.kts.backup +189 -0
  4. package/compose/compose.podspec +47 -0
  5. package/compose/src/androidMain/kotlin/vn/momo/kits/navigation/ScrollToTop.android.kt +6 -0
  6. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +123 -0
  7. package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
  8. package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
  9. package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
  10. package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
  11. package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
  12. package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
  13. package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
  14. package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
  15. package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
  16. package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
  17. package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
  18. package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
  19. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
  20. package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
  21. package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +52 -0
  22. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +108 -0
  23. package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +183 -0
  24. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +207 -0
  25. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +39 -0
  26. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
  27. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
  28. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
  29. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +294 -0
  30. package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
  31. package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +826 -0
  32. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
  33. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +107 -0
  34. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +378 -0
  35. package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
  36. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Avatar.kt +157 -0
  37. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +82 -0
  38. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
  39. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +338 -0
  40. package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +175 -0
  41. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +354 -0
  42. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +113 -0
  43. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +89 -0
  44. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +128 -0
  45. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +209 -0
  46. package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -0
  47. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
  48. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
  49. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +140 -0
  50. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +188 -0
  51. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +112 -0
  52. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +477 -0
  53. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +114 -0
  54. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +214 -0
  55. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +240 -0
  56. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +216 -0
  57. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +259 -0
  58. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +180 -0
  59. package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +343 -0
  60. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Loader.kt +108 -0
  61. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
  62. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
  63. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +84 -0
  64. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
  65. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +328 -0
  66. package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +97 -0
  67. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +310 -0
  68. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +59 -0
  69. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Rating.kt +87 -0
  70. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +134 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +269 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +253 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +94 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +175 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +360 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
  108. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +557 -0
  109. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +155 -0
  110. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +223 -0
  111. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  112. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
  113. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +319 -0
  114. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
  115. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
  116. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
  117. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
  118. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
  119. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +128 -0
  120. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +70 -0
  121. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +58 -0
  122. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  123. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
  124. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
  125. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
  126. package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
  127. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +184 -0
  128. package/gradle/libs.versions.toml +67 -0
  129. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  130. package/gradle/wrapper/gradle-wrapper.properties +8 -0
  131. package/gradle.properties +26 -0
  132. package/gradlew +252 -0
  133. package/gradlew.bat +94 -0
  134. package/local.properties +8 -0
  135. package/package.json +1 -1
  136. package/settings.gradle.kts +64 -0
@@ -0,0 +1,354 @@
1
+ package vn.momo.kits.components
2
+
3
+ import vn.momo.kits.modifier.InternalApi
4
+
5
+ import androidx.compose.animation.core.animateDpAsState
6
+ import androidx.compose.animation.core.animateFloatAsState
7
+ import androidx.compose.animation.core.tween
8
+ import androidx.compose.foundation.background
9
+ import androidx.compose.foundation.border
10
+ import androidx.compose.foundation.clickable
11
+ import androidx.compose.foundation.interaction.MutableInteractionSource
12
+ import androidx.compose.foundation.interaction.collectIsPressedAsState
13
+ import androidx.compose.foundation.layout.*
14
+ import androidx.compose.foundation.shape.RoundedCornerShape
15
+ import androidx.compose.runtime.Composable
16
+ import androidx.compose.runtime.getValue
17
+ import androidx.compose.runtime.remember
18
+ import androidx.compose.ui.Alignment
19
+ import androidx.compose.ui.Modifier
20
+ import androidx.compose.ui.draw.alpha
21
+ import androidx.compose.ui.draw.clip
22
+ import androidx.compose.ui.graphics.Color
23
+ import androidx.compose.ui.text.TextStyle
24
+ import androidx.compose.ui.text.style.TextOverflow
25
+ import androidx.compose.ui.unit.Dp
26
+ import androidx.compose.ui.unit.dp
27
+ import vn.momo.kits.application.IsShowBaseLineDebug
28
+ import vn.momo.kits.const.*
29
+ import vn.momo.kits.modifier.conditional
30
+ import vn.momo.kits.platform.LottieAnimation
31
+
32
+ enum class ButtonType {
33
+ PRIMARY,
34
+ SECONDARY,
35
+ TONAL,
36
+ OUTLINE,
37
+ DANGER,
38
+ TEXT,
39
+ DISABLED
40
+ }
41
+
42
+ data class ButtonSpecs(
43
+ val height: Dp,
44
+ val radius: Dp,
45
+ val padding: Dp,
46
+ val width: Dp,
47
+ )
48
+
49
+ enum class Size(val value: ButtonSpecs) {
50
+ LARGE(
51
+ ButtonSpecs(
52
+ height = 48.dp,
53
+ radius = Radius.S,
54
+ padding = Spacing.L,
55
+ width = 128.dp
56
+ )
57
+ ),
58
+ MEDIUM(
59
+ ButtonSpecs(
60
+ height = 36.dp,
61
+ radius = Radius.S,
62
+ padding = Spacing.M,
63
+ width = 80.dp
64
+ )
65
+ ),
66
+ SMALL(
67
+ ButtonSpecs(
68
+ height = 28.dp,
69
+ radius = Radius.S,
70
+ padding = Spacing.S,
71
+ width = 60.dp
72
+ )
73
+ )
74
+ }
75
+
76
+ private val styleCache = mapOf(
77
+ Size.LARGE to Typography.actionDefaultBold,
78
+ Size.MEDIUM to Typography.actionSBold,
79
+ Size.SMALL to Typography.actionXsBold
80
+ )
81
+
82
+ private val iconSizeCache = mapOf(
83
+ Size.LARGE to 24.dp,
84
+ Size.MEDIUM to 16.dp,
85
+ Size.SMALL to 16.dp
86
+ )
87
+
88
+ private val iconSpaceCache = mapOf(
89
+ Size.SMALL to Spacing.XS,
90
+ Size.MEDIUM to Spacing.S,
91
+ Size.LARGE to Spacing.S
92
+ )
93
+
94
+ private fun getStyle(size: Size): TextStyle {
95
+ return styleCache[size] ?: Typography.actionDefaultBold
96
+ }
97
+
98
+ private fun getIconSize(size: Size): Dp = iconSizeCache[size] ?: 24.dp
99
+ private fun getIconSpace(size: Size): Dp = iconSpaceCache[size] ?: Spacing.S
100
+
101
+ @Composable
102
+ internal fun getTextColor(loading: Boolean, type: ButtonType): Color {
103
+ val theme = AppTheme.current
104
+
105
+ return remember(type, theme, loading) {
106
+ getButtonColor(type, theme).withLoading(loading)
107
+ }
108
+ }
109
+
110
+ internal fun getButtonColor(type: ButtonType, theme: Theme): Color {
111
+ return when (type) {
112
+ ButtonType.DISABLED -> theme.colors.text.disable
113
+ ButtonType.PRIMARY -> Colors.black_01
114
+ ButtonType.SECONDARY -> theme.colors.text.default
115
+ ButtonType.OUTLINE -> theme.colors.primary
116
+ ButtonType.TONAL -> theme.colors.primary
117
+ ButtonType.DANGER -> Colors.black_01
118
+ ButtonType.TEXT -> theme.colors.primary
119
+ }
120
+ }
121
+
122
+
123
+ @Composable
124
+ internal fun RenderTitle(size: Size, title: String = "", textColor: Color) {
125
+ val style = remember(size) { getStyle(size) }
126
+ Text(
127
+ style = style,
128
+ text = title,
129
+ color = textColor,
130
+ overflow = TextOverflow.Ellipsis,
131
+ maxLines = 1
132
+ )
133
+ }
134
+
135
+ @Composable
136
+ @InternalApi
137
+ fun RenderIcon(
138
+ size: Size,
139
+ isIconLeft: Boolean,
140
+ useTintColor: Boolean = true,
141
+ icon: String = "",
142
+ forceLoading: Boolean = false,
143
+ bgColor: Color? = null,
144
+ textColor: Color? = null,
145
+ ) {
146
+ val iconSize = remember(size) { getIconSize(size) }
147
+ val margin = remember(size) { getIconSpace(size) }
148
+ val color = if (useTintColor) textColor else Color.Unspecified
149
+
150
+ val modifier = Modifier.padding(
151
+ start = if (isIconLeft) 0.dp else margin,
152
+ end = if (isIconLeft) margin else 0.dp
153
+ )
154
+
155
+ if (forceLoading) {
156
+ Box(modifier) {
157
+ LottieAnimation(
158
+ modifier = Modifier.size(iconSize),
159
+ bgColor = bgColor,
160
+ tintColor = color,
161
+ path = "files/lottie_circle_loader"
162
+ )
163
+ }
164
+ } else if (icon.isNotEmpty()) {
165
+ Icon(
166
+ source = icon,
167
+ color = color,
168
+ size = iconSize,
169
+ modifier = modifier
170
+ )
171
+ }
172
+ }
173
+
174
+ private fun shouldLoadingOnLeft(iconLeft: String, iconRight: String): Boolean {
175
+ val hasLeft = iconLeft.isNotEmpty()
176
+ val hasRight = iconRight.isNotEmpty()
177
+ return when {
178
+ !hasLeft && !hasRight -> true
179
+ hasLeft && !hasRight -> true
180
+ !hasLeft && hasRight -> false
181
+ hasLeft && hasRight -> false
182
+ else -> true
183
+ }
184
+ }
185
+
186
+ @Composable
187
+ internal fun getTypeStyle(
188
+ type: ButtonType,
189
+ color: Color? = AppTheme.current.colors.primary,
190
+ size: Size,
191
+ bgColor: Color,
192
+ ): Modifier {
193
+ val theme = AppTheme.current
194
+ val radius = remember(size) { size.value.radius }
195
+ val modifier = Modifier.background(bgColor)
196
+
197
+ return remember(type, color, theme, radius, bgColor) {
198
+ when (type) {
199
+ ButtonType.DISABLED -> modifier
200
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
201
+
202
+ ButtonType.PRIMARY -> modifier
203
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
204
+
205
+ ButtonType.SECONDARY -> modifier
206
+ .border(1.dp, theme.colors.border.default, RoundedCornerShape(radius))
207
+
208
+ ButtonType.OUTLINE -> modifier
209
+ .border(1.dp, color ?: theme.colors.primary, RoundedCornerShape(radius))
210
+
211
+ ButtonType.TONAL -> modifier
212
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
213
+
214
+ ButtonType.DANGER -> modifier
215
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
216
+
217
+ ButtonType.TEXT -> modifier
218
+ }
219
+ }
220
+ }
221
+
222
+ @Composable
223
+ internal fun getButtonBackgroundColor(
224
+ loading: Boolean,
225
+ type: ButtonType
226
+ ): Color {
227
+ val theme = AppTheme.current
228
+
229
+ return remember(loading, type, theme) {
230
+ when (type) {
231
+ ButtonType.DISABLED -> theme.colors.background.disable.withLoading(loading)
232
+ ButtonType.PRIMARY -> theme.colors.primary.withLoading(loading)
233
+ ButtonType.SECONDARY -> theme.colors.background.surface.withLoading(loading)
234
+ ButtonType.OUTLINE -> theme.colors.background.surface.withLoading(loading)
235
+ ButtonType.TONAL -> theme.colors.background.tonal.withLoading(loading)
236
+ ButtonType.DANGER -> theme.colors.error.primary.withLoading(loading)
237
+ ButtonType.TEXT -> Color.Unspecified
238
+ }
239
+ }
240
+ }
241
+
242
+ private fun Color.withLoading(loading: Boolean): Color =
243
+ this.copy(alpha = if (loading) 0.75f else 1f)
244
+
245
+ @Composable
246
+ fun Button(
247
+ onClick: () -> Unit,
248
+ type: ButtonType = ButtonType.PRIMARY,
249
+ size: Size = Size.LARGE,
250
+ iconRight: String = "",
251
+ iconLeft: String = "",
252
+ title: String = "Button",
253
+ loading: Boolean = false,
254
+ useTintColor: Boolean = true,
255
+ isFull: Boolean = true,
256
+ modifier: Modifier = Modifier,
257
+ ) {
258
+ val radius = remember(size) { size.value.radius }
259
+ val isEnabled = remember(type) { type != ButtonType.DISABLED }
260
+ val loadingOnLeft = remember(iconLeft, iconRight) {
261
+ shouldLoadingOnLeft(iconLeft, iconRight)
262
+ }
263
+
264
+ val sizeSpecs = remember(size) { size.value }
265
+
266
+ val interactionSource = remember { MutableInteractionSource() }
267
+ val isPressed by interactionSource.collectIsPressedAsState()
268
+
269
+ val animatedPadding by animateDpAsState(
270
+ targetValue = if (isPressed && isEnabled && !loading) 2.dp else 0.dp,
271
+ animationSpec = tween(100),
272
+ label = "pressPadding"
273
+ )
274
+
275
+ val targetAlpha = if (isPressed && isEnabled && !loading) 0.5f else 1f
276
+ val alpha by animateFloatAsState(
277
+ targetValue = targetAlpha,
278
+ animationSpec = tween(100),
279
+ label = "buttonPressAlpha"
280
+ )
281
+
282
+ val clickableModifier =
283
+ if (isEnabled && !loading) {
284
+ modifier
285
+ .clip(RoundedCornerShape(radius))
286
+ .clickable(
287
+ enabled = isEnabled && !loading,
288
+ interactionSource = interactionSource,
289
+ indication = null,
290
+ onClick = onClick
291
+ )
292
+ .alpha(alpha)
293
+ } else {
294
+ modifier
295
+ .clip(RoundedCornerShape(radius))
296
+ }
297
+
298
+ val bgColor = getButtonBackgroundColor(loading, type)
299
+ val textColor = getTextColor(loading, type)
300
+
301
+ val rootModifier = if (isFull) {
302
+ Modifier
303
+ .fillMaxWidth()
304
+ .wrapContentHeight()
305
+ } else {
306
+ Modifier
307
+ }
308
+
309
+ Box(
310
+ modifier = rootModifier.then(clickableModifier),
311
+ contentAlignment = Alignment.Center
312
+ ) {
313
+ // Visual background (shrinks on press)
314
+ Box(
315
+ modifier = Modifier
316
+ .matchParentSize()
317
+ .padding(horizontal = animatedPadding)
318
+ .clip(RoundedCornerShape(radius))
319
+ .then(getTypeStyle(type, size = size, bgColor = bgColor))
320
+ .conditional(IsShowBaseLineDebug) {
321
+ border(1.dp, Colors.blue_03)
322
+ }
323
+ )
324
+
325
+ // Content
326
+ Row(
327
+ modifier = Modifier
328
+ .padding(horizontal = sizeSpecs.padding)
329
+ .height(sizeSpecs.height),
330
+ horizontalArrangement = Arrangement.Center,
331
+ verticalAlignment = Alignment.CenterVertically,
332
+ ) {
333
+ RenderIcon(
334
+ size = size,
335
+ isIconLeft = true,
336
+ useTintColor = useTintColor,
337
+ icon = iconLeft,
338
+ forceLoading = loading && loadingOnLeft,
339
+ bgColor = bgColor,
340
+ textColor = textColor
341
+ )
342
+ RenderTitle(size, title, textColor = textColor)
343
+ RenderIcon(
344
+ size = size,
345
+ isIconLeft = false,
346
+ useTintColor = useTintColor,
347
+ icon = iconRight,
348
+ forceLoading = loading && !loadingOnLeft,
349
+ bgColor = bgColor,
350
+ textColor = textColor
351
+ )
352
+ }
353
+ }
354
+ }
@@ -0,0 +1,113 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.animation.core.animateFloatAsState
4
+ import androidx.compose.animation.core.tween
5
+ import androidx.compose.foundation.border
6
+ import androidx.compose.foundation.layout.Box
7
+ import androidx.compose.foundation.layout.PaddingValues
8
+ import androidx.compose.foundation.layout.fillMaxWidth
9
+ import androidx.compose.foundation.pager.HorizontalPager
10
+ import androidx.compose.foundation.pager.rememberPagerState
11
+ import androidx.compose.runtime.*
12
+ import androidx.compose.ui.Modifier
13
+ import androidx.compose.ui.graphics.graphicsLayer
14
+ import androidx.compose.ui.unit.dp
15
+ import kotlinx.coroutines.delay
16
+ import kotlinx.coroutines.isActive
17
+ import vn.momo.kits.application.IsShowBaseLineDebug
18
+ import vn.momo.kits.const.Colors
19
+ import vn.momo.kits.modifier.conditional
20
+ import kotlin.math.absoluteValue
21
+ import kotlin.time.Duration.Companion.milliseconds
22
+
23
+ @Composable
24
+ fun Carousel(
25
+ itemCount: Int,
26
+ modifier: Modifier = Modifier,
27
+ loop: Boolean = false,
28
+ autoplay: Boolean = false,
29
+ autoplayInterval: Long = 3000L,
30
+ scrollEnabled: Boolean = true,
31
+ inactiveSlideOpacity: Float = 1f,
32
+ inactiveSlideScale: Float = 1f,
33
+ contentPadding: PaddingValues = PaddingValues(0.dp),
34
+ onSnapToItem: (Int) -> Unit = {},
35
+ onScrollIndexChanged: (Int) -> Unit = {},
36
+ content: @Composable (index: Int) -> Unit,
37
+ ) {
38
+ if (itemCount <= 0) return
39
+
40
+ val virtualPageCount = if (loop) itemCount * 1000 else itemCount
41
+ val startPage = if (loop) (virtualPageCount / 2) - ((virtualPageCount / 2) % itemCount) else 0
42
+
43
+ val pagerState = rememberPagerState(initialPage = startPage) { virtualPageCount }
44
+
45
+ val realIndex: (Int) -> Int = { page -> page % itemCount }
46
+
47
+ var isUserScrolling by remember { mutableStateOf(false) }
48
+
49
+ if (autoplay && itemCount > 1) {
50
+ LaunchedEffect(autoplayInterval, isUserScrolling) {
51
+ if (isUserScrolling) return@LaunchedEffect
52
+ while (isActive) {
53
+ delay(autoplayInterval.milliseconds)
54
+ if (!isUserScrolling) {
55
+ val nextPage = pagerState.currentPage + 1
56
+ if (nextPage < virtualPageCount) {
57
+ pagerState.animateScrollToPage(nextPage)
58
+ }
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ LaunchedEffect(pagerState) {
65
+ snapshotFlow { pagerState.isScrollInProgress }.collect { scrolling ->
66
+ isUserScrolling = scrolling
67
+ }
68
+ }
69
+
70
+ LaunchedEffect(pagerState) {
71
+ snapshotFlow { pagerState.currentPage }.collect { page ->
72
+ val real = realIndex(page)
73
+ onSnapToItem(real)
74
+ onScrollIndexChanged(real)
75
+ }
76
+ }
77
+
78
+ HorizontalPager(
79
+ state = pagerState,
80
+ modifier = modifier
81
+ .fillMaxWidth()
82
+ .conditional(IsShowBaseLineDebug) { border(1.dp, Colors.blue_03) },
83
+ contentPadding = contentPadding,
84
+ userScrollEnabled = scrollEnabled,
85
+ beyondViewportPageCount = if (loop) 1 else 0,
86
+ ) { page ->
87
+ val real = realIndex(page)
88
+
89
+ val pageOffset = ((pagerState.currentPage - page) + pagerState.currentPageOffsetFraction).absoluteValue
90
+
91
+ val scale by animateFloatAsState(
92
+ targetValue = if (pageOffset < 0.5f) 1f else inactiveSlideScale,
93
+ animationSpec = tween(150),
94
+ label = "carouselScale"
95
+ )
96
+ val alpha by animateFloatAsState(
97
+ targetValue = if (pageOffset < 0.5f) 1f else inactiveSlideOpacity,
98
+ animationSpec = tween(150),
99
+ label = "carouselAlpha"
100
+ )
101
+
102
+ Box(
103
+ modifier = Modifier
104
+ .graphicsLayer {
105
+ scaleX = scale
106
+ scaleY = scale
107
+ this.alpha = alpha
108
+ }
109
+ ) {
110
+ content(real)
111
+ }
112
+ }
113
+ }
@@ -0,0 +1,89 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.foundation.background
4
+ import androidx.compose.foundation.border
5
+ import androidx.compose.foundation.layout.Box
6
+ import androidx.compose.foundation.layout.Row
7
+ import androidx.compose.foundation.layout.Spacer
8
+ import androidx.compose.foundation.layout.size
9
+ import androidx.compose.foundation.shape.RoundedCornerShape
10
+ import androidx.compose.runtime.Composable
11
+ import androidx.compose.runtime.remember
12
+ import androidx.compose.ui.Alignment
13
+ import androidx.compose.ui.Modifier
14
+ import androidx.compose.ui.graphics.Color
15
+ import androidx.compose.ui.unit.dp
16
+ import vn.momo.kits.application.IsShowBaseLineDebug
17
+ import vn.momo.kits.const.AppTheme
18
+ import vn.momo.kits.const.Colors
19
+ import vn.momo.kits.const.Radius
20
+ import vn.momo.kits.const.Spacing
21
+ import vn.momo.kits.const.Typography
22
+ import vn.momo.kits.modifier.activeOpacityClickable
23
+ import vn.momo.kits.modifier.conditional
24
+
25
+ private val checkboxShape = RoundedCornerShape(Radius.XS)
26
+
27
+ @Composable
28
+ fun CheckBox(
29
+ disabled: Boolean = false,
30
+ checked: Boolean = false,
31
+ onCheckedChange: (Boolean) -> Unit,
32
+ indeterminate: Boolean = false,
33
+ title: String = "",
34
+ ) {
35
+ val theme = AppTheme.current
36
+
37
+ val colors = remember(checked, disabled, theme) {
38
+ when {
39
+ disabled && checked -> Pair(theme.colors.background.tonal, theme.colors.background.tonal)
40
+ disabled -> Pair(theme.colors.border.disable, Color.Transparent)
41
+ checked -> Pair(theme.colors.primary, theme.colors.primary)
42
+ else -> Pair(theme.colors.text.default, Color.Transparent)
43
+ }
44
+ }
45
+
46
+ val (borderColor, backgroundColor) = colors
47
+
48
+ val iconSource = remember(indeterminate) {
49
+ if (indeterminate) "navigation_minus" else "ic_checked"
50
+ }
51
+
52
+ val onClickHandler = remember(onCheckedChange, checked) {
53
+ { onCheckedChange(!checked) }
54
+ }
55
+
56
+ Row(verticalAlignment = Alignment.CenterVertically) {
57
+ Box(
58
+ modifier = Modifier
59
+ .size(20.dp)
60
+ .background(backgroundColor, checkboxShape)
61
+ .border(Spacing.XXS, borderColor, checkboxShape)
62
+ .conditional(IsShowBaseLineDebug) {
63
+ border(1.dp, Colors.blue_03)
64
+ }
65
+ .activeOpacityClickable(
66
+ activeOpacity = 0.8f,
67
+ onClick = onClickHandler,
68
+ enabled = !disabled,
69
+ ),
70
+ ) {
71
+ if (checked) {
72
+ Icon(
73
+ source = iconSource,
74
+ size = 20.dp,
75
+ color = Colors.black_01
76
+ )
77
+ }
78
+ }
79
+
80
+ if (title.isNotEmpty()) {
81
+ Spacer(Modifier.size(Spacing.S))
82
+ Text(
83
+ style = Typography.descriptionDefaultRegular,
84
+ text = title,
85
+ )
86
+ }
87
+ }
88
+
89
+ }
@@ -0,0 +1,128 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.foundation.background
4
+ import androidx.compose.foundation.border
5
+ import androidx.compose.foundation.layout.*
6
+ import androidx.compose.foundation.shape.RoundedCornerShape
7
+ import androidx.compose.runtime.Composable
8
+ import androidx.compose.runtime.Immutable
9
+ import androidx.compose.ui.Alignment
10
+ import androidx.compose.ui.Modifier
11
+ import androidx.compose.ui.draw.clip
12
+ import androidx.compose.ui.graphics.Color
13
+ import androidx.compose.ui.text.style.TextAlign
14
+ import androidx.compose.ui.text.style.TextOverflow
15
+ import androidx.compose.ui.unit.dp
16
+ import vn.momo.kits.application.IsShowBaseLineDebug
17
+ import vn.momo.kits.const.*
18
+ import vn.momo.kits.modifier.activeOpacityClickable
19
+ import vn.momo.kits.modifier.conditional
20
+ import vn.momo.kits.modifier.setAutomationId
21
+
22
+ @Composable
23
+ fun Chip(
24
+ modifier: Modifier = Modifier,
25
+ label: String? = "Label",
26
+ iconLeft: String? = null,
27
+ iconRight: String? = null,
28
+ selected: Boolean = false,
29
+ onClick: () -> Unit = {},
30
+ size: ChipSize = ChipSize.LARGE,
31
+ iconLeftTint: Color? = null,
32
+ iconRightTint: Color? = null,
33
+ backgroundColor: Color? = null,
34
+ accessibilityLabel: String? = null,
35
+ ) {
36
+ val theme = AppTheme.current
37
+ val bg = when {
38
+ selected -> theme.colors.background.selected
39
+ backgroundColor != null -> backgroundColor
40
+ else -> Colors.black_03
41
+ }
42
+
43
+ val textColor = if (selected) theme.colors.primary else theme.colors.text.default
44
+ val leftTint = if (selected) theme.colors.primary else iconLeftTint ?: theme.colors.text.default
45
+ val rightTint = if (selected) theme.colors.primary else iconRightTint ?: theme.colors.text.default
46
+
47
+ val dims = when (size) {
48
+ ChipSize.SMALL -> ChipDefaults.Small
49
+ ChipSize.LARGE -> ChipDefaults.Large
50
+ }
51
+
52
+ val (height, horizontal, iconSize, iconSpacing) =
53
+ listOf(scaleSize(dims.height), scaleSize(dims.horizontal), scaleSize(dims.iconSize), scaleSize(dims.iconSpacing))
54
+
55
+ val radius = scaleSize(Radius.L)
56
+
57
+ Row(
58
+ modifier
59
+ .wrapContentWidth()
60
+ .height(height.dp)
61
+ .clip(RoundedCornerShape(radius))
62
+ .background(bg)
63
+ .conditional(selected) {
64
+ Modifier.border(width = 2.dp, color = theme.colors.secondary, shape = RoundedCornerShape(radius))
65
+ }
66
+ .conditional(IsShowBaseLineDebug) {
67
+ border(1.dp, Colors.blue_03)
68
+ }
69
+ .activeOpacityClickable {
70
+ onClick()
71
+ }
72
+ .padding(horizontal = horizontal.dp)
73
+ .conditional(accessibilityLabel != null) {
74
+ setAutomationId(accessibilityLabel.toString())
75
+ },
76
+ verticalAlignment = Alignment.CenterVertically,
77
+ horizontalArrangement = Arrangement.spacedBy(iconSpacing.dp)
78
+ ) {
79
+ if (iconLeft != null) {
80
+ Icon(source = iconLeft, size = dims.iconSize.dp, color = leftTint)
81
+ }
82
+
83
+ if (!label.isNullOrEmpty()) {
84
+ Text(
85
+ text = label,
86
+ textAlign = TextAlign.Center,
87
+ color = textColor,
88
+ style = when (size) {
89
+ ChipSize.SMALL -> Typography.labelSMedium
90
+ ChipSize.LARGE -> Typography.labelDefaultMedium
91
+ },
92
+ maxLines = 1,
93
+ overflow = TextOverflow.Ellipsis,
94
+ modifier = Modifier.weight(1f, fill = false),
95
+ )
96
+ }
97
+
98
+ if (iconRight != null) {
99
+ Icon(source = iconRight, size = iconSize.dp, color = rightTint)
100
+ }
101
+ }
102
+ }
103
+
104
+ enum class ChipSize { SMALL, LARGE }
105
+
106
+ private object ChipDefaults {
107
+ @Immutable
108
+ data class Dimensions(
109
+ val height: Float,
110
+ val horizontal: Float,
111
+ val iconSize: Float,
112
+ val iconSpacing: Float,
113
+ )
114
+
115
+ val Large = Dimensions(
116
+ height = 32f,
117
+ horizontal = 12f,
118
+ iconSize = 20f,
119
+ iconSpacing = 4f,
120
+ )
121
+
122
+ val Small = Dimensions(
123
+ height = 24f,
124
+ horizontal = 10f,
125
+ iconSize = 16f,
126
+ iconSpacing = 4f,
127
+ )
128
+ }