@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.
- package/build.gradle.kts +11 -0
- package/compose/build.gradle.kts +189 -0
- package/compose/build.gradle.kts.backup +189 -0
- package/compose/compose.podspec +47 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/navigation/ScrollToTop.android.kt +6 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +123 -0
- package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
- package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +52 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +108 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +183 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +207 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +39 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +294 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +826 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +107 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +378 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Avatar.kt +157 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +82 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +338 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +175 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +354 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +113 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +89 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +128 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +209 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +140 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +112 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +477 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +114 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +214 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +240 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +216 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +259 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +180 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +343 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Loader.kt +108 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +84 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +328 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +97 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +310 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +59 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Rating.kt +87 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +134 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +269 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +253 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +94 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +175 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +360 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +557 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +155 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +223 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +319 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +128 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +70 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +58 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +184 -0
- package/gradle/libs.versions.toml +67 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +8 -0
- package/gradle.properties +26 -0
- package/gradlew +252 -0
- package/gradlew.bat +94 -0
- package/local.properties +8 -0
- package/package.json +1 -1
- package/settings.gradle.kts +64 -0
|
@@ -0,0 +1,328 @@
|
|
|
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.interaction.MutableInteractionSource
|
|
7
|
+
import androidx.compose.foundation.layout.*
|
|
8
|
+
import androidx.compose.foundation.lazy.LazyColumn
|
|
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.platform.LocalDensity
|
|
15
|
+
import androidx.compose.ui.text.TextLayoutResult
|
|
16
|
+
import androidx.compose.ui.unit.Dp
|
|
17
|
+
import androidx.compose.ui.unit.dp
|
|
18
|
+
import vn.momo.kits.application.IsShowBaseLineDebug
|
|
19
|
+
import vn.momo.kits.application.LocalLocalize
|
|
20
|
+
import vn.momo.kits.const.*
|
|
21
|
+
import vn.momo.kits.modifier.conditional
|
|
22
|
+
import vn.momo.kits.modifier.setAutomationId
|
|
23
|
+
import kotlin.math.min
|
|
24
|
+
|
|
25
|
+
data class PopupAction(
|
|
26
|
+
val title: String,
|
|
27
|
+
val onPress: (() -> Unit)?,
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
enum class PopupActionDirection {
|
|
31
|
+
ROW,
|
|
32
|
+
COLUMN,
|
|
33
|
+
AUTO
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
private fun heightForLines(
|
|
37
|
+
layout: TextLayoutResult,
|
|
38
|
+
): Float {
|
|
39
|
+
val clampedLines = (8.5f).coerceAtLeast(1f)
|
|
40
|
+
val wholeLines = kotlin.math.floor(clampedLines).toInt()
|
|
41
|
+
val fractionalPart = clampedLines - wholeLines
|
|
42
|
+
|
|
43
|
+
val baseLineIndex = (wholeLines - 1)
|
|
44
|
+
.coerceAtLeast(0)
|
|
45
|
+
.coerceAtMost(layout.lineCount - 1)
|
|
46
|
+
|
|
47
|
+
var heightPx = layout.getLineBottom(baseLineIndex)
|
|
48
|
+
|
|
49
|
+
if (fractionalPart > 0f) {
|
|
50
|
+
val nextLineIndex = (baseLineIndex + 1)
|
|
51
|
+
.coerceAtMost(layout.lineCount - 1)
|
|
52
|
+
val nextBottomPx = layout.getLineBottom(nextLineIndex)
|
|
53
|
+
heightPx += (nextBottomPx - heightPx) * fractionalPart
|
|
54
|
+
}
|
|
55
|
+
return heightPx
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
data class PopupNotifyProps(
|
|
59
|
+
val image: String = "",
|
|
60
|
+
val title: String = "Title",
|
|
61
|
+
val description: String = "Description",
|
|
62
|
+
val error: String = "",
|
|
63
|
+
val primary: PopupAction? = null,
|
|
64
|
+
val secondary: PopupAction? = null,
|
|
65
|
+
val buttonDirection: PopupActionDirection = PopupActionDirection.ROW,
|
|
66
|
+
val onIconClose: () -> Unit,
|
|
67
|
+
val isShowCloseIcon: Boolean = true,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
@Composable
|
|
71
|
+
fun PopupNotify(
|
|
72
|
+
props: PopupNotifyProps,
|
|
73
|
+
) {
|
|
74
|
+
var isScroll by remember { mutableStateOf(false) }
|
|
75
|
+
val layoutResult = remember { mutableStateOf<TextLayoutResult?>(null) }
|
|
76
|
+
|
|
77
|
+
val density = LocalDensity.current
|
|
78
|
+
var scrollHeight: Dp by remember { mutableStateOf(0.dp) }
|
|
79
|
+
|
|
80
|
+
LaunchedEffect(layoutResult.value) {
|
|
81
|
+
if ((layoutResult.value?.lineCount ?: 0) > 3) {
|
|
82
|
+
isScroll = true
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
LaunchedEffect(layoutResult.value) {
|
|
87
|
+
layoutResult.value?.let { v ->
|
|
88
|
+
// cap visible height at ~8.5 lines
|
|
89
|
+
val textPx = v.size.height.toFloat()
|
|
90
|
+
val capPx = heightForLines(v)
|
|
91
|
+
|
|
92
|
+
isScroll = textPx >= capPx
|
|
93
|
+
scrollHeight = with(density) { min(textPx, capPx).toDp() }
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
val content: @Composable (Modifier) -> Unit = if (isScroll) {
|
|
98
|
+
{ modifier ->
|
|
99
|
+
LazyColumn(
|
|
100
|
+
modifier = modifier.height(scrollHeight)
|
|
101
|
+
) {
|
|
102
|
+
item {
|
|
103
|
+
Text(
|
|
104
|
+
text = props.description,
|
|
105
|
+
onTextLayout = { layoutResult.value = it },
|
|
106
|
+
style = Typography.bodyDefaultRegular
|
|
107
|
+
)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
} else {
|
|
112
|
+
{ modifier ->
|
|
113
|
+
Box(modifier = modifier) {
|
|
114
|
+
Text(
|
|
115
|
+
text = props.description,
|
|
116
|
+
onTextLayout = { layoutResult.value = it },
|
|
117
|
+
style = Typography.bodyDefaultRegular
|
|
118
|
+
)
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
fun onClose(callback: (() -> Unit)?) {
|
|
124
|
+
callback?.invoke()
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
Box(
|
|
128
|
+
Modifier.setAutomationId("popup_notify"), contentAlignment = Alignment.TopEnd
|
|
129
|
+
) {
|
|
130
|
+
Column(
|
|
131
|
+
modifier = Modifier
|
|
132
|
+
.fillMaxWidth()
|
|
133
|
+
.padding(horizontal = 12.dp)
|
|
134
|
+
.clip(RoundedCornerShape(Radius.L))
|
|
135
|
+
.background(
|
|
136
|
+
AppTheme.current.colors.background.surface,
|
|
137
|
+
RoundedCornerShape(Radius.L)
|
|
138
|
+
)
|
|
139
|
+
.conditional(IsShowBaseLineDebug) {
|
|
140
|
+
border(1.dp, Colors.blue_03)
|
|
141
|
+
}
|
|
142
|
+
) {
|
|
143
|
+
if(props.image.isNotEmpty()) {
|
|
144
|
+
Image(
|
|
145
|
+
source = props.image,
|
|
146
|
+
modifier = Modifier.fillMaxWidth().aspectRatio(1.777f),
|
|
147
|
+
options = Options(alignment = Alignment.Center)
|
|
148
|
+
)
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
Column(modifier = Modifier.padding(Spacing.XL)) {
|
|
152
|
+
Text(
|
|
153
|
+
style = Typography.headerDefaultBold,
|
|
154
|
+
maxLines = 2,
|
|
155
|
+
text = props.title,
|
|
156
|
+
modifier = Modifier.setAutomationId("title_popup_permission")
|
|
157
|
+
)
|
|
158
|
+
content(Modifier.padding(top = Spacing.S))
|
|
159
|
+
if (props.error.isNotEmpty()) {
|
|
160
|
+
Text(
|
|
161
|
+
text = LocalLocalize.current.translate("errorCode") + props.error,
|
|
162
|
+
style = Typography.descriptionXsRegular,
|
|
163
|
+
color = AppTheme.current.colors.text.hint,
|
|
164
|
+
maxLines = 1,
|
|
165
|
+
modifier = Modifier.padding(top = Spacing.S)
|
|
166
|
+
)
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
Box(
|
|
171
|
+
modifier = Modifier.padding(horizontal = Spacing.XL)
|
|
172
|
+
.padding(bottom = Spacing.XL)
|
|
173
|
+
) {
|
|
174
|
+
BuildAction(props.primary, props.secondary, props.buttonDirection, onAction = { callback ->
|
|
175
|
+
onClose(callback)
|
|
176
|
+
})
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
if(props.isShowCloseIcon) {
|
|
181
|
+
Box(
|
|
182
|
+
Modifier
|
|
183
|
+
.width(22.dp)
|
|
184
|
+
.height(22.dp)
|
|
185
|
+
.offset(x = -(1).dp, y = (-11).dp)
|
|
186
|
+
.background(
|
|
187
|
+
color = AppTheme.current.colors.text.default,
|
|
188
|
+
shape = RoundedCornerShape(Radius.M)
|
|
189
|
+
)
|
|
190
|
+
.border(
|
|
191
|
+
width = 2.dp,
|
|
192
|
+
color = AppTheme.current.colors.background.surface,
|
|
193
|
+
shape = RoundedCornerShape(Radius.M)
|
|
194
|
+
)
|
|
195
|
+
.clip(RoundedCornerShape(100))
|
|
196
|
+
.clickable(
|
|
197
|
+
interactionSource = remember { MutableInteractionSource() },
|
|
198
|
+
indication = null,
|
|
199
|
+
onClick = { onClose { props.onIconClose() } }
|
|
200
|
+
),
|
|
201
|
+
contentAlignment = Alignment.Center
|
|
202
|
+
) {
|
|
203
|
+
Icon(
|
|
204
|
+
source = "navigation_close",
|
|
205
|
+
color = AppTheme.current.colors.background.surface,
|
|
206
|
+
size = 16.dp,
|
|
207
|
+
modifier = Modifier.setAutomationId("ic_popup_close")
|
|
208
|
+
)
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@Composable
|
|
215
|
+
internal fun BuildAction(
|
|
216
|
+
primary: PopupAction?,
|
|
217
|
+
secondary: PopupAction?,
|
|
218
|
+
buttonDirection: PopupActionDirection = PopupActionDirection.ROW,
|
|
219
|
+
onAction: (onPress: (() -> Unit)?) -> Unit,
|
|
220
|
+
) {
|
|
221
|
+
val closeAction = remember { mutableStateOf("button_action") }
|
|
222
|
+
when (buttonDirection) {
|
|
223
|
+
PopupActionDirection.AUTO -> {
|
|
224
|
+
if (secondary != null && (secondary.title.length > 12 || primary?.title?.length!! > 12)) {
|
|
225
|
+
RenderColumn(
|
|
226
|
+
secondary = secondary,
|
|
227
|
+
onAction = onAction,
|
|
228
|
+
closeAction = closeAction,
|
|
229
|
+
primary = primary
|
|
230
|
+
)
|
|
231
|
+
} else {
|
|
232
|
+
RenderRow(
|
|
233
|
+
secondary = secondary,
|
|
234
|
+
onAction = onAction,
|
|
235
|
+
closeAction = closeAction,
|
|
236
|
+
primary = primary
|
|
237
|
+
)
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
PopupActionDirection.ROW -> RenderRow(
|
|
242
|
+
secondary = secondary,
|
|
243
|
+
onAction = onAction,
|
|
244
|
+
closeAction = closeAction,
|
|
245
|
+
primary = primary
|
|
246
|
+
)
|
|
247
|
+
|
|
248
|
+
else -> RenderColumn(
|
|
249
|
+
secondary = secondary,
|
|
250
|
+
onAction = onAction,
|
|
251
|
+
closeAction = closeAction,
|
|
252
|
+
primary = primary
|
|
253
|
+
)
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
@Composable
|
|
258
|
+
internal fun RenderRow(
|
|
259
|
+
secondary: PopupAction?,
|
|
260
|
+
closeAction: MutableState<String>,
|
|
261
|
+
primary: PopupAction?,
|
|
262
|
+
onAction: (onPress: (() -> Unit)?) -> Unit,
|
|
263
|
+
) {
|
|
264
|
+
Row(horizontalArrangement = Arrangement.Center) {
|
|
265
|
+
secondary?.let {
|
|
266
|
+
Box(Modifier.weight(1f)) {
|
|
267
|
+
Button(
|
|
268
|
+
size = Size.MEDIUM,
|
|
269
|
+
onClick = {
|
|
270
|
+
closeAction.value = "button_action"
|
|
271
|
+
onAction(it.onPress)
|
|
272
|
+
},
|
|
273
|
+
title = it.title,
|
|
274
|
+
type = ButtonType.TEXT,
|
|
275
|
+
modifier = Modifier.setAutomationId("btn_popup_cancel")
|
|
276
|
+
)
|
|
277
|
+
}
|
|
278
|
+
Spacer(modifier = Modifier.width(Spacing.S))
|
|
279
|
+
}
|
|
280
|
+
Box(Modifier.weight(1f)) {
|
|
281
|
+
Button(
|
|
282
|
+
size = Size.MEDIUM,
|
|
283
|
+
onClick = {
|
|
284
|
+
closeAction.value = "button_action"
|
|
285
|
+
onAction(primary?.onPress)
|
|
286
|
+
},
|
|
287
|
+
title = primary?.title ?: "",
|
|
288
|
+
modifier = Modifier.setAutomationId("btn_popup_allow")
|
|
289
|
+
)
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
@Composable
|
|
295
|
+
internal fun RenderColumn(
|
|
296
|
+
secondary: PopupAction?,
|
|
297
|
+
closeAction: MutableState<String>,
|
|
298
|
+
primary: PopupAction?,
|
|
299
|
+
onAction: (onPress: (() -> Unit)?) -> Unit,
|
|
300
|
+
) {
|
|
301
|
+
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
|
302
|
+
Button(
|
|
303
|
+
size = Size.MEDIUM,
|
|
304
|
+
onClick = {
|
|
305
|
+
closeAction.value = "button_action"
|
|
306
|
+
onAction(primary?.onPress)
|
|
307
|
+
},
|
|
308
|
+
title = primary?.title ?: "",
|
|
309
|
+
modifier = Modifier.setAutomationId("btn_popup_allow")
|
|
310
|
+
)
|
|
311
|
+
secondary?.let {
|
|
312
|
+
Spacer(modifier = Modifier.height(Spacing.S))
|
|
313
|
+
secondary.let {
|
|
314
|
+
Button(
|
|
315
|
+
size = Size.MEDIUM,
|
|
316
|
+
onClick = {
|
|
317
|
+
closeAction.value = "button_action"
|
|
318
|
+
onAction(it.onPress)
|
|
319
|
+
},
|
|
320
|
+
title = it.title,
|
|
321
|
+
type = ButtonType.TEXT,
|
|
322
|
+
modifier = Modifier.setAutomationId("btn_popup_cancel")
|
|
323
|
+
)
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
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.interaction.MutableInteractionSource
|
|
7
|
+
import androidx.compose.foundation.layout.*
|
|
8
|
+
import androidx.compose.foundation.shape.RoundedCornerShape
|
|
9
|
+
import androidx.compose.runtime.Composable
|
|
10
|
+
import androidx.compose.runtime.remember
|
|
11
|
+
import androidx.compose.ui.Alignment
|
|
12
|
+
import androidx.compose.ui.Modifier
|
|
13
|
+
import androidx.compose.ui.draw.clip
|
|
14
|
+
import androidx.compose.ui.layout.ContentScale
|
|
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.modifier.conditional
|
|
22
|
+
import vn.momo.kits.modifier.setAutomationId
|
|
23
|
+
import vn.momo.kits.utils.ifNotNull
|
|
24
|
+
|
|
25
|
+
@Composable
|
|
26
|
+
fun PopupPromotion(
|
|
27
|
+
source: String = "",
|
|
28
|
+
onPress: (() -> Unit) = {},
|
|
29
|
+
onClose: (() -> Unit) = {},
|
|
30
|
+
) {
|
|
31
|
+
Column(Modifier
|
|
32
|
+
.padding(horizontal = Spacing.M)
|
|
33
|
+
.conditional(IsShowBaseLineDebug) {
|
|
34
|
+
border(1.dp, Colors.blue_03)
|
|
35
|
+
}
|
|
36
|
+
.setAutomationId("popup_notify")) {
|
|
37
|
+
source.ifNotNull(
|
|
38
|
+
Image(
|
|
39
|
+
source = source,
|
|
40
|
+
modifier = Modifier.fillMaxWidth()
|
|
41
|
+
.aspectRatio(0.72f)
|
|
42
|
+
.clickable(
|
|
43
|
+
interactionSource = remember { MutableInteractionSource() },
|
|
44
|
+
indication = null,
|
|
45
|
+
onClick = onPress
|
|
46
|
+
),
|
|
47
|
+
options = Options(alignment = Alignment.Center, contentScale = ContentScale.FillBounds)
|
|
48
|
+
), null
|
|
49
|
+
)
|
|
50
|
+
Box(
|
|
51
|
+
modifier = Modifier
|
|
52
|
+
.padding(top = Spacing.S)
|
|
53
|
+
.fillMaxWidth()
|
|
54
|
+
.width(40.dp)
|
|
55
|
+
.height(40.dp),
|
|
56
|
+
contentAlignment = Alignment.Center
|
|
57
|
+
) {
|
|
58
|
+
Box(
|
|
59
|
+
modifier = Modifier
|
|
60
|
+
.width(40.dp)
|
|
61
|
+
.height(40.dp)
|
|
62
|
+
.clickable(
|
|
63
|
+
interactionSource = remember { MutableInteractionSource() },
|
|
64
|
+
indication = null,
|
|
65
|
+
onClick = onClose
|
|
66
|
+
),
|
|
67
|
+
contentAlignment = Alignment.Center
|
|
68
|
+
) {
|
|
69
|
+
Box(
|
|
70
|
+
Modifier
|
|
71
|
+
.width(22.dp)
|
|
72
|
+
.height(22.dp)
|
|
73
|
+
.background(
|
|
74
|
+
color = AppTheme.current.colors.text.default,
|
|
75
|
+
shape = RoundedCornerShape(Radius.M)
|
|
76
|
+
)
|
|
77
|
+
.border(
|
|
78
|
+
width = 2.dp,
|
|
79
|
+
color = AppTheme.current.colors.background.surface,
|
|
80
|
+
shape = RoundedCornerShape(Radius.M)
|
|
81
|
+
)
|
|
82
|
+
.clip(RoundedCornerShape(100))
|
|
83
|
+
,
|
|
84
|
+
contentAlignment = Alignment.Center
|
|
85
|
+
) {
|
|
86
|
+
Icon(
|
|
87
|
+
source = "navigation_close",
|
|
88
|
+
color = AppTheme.current.colors.background.surface,
|
|
89
|
+
size = 16.dp,
|
|
90
|
+
modifier = Modifier.setAutomationId("ic_popup_close")
|
|
91
|
+
)
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|