@momo-kits/native-kits 0.163.1-beta.1 → 0.163.1-beta.2-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 (155) 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/ios/Application/ApplicationEnvironment.swift +1 -0
  135. package/ios/Application/Components.swift +1 -0
  136. package/ios/Application/FloatingButton.swift +1 -0
  137. package/ios/Application/FontScaleStore.swift +59 -0
  138. package/ios/Badge/Badge.swift +1 -0
  139. package/ios/Badge/BadgeRibbon.swift +2 -0
  140. package/ios/Button/Button.swift +1 -1
  141. package/ios/Checkbox/Checkbox.swift +1 -0
  142. package/ios/Information/Information.swift +151 -0
  143. package/ios/Input/Input.swift +1 -0
  144. package/ios/Input/InputPhoneNumber.swift +1 -0
  145. package/ios/Input/InputSearch.swift +3 -0
  146. package/ios/Input/InputTextArea.swift +1 -0
  147. package/ios/OTPKeyboard/KeyboardButton.swift +1 -1
  148. package/ios/Popup/PopupDisplay.swift +6 -0
  149. package/ios/Popup/PopupInput.swift +2 -0
  150. package/ios/Template/TrustBanner/TrustBanner.swift +2 -0
  151. package/ios/Typography/Text.swift +13 -7
  152. package/ios/Typography/Typography.swift +22 -8
  153. package/local.properties +8 -0
  154. package/package.json +1 -1
  155. package/settings.gradle.kts +64 -0
