@momo-kits/native-kits 0.162.15 → 0.162.16-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 +190 -0
  3. package/compose/build.gradle.kts.backup +190 -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 +101 -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 +356 -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 +231 -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 +182 -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/ScaleSizeScope.kt +17 -0
  71. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
  72. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
  73. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
  74. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
  75. package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
  76. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
  77. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
  78. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
  79. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
  80. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +131 -0
  81. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
  82. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
  83. package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
  84. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
  85. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
  86. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
  87. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
  88. package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
  89. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
  90. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
  91. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
  92. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
  93. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +270 -0
  94. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
  95. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
  96. package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
  97. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
  98. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
  99. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
  100. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
  101. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
  102. package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
  103. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +253 -0
  104. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
  105. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +98 -0
  106. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +154 -0
  107. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +360 -0
  108. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
  109. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +562 -0
  110. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +154 -0
  111. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +225 -0
  112. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
  113. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
  114. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +320 -0
  115. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
  116. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
  117. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
  118. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
  119. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
  120. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +128 -0
  121. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +70 -0
  122. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +58 -0
  123. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
  124. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
  125. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
  126. package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
  127. package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
  128. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +184 -0
  129. package/gradle/libs.versions.toml +69 -0
  130. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  131. package/gradle/wrapper/gradle-wrapper.properties +8 -0
  132. package/gradle.properties +26 -0
  133. package/gradlew +252 -0
  134. package/gradlew.bat +94 -0
  135. package/package.json +1 -1
  136. package/settings.gradle.kts +64 -0