@@ -0,0 +1,203 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.foundation.background
4
+ import androidx.compose.foundation.border
5
+ import androidx.compose.foundation.clickable
6
+ import androidx.compose.foundation.layout.*
7
+ import androidx.compose.foundation.shape.RoundedCornerShape
8
+ import androidx.compose.runtime.Composable
9
+ import androidx.compose.ui.Alignment
10
+ import androidx.compose.ui.Modifier
11
+ import androidx.compose.ui.graphics.Color
12
+ import androidx.compose.ui.text.TextStyle
13
+ import androidx.compose.ui.text.font.FontWeight
14
+ import androidx.compose.ui.unit.dp
15
+ import androidx.compose.ui.unit.sp
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.Spacing
20
+ import vn.momo.kits.const.Typography
21
+ import vn.momo.kits.modifier.conditional
22
+
23
+ enum class TitleType { Card, Section }
24
+ enum class TitleSize { Small, Medium, Large }
25
+ enum class IconAlign { Top, Center, Bottom }
26
+ enum class ButtonSize { Small, Large }
27
+
28
+ @Composable
29
+ fun Title(
30
+ title: String,
31
+ type: TitleType = TitleType.Section,
32
+ size: TitleSize = TitleSize.Medium,
33
+ icon: String? = null,
34
+ iconColor: Color? = null,
35
+ iconAlign: IconAlign = IconAlign.Top,
36
+ showRightAction: Boolean = false,
37
+ showTrailingAction: Boolean = false,
38
+ badgeLabel: String? = null,
39
+ buttonTitle: String? = null,
40
+ buttonSize: ButtonSize = ButtonSize.Small,
41
+ onPressRightAction: () -> Unit = {},
42
+ onPressTrailingAction: () -> Unit = {},
43
+ textOnly: Boolean = false,
44
+ description: String? = null,
45
+ modifier: Modifier = Modifier
46
+ ) {
47
+ val theme = AppTheme.current
48
+ val textStyle: TextStyle = when (type) {
49
+ TitleType.Card -> when (size) {
50
+ TitleSize.Small -> TextStyle(fontSize = 14.sp, lineHeight = 20.sp)
51
+ TitleSize.Medium -> TextStyle(fontSize = 16.sp, lineHeight = 22.sp)
52
+ TitleSize.Large -> TextStyle(fontSize = 18.sp, lineHeight = 26.sp)
53
+ }
54
+
55
+ TitleType.Section -> when (size) {
56
+ TitleSize.Small -> TextStyle(
57
+ fontSize = 16.sp,
58
+ lineHeight = 24.sp,
59
+ fontWeight = FontWeight.Bold
60
+ )
61
+
62
+ TitleSize.Medium -> TextStyle(
63
+ fontSize = 18.sp,
64
+ lineHeight = 26.sp,
65
+ fontWeight = FontWeight.Bold
66
+ )
67
+
68
+ TitleSize.Large -> TextStyle(
69
+ fontSize = 20.sp,
70
+ lineHeight = 28.sp,
71
+ fontWeight = FontWeight.Bold
72
+ )
73
+ }
74
+ }
75
+
76
+ if (textOnly) {
77
+ Text(
78
+ text = title,
79
+ style = textStyle,
80
+ modifier = modifier
81
+ )
82
+ return
83
+ }
84
+
85
+ Row(
86
+ modifier = modifier
87
+ .fillMaxWidth()
88
+ .height(IntrinsicSize.Min)
89
+ .conditional(IsShowBaseLineDebug) {
90
+ border(1.dp, Colors.blue_03)
91
+ }
92
+ .padding(8.dp),
93
+ verticalAlignment = Alignment.CenterVertically
94
+ ) {
95
+ icon?.let {
96
+ Column(
97
+ modifier = Modifier.fillMaxHeight().padding(end = Spacing.S),
98
+ verticalArrangement = when (iconAlign) {
99
+ IconAlign.Top -> Arrangement.Top
100
+ IconAlign.Center -> Arrangement.Center
101
+ IconAlign.Bottom -> Arrangement.Bottom
102
+ },
103
+ ) {
104
+ // Icon
105
+ Icon(
106
+ source = it,
107
+ color = iconColor ?: theme.colors.text.default,
108
+ modifier = Modifier.size(24.dp)
109
+ )
110
+ }
111
+ }
112
+
113
+ Column(
114
+ modifier = Modifier.weight(1f)
115
+ ) {
116
+ Row(
117
+ verticalAlignment = Alignment.CenterVertically
118
+ ) {
119
+ Row(
120
+ verticalAlignment = Alignment.CenterVertically,
121
+ modifier = if (showTrailingAction) Modifier else Modifier.weight(1f),
122
+ ) {
123
+ Text(
124
+ text = title,
125
+ style = textStyle,
126
+ maxLines = if (showTrailingAction || badgeLabel != null) 1 else 2,
127
+ )
128
+
129
+ // Badge
130
+ badgeLabel?.let {
131
+ Spacer(modifier = Modifier.width(4.dp))
132
+ Badge(
133
+ label = it
134
+ )
135
+ }
136
+
137
+ }
138
+
139
+ // Trailing action (icon)
140
+ if (showTrailingAction && !showRightAction) {
141
+ Spacer(modifier = Modifier.width(8.dp))
142
+ Box(
143
+ modifier = Modifier
144
+ .size(24.dp)
145
+ .background(
146
+ color = if (type == TitleType.Section) Colors.black_06.copy(0.6f) else Colors.black_06.copy(
147
+ 0.3f
148
+ ),
149
+ shape = RoundedCornerShape(12.dp)
150
+ )
151
+ .clickable { onPressTrailingAction() },
152
+ contentAlignment = Alignment.Center
153
+ ) {
154
+ Icon(
155
+ source = "arrow_chevron_right_small",
156
+ size = 18.dp
157
+ )
158
+ }
159
+ }
160
+ }
161
+
162
+ // Description
163
+ description?.let {
164
+ Spacer(modifier = Modifier.height(4.dp))
165
+ Text(
166
+ text = it,
167
+ style = Typography.descriptionDefaultRegular,
168
+ color = theme.colors.text.secondary
169
+ )
170
+ }
171
+ }
172
+
173
+ // Right action (button or icon)
174
+ if (showRightAction && !showTrailingAction) {
175
+ Spacer(modifier = Modifier.width(8.dp))
176
+ if (buttonTitle != null) {
177
+ Text(
178
+ text = buttonTitle,
179
+ style = if (buttonSize === ButtonSize.Small) Typography.actionXsBold else Typography.actionSBold,
180
+ color = theme.colors.primary,
181
+ modifier = Modifier.clickable { onPressRightAction() }
182
+ )
183
+ } else {
184
+ Box(
185
+ modifier = Modifier
186
+ .size(24.dp)
187
+ .background(
188
+ color = Colors.pink_03.copy(alpha = 0.1f),
189
+ shape = RoundedCornerShape(12.dp)
190
+ )
191
+ .clickable { onPressRightAction() },
192
+ contentAlignment = Alignment.Center
193
+ ) {
194
+ Icon(
195
+ source = "arrow_chevron_right_small",
196
+ modifier = Modifier.size(22.dp),
197
+ color = theme.colors.primary
198
+ )
199
+ }
200
+ }
201
+ }
202
+ }
203
+ }
@@ -0,0 +1,498 @@
1
+ package vn.momo.kits.components
2
+
3
+ import androidx.compose.foundation.Canvas
4
+ import androidx.compose.foundation.background
5
+ import androidx.compose.foundation.border
6
+ import androidx.compose.foundation.clickable
7
+ import androidx.compose.foundation.interaction.MutableInteractionSource
8
+ import androidx.compose.foundation.layout.*
9
+ import androidx.compose.foundation.shape.RoundedCornerShape
10
+ import androidx.compose.runtime.*
11
+ import androidx.compose.ui.Alignment
12
+ import androidx.compose.ui.Modifier
13
+ import androidx.compose.ui.draw.clip
14
+ import androidx.compose.ui.graphics.Paint
15
+ import androidx.compose.ui.graphics.Path
16
+ import androidx.compose.ui.graphics.PathEffect
17
+ import androidx.compose.ui.graphics.drawscope.drawIntoCanvas
18
+ import androidx.compose.ui.platform.LocalDensity
19
+ import androidx.compose.ui.text.style.TextOverflow
20
+ import androidx.compose.ui.unit.*
21
+ import androidx.compose.ui.window.Popup
22
+ import androidx.compose.ui.window.PopupPositionProvider
23
+ import androidx.compose.ui.window.PopupProperties
24
+ import vn.momo.kits.application.IsShowBaseLineDebug
25
+ import vn.momo.kits.const.*
26
+ import vn.momo.kits.modifier.activeOpacityClickable
27
+ import vn.momo.kits.modifier.conditional
28
+
29
+
30
+ enum class TooltipPlacement {
31
+ TOP,
32
+ BOTTOM,
33
+ LEFT,
34
+ RIGHT,
35
+ }
36
+ enum class TooltipAlign {
37
+ START,
38
+ CENTER,
39
+ END,
40
+ }
41
+ data class TooltipButton(
42
+ val title: String? = null,
43
+ val icon: String? = null,
44
+ val onPress: (() -> Unit)? = null,
45
+ )
46
+ @Stable
47
+ class TooltipState {
48
+ var isVisible by mutableStateOf(false)
49
+ private set
50
+
51
+ /** Shows the tooltip. */
52
+ fun show() {
53
+ isVisible = true
54
+ }
55
+
56
+ /** Hides the tooltip. */
57
+ fun hide() {
58
+ isVisible = false
59
+ }
60
+
61
+ /** Toggles the tooltip visibility. */
62
+ fun toggle() {
63
+ isVisible = !isVisible
64
+ }
65
+ }
66
+ @Composable
67
+ fun rememberTooltipState(): TooltipState {
68
+ return remember { TooltipState() }
69
+ }
70
+ private val TOOLTIP_OFFSET = Spacing.S
71
+ private val ARROW_SIZE = 6.dp
72
+ private class TooltipPositionProvider(
73
+ private val placement: TooltipPlacement,
74
+ private val align: TooltipAlign,
75
+ private val offsetPx: Int,
76
+ ) : PopupPositionProvider {
77
+
78
+ override fun calculatePosition(
79
+ anchorBounds: IntRect,
80
+ windowSize: IntSize,
81
+ layoutDirection: LayoutDirection,
82
+ popupContentSize: IntSize,
83
+ ): IntOffset {
84
+ val anchorX = anchorBounds.left
85
+ val anchorY = anchorBounds.top
86
+ val anchorW = anchorBounds.width
87
+ val anchorH = anchorBounds.height
88
+ val popW = popupContentSize.width
89
+ val popH = popupContentSize.height
90
+
91
+ var x: Int
92
+ var y: Int
93
+
94
+ when (placement) {
95
+ TooltipPlacement.TOP -> {
96
+ y = anchorY - popH - offsetPx
97
+ x = alignHorizontal(anchorX, anchorW, popW)
98
+ }
99
+
100
+ TooltipPlacement.BOTTOM -> {
101
+ y = anchorY + anchorH + offsetPx
102
+ x = alignHorizontal(anchorX, anchorW, popW)
103
+ }
104
+
105
+ TooltipPlacement.LEFT -> {
106
+ x = anchorX - popW - offsetPx
107
+ y = alignVertical(anchorY, anchorH, popH)
108
+ }
109
+
110
+ TooltipPlacement.RIGHT -> {
111
+ x = anchorX + anchorW + offsetPx
112
+ y = alignVertical(anchorY, anchorH, popH)
113
+ }
114
+ }
115
+
116
+ return IntOffset(x, y)
117
+ }
118
+ private fun alignHorizontal(anchorX: Int, anchorW: Int, popW: Int): Int {
119
+ return when (align) {
120
+ TooltipAlign.START -> anchorX
121
+ TooltipAlign.END -> anchorX + anchorW - popW
122
+ TooltipAlign.CENTER -> anchorX + (anchorW - popW) / 2
123
+ }
124
+ }
125
+ private fun alignVertical(anchorY: Int, anchorH: Int, popH: Int): Int {
126
+ return when (align) {
127
+ TooltipAlign.START -> anchorY
128
+ TooltipAlign.END -> anchorY + anchorH - popH
129
+ TooltipAlign.CENTER -> anchorY + (anchorH - popH) / 2
130
+ }
131
+ }
132
+ }
133
+
134
+ @Composable
135
+ fun Tooltip(
136
+ state: TooltipState,
137
+ title: String? = null,
138
+ description: String,
139
+ buttons: List<TooltipButton> = emptyList(),
140
+ placement: TooltipPlacement = TooltipPlacement.TOP,
141
+ align: TooltipAlign = TooltipAlign.CENTER,
142
+ onVisibleChange: ((Boolean) -> Unit)? = null,
143
+ onPressClose: (() -> Unit)? = null,
144
+ modifier: Modifier = Modifier,
145
+ content: @Composable () -> Unit,
146
+ ) {
147
+ val density = LocalDensity.current
148
+ val offsetPx = with(density) { (TOOLTIP_OFFSET + ARROW_SIZE).roundToPx() }
149
+
150
+ LaunchedEffect(state.isVisible) {
151
+ onVisibleChange?.invoke(state.isVisible)
152
+ }
153
+
154
+ Box(modifier = modifier) {
155
+ content()
156
+
157
+ if (state.isVisible) {
158
+ val positionProvider = remember(placement, align, offsetPx) {
159
+ TooltipPositionProvider(
160
+ placement = placement,
161
+ align = align,
162
+ offsetPx = offsetPx,
163
+ )
164
+ }
165
+
166
+ Popup(
167
+ popupPositionProvider = positionProvider,
168
+ onDismissRequest = { state.hide() },
169
+ properties = PopupProperties(clippingEnabled = false),
170
+ ) {
171
+ TooltipPopupContent(
172
+ title = title,
173
+ description = description,
174
+ buttons = buttons,
175
+ placement = placement,
176
+ align = align,
177
+ onPressClose = onPressClose,
178
+ )
179
+ }
180
+ }
181
+ }
182
+ }
183
+ @Composable
184
+ private fun TooltipPopupContent(
185
+ title: String?,
186
+ description: String?,
187
+ buttons: List<TooltipButton>,
188
+ placement: TooltipPlacement,
189
+ align: TooltipAlign,
190
+ onPressClose: (() -> Unit)? = null,
191
+ ) {
192
+ val tooltipMaxWidth = 300.dp
193
+ val tooltipShape = remember { RoundedCornerShape(Radius.S) }
194
+
195
+ Box(modifier = Modifier.wrapContentSize()) {
196
+ Column(
197
+ modifier = Modifier
198
+ .widthIn(max = tooltipMaxWidth)
199
+ .width(IntrinsicSize.Max)
200
+ .background(Colors.black_17, tooltipShape)
201
+ .clip(tooltipShape)
202
+ .conditional(IsShowBaseLineDebug) {
203
+ border(1.dp, Colors.blue_03)
204
+ }
205
+ .padding(Spacing.M)
206
+ ) {
207
+ Row(Modifier.fillMaxWidth()) {
208
+ Column(modifier = Modifier.weight(1f)) {
209
+ if (!title.isNullOrEmpty()) {
210
+ Text(
211
+ text = title,
212
+ style = Typography.headerSSemibold,
213
+ color = Colors.black_01,
214
+ maxLines = 1,
215
+ modifier = Modifier.padding(bottom = Spacing.XS),
216
+ overflow = TextOverflow.Ellipsis,
217
+ )
218
+ }
219
+ if (!description.isNullOrEmpty()) {
220
+ Text(
221
+ text = description,
222
+ style = Typography.descriptionDefaultRegular,
223
+ color = Colors.black_01,
224
+ maxLines = 2,
225
+ overflow = TextOverflow.Ellipsis,
226
+ )
227
+ }
228
+ }
229
+ if (onPressClose != null) {
230
+ Spacer(Modifier.width(Spacing.M))
231
+ Box(
232
+ modifier = Modifier
233
+ .size(20.dp)
234
+ .activeOpacityClickable {
235
+ onPressClose.invoke()
236
+ }
237
+ ) {
238
+ Icon(
239
+ source = "navigation_close",
240
+ size = 20.dp,
241
+ color = Colors.black_01,
242
+ )
243
+ }
244
+ }
245
+ }
246
+ if (buttons.isNotEmpty()) {
247
+ Spacer(Modifier.height(Spacing.M))
248
+ TooltipButtons(
249
+ buttons = buttons,
250
+ modifier = Modifier.align(Alignment.End),
251
+ )
252
+ }
253
+ }
254
+
255
+ TooltipArrow(
256
+ placement = placement,
257
+ align = align,
258
+ modifier = Modifier.matchParentSize(),
259
+ )
260
+ }
261
+ }
262
+ @Composable
263
+ private fun TooltipArrow(
264
+ placement: TooltipPlacement,
265
+ align: TooltipAlign,
266
+ modifier: Modifier = Modifier,
267
+ ) {
268
+ val arrowWidth = ARROW_SIZE * 2
269
+ val arrowHeight = ARROW_SIZE
270
+ val arrowEdgeMargin = Spacing.M
271
+
272
+ val boxAlignment = when (placement) {
273
+ TooltipPlacement.TOP -> when (align) {
274
+ TooltipAlign.START -> Alignment.BottomStart
275
+ TooltipAlign.CENTER -> Alignment.BottomCenter
276
+ TooltipAlign.END -> Alignment.BottomEnd
277
+ }
278
+
279
+ TooltipPlacement.BOTTOM -> when (align) {
280
+ TooltipAlign.START -> Alignment.TopStart
281
+ TooltipAlign.CENTER -> Alignment.TopCenter
282
+ TooltipAlign.END -> Alignment.TopEnd
283
+ }
284
+
285
+ TooltipPlacement.LEFT -> when (align) {
286
+ TooltipAlign.START -> Alignment.TopEnd
287
+ TooltipAlign.CENTER -> Alignment.CenterEnd
288
+ TooltipAlign.END -> Alignment.BottomEnd
289
+ }
290
+
291
+ TooltipPlacement.RIGHT -> when (align) {
292
+ TooltipAlign.START -> Alignment.TopStart
293
+ TooltipAlign.CENTER -> Alignment.CenterStart
294
+ TooltipAlign.END -> Alignment.BottomStart
295
+ }
296
+ }
297
+
298
+ val canvasWidth = when (placement) {
299
+ TooltipPlacement.TOP, TooltipPlacement.BOTTOM -> arrowWidth
300
+ TooltipPlacement.LEFT, TooltipPlacement.RIGHT -> arrowHeight
301
+ }
302
+ val canvasHeight = when (placement) {
303
+ TooltipPlacement.TOP, TooltipPlacement.BOTTOM -> arrowHeight
304
+ TooltipPlacement.LEFT, TooltipPlacement.RIGHT -> arrowWidth
305
+ }
306
+
307
+ val arrowOverlap = 1.dp
308
+ val offsetX = when (placement) {
309
+ TooltipPlacement.LEFT -> arrowHeight - arrowOverlap
310
+ TooltipPlacement.RIGHT -> -arrowHeight + arrowOverlap
311
+ else -> when (align) {
312
+ TooltipAlign.START -> arrowEdgeMargin
313
+ TooltipAlign.END -> -arrowEdgeMargin
314
+ TooltipAlign.CENTER -> 0.dp
315
+ }
316
+ }
317
+ val offsetY = when (placement) {
318
+ TooltipPlacement.TOP -> arrowHeight - arrowOverlap
319
+ TooltipPlacement.BOTTOM -> -arrowHeight + arrowOverlap
320
+ else -> when (align) {
321
+ TooltipAlign.START -> arrowEdgeMargin
322
+ TooltipAlign.END -> -arrowEdgeMargin
323
+ TooltipAlign.CENTER -> 0.dp
324
+ }
325
+ }
326
+
327
+ val arrowColor = Colors.black_17
328
+
329
+ Box(modifier = modifier) {
330
+ Canvas(
331
+ modifier = Modifier
332
+ .align(boxAlignment)
333
+ .offset(x = offsetX, y = offsetY)
334
+ .size(width = canvasWidth, height = canvasHeight)
335
+ ) {
336
+ val w = size.width
337
+ val h = size.height
338
+ val path = Path().apply {
339
+ when (placement) {
340
+ TooltipPlacement.TOP -> {
341
+ moveTo(0f, 0f)
342
+ lineTo(w, 0f)
343
+ lineTo(w / 2f, h)
344
+ close()
345
+ }
346
+ TooltipPlacement.BOTTOM -> {
347
+ moveTo(0f, h)
348
+ lineTo(w, h)
349
+ lineTo(w / 2f, 0f)
350
+ close()
351
+ }
352
+ TooltipPlacement.LEFT -> {
353
+ moveTo(0f, 0f)
354
+ lineTo(0f, h)
355
+ lineTo(w, h / 2f)
356
+ close()
357
+ }
358
+ TooltipPlacement.RIGHT -> {
359
+ moveTo(w, 0f)
360
+ lineTo(w, h)
361
+ lineTo(0f, h / 2f)
362
+ close()
363
+ }
364
+ }
365
+ }
366
+ drawIntoCanvas { canvas ->
367
+ val paint = Paint().apply {
368
+ color = arrowColor
369
+ pathEffect = PathEffect.cornerPathEffect(2.dp.toPx())
370
+ }
371
+ canvas.drawPath(path, paint)
372
+ }
373
+ }
374
+ }
375
+ }
376
+ @Composable
377
+ private fun TooltipButtons(buttons: List<TooltipButton>, modifier: Modifier = Modifier) {
378
+ Row(
379
+ modifier = modifier,
380
+ horizontalArrangement = Arrangement.End,
381
+ verticalAlignment = Alignment.CenterVertically,
382
+ ) {
383
+
384
+ if (buttons.size == 1) {
385
+ val btn = buttons[0]
386
+ TooltipSingleButton(btn)
387
+ } else if (buttons.size == 2) {
388
+ val primary = buttons[0]
389
+ val secondary = buttons[1]
390
+ val bothIcons = primary.icon != null && secondary.icon != null
391
+
392
+ if (bothIcons) {
393
+ TooltipIconButton(
394
+ icon = secondary.icon,
395
+ onPress = secondary.onPress ?: {},
396
+ )
397
+ Spacer(modifier = Modifier.width(Spacing.S))
398
+ TooltipIconButton(
399
+ icon = primary.icon,
400
+ onPress = primary.onPress ?: {},
401
+ )
402
+ } else {
403
+ TooltipSecondaryButton(
404
+ title = secondary.title ?: "",
405
+ onPress = secondary.onPress ?: {},
406
+ modifier = Modifier.weight(1f, fill = false),
407
+ )
408
+ Spacer(modifier = Modifier.width(Spacing.S))
409
+ TooltipPrimaryButton(
410
+ title = primary.title ?: "",
411
+ onPress = primary.onPress ?: {},
412
+ )
413
+ }
414
+ } else {
415
+ buttons.forEachIndexed { index, btn ->
416
+ if (index > 0) {
417
+ Spacer(modifier = Modifier.width(Spacing.XXS))
418
+ }
419
+ TooltipSingleButton(btn)
420
+ }
421
+ }
422
+ }
423
+ }
424
+
425
+ @Composable
426
+ private fun TooltipSingleButton(btn: TooltipButton) {
427
+ if (btn.icon != null) {
428
+ TooltipIconButton(
429
+ icon = btn.icon,
430
+ onPress = btn.onPress ?: {},
431
+ )
432
+ } else {
433
+ TooltipPrimaryButton(
434
+ title = btn.title ?: "",
435
+ onPress = btn.onPress ?: {},
436
+ )
437
+ }
438
+ }
439
+ private fun String.limitWithEllipsis(max: Int = 16): String {
440
+ return if (length > max) take(max) + "…" else this
441
+ }
442
+ @Composable
443
+ private fun TooltipPrimaryButton(
444
+ title: String,
445
+ onPress: () -> Unit,
446
+ ) {
447
+ Button(
448
+ onClick = onPress,
449
+ title = title.limitWithEllipsis(),
450
+ type = ButtonType.SECONDARY,
451
+ size = Size.MEDIUM,
452
+ isFull = false,
453
+ )
454
+ }
455
+ @Composable
456
+ private fun TooltipSecondaryButton(
457
+ title: String,
458
+ onPress: () -> Unit,
459
+ modifier: Modifier = Modifier,
460
+ ) {
461
+ Box(
462
+ modifier = modifier
463
+ .activeOpacityClickable {
464
+ onPress()
465
+ }
466
+ .padding(horizontal = Spacing.M, vertical = Spacing.S),
467
+ ) {
468
+ Text(
469
+ text = title.limitWithEllipsis(),
470
+ color = Colors.black_01,
471
+ style = Typography.actionSBold,
472
+ maxLines = 1,
473
+ overflow = TextOverflow.Ellipsis,
474
+ )
475
+ }
476
+ }
477
+ @Composable
478
+ private fun TooltipIconButton(
479
+ icon: String,
480
+ onPress: () -> Unit,
481
+ ) {
482
+ val iconButtonSize = scaleSize(36f).dp
483
+
484
+ Box(
485
+ modifier = Modifier
486
+ .size(iconButtonSize)
487
+ .background(Colors.black_01, RoundedCornerShape(Radius.XL))
488
+ .clip(RoundedCornerShape(Radius.XL))
489
+ .clickable(
490
+ interactionSource = remember { MutableInteractionSource() },
491
+ indication = null,
492
+ onClick = onPress,
493
+ ),
494
+ contentAlignment = Alignment.Center,
495
+ ) {
496
+ Icon(source = icon)
497
+ }
498
+ }