@@ -0,0 +1,356 @@
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
+ @InternalApi
99
+ fun getIconSize(size: Size): Dp = iconSizeCache[size] ?: 24.dp
100
+ private fun getIconSpace(size: Size): Dp = iconSpaceCache[size] ?: Spacing.S
101
+
102
+ @InternalApi
103
+ @Composable
104
+ fun getTextColor(loading: Boolean, type: ButtonType): Color {
105
+ val theme = AppTheme.current
106
+
107
+ return remember(type, theme, loading) {
108
+ getButtonColor(type, theme).withLoading(loading)
109
+ }
110
+ }
111
+
112
+ internal fun getButtonColor(type: ButtonType, theme: Theme): Color {
113
+ return when (type) {
114
+ ButtonType.DISABLED -> theme.colors.text.disable
115
+ ButtonType.PRIMARY -> Colors.black_01
116
+ ButtonType.SECONDARY -> theme.colors.text.default
117
+ ButtonType.OUTLINE -> theme.colors.primary
118
+ ButtonType.TONAL -> theme.colors.primary
119
+ ButtonType.DANGER -> Colors.black_01
120
+ ButtonType.TEXT -> theme.colors.primary
121
+ }
122
+ }
123
+
124
+
125
+ @Composable
126
+ internal fun RenderTitle(size: Size, title: String = "", textColor: Color) {
127
+ val style = remember(size) { getStyle(size) }
128
+ Text(
129
+ style = style,
130
+ text = title,
131
+ color = textColor,
132
+ overflow = TextOverflow.Ellipsis,
133
+ maxLines = 1
134
+ )
135
+ }
136
+
137
+ @Composable
138
+ @InternalApi
139
+ fun RenderIcon(
140
+ size: Size,
141
+ isIconLeft: Boolean,
142
+ useTintColor: Boolean = true,
143
+ icon: String = "",
144
+ forceLoading: Boolean = false,
145
+ textColor: Color? = null,
146
+ ) {
147
+ val iconSize = remember(size) { getIconSize(size) }
148
+ val margin = remember(size) { getIconSpace(size) }
149
+ val color = if (useTintColor) textColor else Color.Unspecified
150
+
151
+ val modifier = Modifier.padding(
152
+ start = if (isIconLeft) 0.dp else margin,
153
+ end = if (isIconLeft) margin else 0.dp
154
+ )
155
+
156
+ if (forceLoading) {
157
+ Box(modifier) {
158
+ LottieAnimation(
159
+ modifier = Modifier.size(iconSize),
160
+ bgColor = null,
161
+ tintColor = color,
162
+ path = "files/lottie_circle_loader",
163
+ useCompose = true
164
+ )
165
+ }
166
+ } else if (icon.isNotEmpty()) {
167
+ Icon(
168
+ source = icon,
169
+ color = color,
170
+ size = iconSize,
171
+ modifier = modifier
172
+ )
173
+ }
174
+ }
175
+
176
+ private fun shouldLoadingOnLeft(iconLeft: String, iconRight: String): Boolean {
177
+ val hasLeft = iconLeft.isNotEmpty()
178
+ val hasRight = iconRight.isNotEmpty()
179
+ return when {
180
+ !hasLeft && !hasRight -> true
181
+ hasLeft && !hasRight -> true
182
+ !hasLeft && hasRight -> false
183
+ hasLeft && hasRight -> false
184
+ else -> true
185
+ }
186
+ }
187
+
188
+ @InternalApi
189
+ @Composable
190
+ fun getTypeStyle(
191
+ type: ButtonType,
192
+ color: Color? = AppTheme.current.colors.primary,
193
+ size: Size,
194
+ bgColor: Color,
195
+ ): Modifier {
196
+ val theme = AppTheme.current
197
+ val radius = remember(size) { size.value.radius }
198
+ val modifier = Modifier.background(bgColor)
199
+
200
+ return remember(type, color, theme, radius, bgColor) {
201
+ when (type) {
202
+ ButtonType.DISABLED -> modifier
203
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
204
+
205
+ ButtonType.PRIMARY -> modifier
206
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
207
+
208
+ ButtonType.SECONDARY -> modifier
209
+ .border(1.dp, theme.colors.border.default, RoundedCornerShape(radius))
210
+
211
+ ButtonType.OUTLINE -> modifier
212
+ .border(1.dp, color ?: theme.colors.primary, RoundedCornerShape(radius))
213
+
214
+ ButtonType.TONAL -> modifier
215
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
216
+
217
+ ButtonType.DANGER -> modifier
218
+ .border(0.dp, Color.Unspecified, RoundedCornerShape(radius))
219
+
220
+ ButtonType.TEXT -> modifier
221
+ }
222
+ }
223
+ }
224
+
225
+ @InternalApi
226
+ @Composable
227
+ fun getButtonBackgroundColor(
228
+ loading: Boolean,
229
+ type: ButtonType
230
+ ): Color {
231
+ val theme = AppTheme.current
232
+
233
+ return remember(loading, type, theme) {
234
+ when (type) {
235
+ ButtonType.DISABLED -> theme.colors.background.disable.withLoading(loading)
236
+ ButtonType.PRIMARY -> theme.colors.primary.withLoading(loading)
237
+ ButtonType.SECONDARY -> theme.colors.background.surface.withLoading(loading)
238
+ ButtonType.OUTLINE -> theme.colors.background.surface.withLoading(loading)
239
+ ButtonType.TONAL -> theme.colors.background.tonal.withLoading(loading)
240
+ ButtonType.DANGER -> theme.colors.error.primary.withLoading(loading)
241
+ ButtonType.TEXT -> Color.Unspecified
242
+ }
243
+ }
244
+ }
245
+
246
+ private fun Color.withLoading(loading: Boolean): Color =
247
+ this.copy(alpha = if (loading) 0.75f else 1f)
248
+
249
+ @Composable
250
+ fun Button(
251
+ onClick: () -> Unit,
252
+ type: ButtonType = ButtonType.PRIMARY,
253
+ size: Size = Size.LARGE,
254
+ iconRight: String = "",
255
+ iconLeft: String = "",
256
+ title: String = "Button",
257
+ loading: Boolean = false,
258
+ useTintColor: Boolean = true,
259
+ isFull: Boolean = true,
260
+ modifier: Modifier = Modifier,
261
+ ) {
262
+ val radius = remember(size) { size.value.radius }
263
+ val isEnabled = remember(type) { type != ButtonType.DISABLED }
264
+ val loadingOnLeft = remember(iconLeft, iconRight) {
265
+ shouldLoadingOnLeft(iconLeft, iconRight)
266
+ }
267
+
268
+ val sizeSpecs = remember(size) { size.value }
269
+
270
+ val interactionSource = remember { MutableInteractionSource() }
271
+ val isPressed by interactionSource.collectIsPressedAsState()
272
+
273
+ val animatedPadding by animateDpAsState(
274
+ targetValue = if (isPressed && isEnabled && !loading) 2.dp else 0.dp,
275
+ animationSpec = tween(100),
276
+ label = "pressPadding"
277
+ )
278
+
279
+ val targetAlpha = if (isPressed && isEnabled && !loading) 0.5f else 1f
280
+ val alpha by animateFloatAsState(
281
+ targetValue = targetAlpha,
282
+ animationSpec = tween(100),
283
+ label = "buttonPressAlpha"
284
+ )
285
+
286
+ val clickableModifier =
287
+ if (isEnabled && !loading) {
288
+ modifier
289
+ .clip(RoundedCornerShape(radius))
290
+ .clickable(
291
+ enabled = isEnabled && !loading,
292
+ interactionSource = interactionSource,
293
+ indication = null,
294
+ onClick = onClick
295
+ )
296
+ .alpha(alpha)
297
+ } else {
298
+ modifier
299
+ .clip(RoundedCornerShape(radius))
300
+ }
301
+
302
+ val bgColor = getButtonBackgroundColor(loading, type)
303
+ val textColor = getTextColor(loading, type)
304
+
305
+ val rootModifier = if (isFull) {
306
+ Modifier
307
+ .fillMaxWidth()
308
+ .wrapContentHeight()
309
+ } else {
310
+ Modifier
311
+ }
312
+
313
+ Box(
314
+ modifier = rootModifier.then(clickableModifier),
315
+ contentAlignment = Alignment.Center
316
+ ) {
317
+ // Visual background (shrinks on press)
318
+ Box(
319
+ modifier = Modifier
320
+ .matchParentSize()
321
+ .padding(horizontal = animatedPadding)
322
+ .clip(RoundedCornerShape(radius))
323
+ .then(getTypeStyle(type, size = size, bgColor = bgColor))
324
+ .conditional(IsShowBaseLineDebug) {
325
+ border(1.dp, Colors.blue_03)
326
+ }
327
+ )
328
+
329
+ // Content
330
+ Row(
331
+ modifier = Modifier
332
+ .padding(horizontal = sizeSpecs.padding)
333
+ .height(sizeSpecs.height),
334
+ horizontalArrangement = Arrangement.Center,
335
+ verticalAlignment = Alignment.CenterVertically,
336
+ ) {
337
+ RenderIcon(
338
+ size = size,
339
+ isIconLeft = true,
340
+ useTintColor = useTintColor,
341
+ icon = iconLeft,
342
+ forceLoading = loading && loadingOnLeft,
343
+ textColor = textColor
344
+ )
345
+ RenderTitle(size, title, textColor = textColor)
346
+ RenderIcon(
347
+ size = size,
348
+ isIconLeft = false,
349
+ useTintColor = useTintColor,
350
+ icon = iconRight,
351
+ forceLoading = loading && !loadingOnLeft,
352
+ textColor = textColor
353
+ )
354
+ }
355
+ }
356
+ }
@@ -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
+ }