@momo-kits/native-kits 0.163.1-beta.8-debug → 0.163.1-beta.9-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/CLAUDE.md +1 -1
- package/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/OsFontScale.android.kt +7 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +30 -3
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +5 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +1 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +3 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/WidgetContainer.kt +56 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +4 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/KitFontScale.kt +22 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +8 -2
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +63 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +32 -19
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +49 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +1 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +1 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +93 -75
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +26 -7
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +23 -2
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/OsFontScale.kt +9 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +11 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/OsFontScale.ios.kt +66 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +26 -3
- package/gradle.properties +1 -1
- package/ios/Application/ApplicationEnvironment.swift +15 -2
- package/ios/Application/Components.swift +50 -44
- package/ios/Application/FloatingButton.swift +10 -9
- package/ios/Application/HeaderRight.swift +79 -45
- package/ios/Application/Localize.swift +277 -0
- package/ios/Application/MaxApi.swift +18 -0
- package/ios/Application/Navigation/BottomTab/BottomTab.swift +104 -0
- package/ios/Application/Navigation/BottomTab/BottomTabBar.swift +215 -0
- package/ios/Application/Navigation/BottomTab/CurvedContainer.swift +65 -0
- package/ios/Application/Navigation/HeaderBackProps.swift +66 -0
- package/ios/Application/Navigation/HeaderTitle.swift +57 -0
- package/ios/Application/Navigation/HeaderUser.swift +209 -0
- package/ios/Application/Navigation/NavigationContainer.swift +200 -0
- package/ios/Application/Navigation/NavigationOptions.swift +109 -0
- package/ios/Application/Navigation/Navigator.swift +385 -0
- package/ios/Application/Navigation/Overplay/BottomSheet.swift +256 -0
- package/ios/Application/Navigation/Overplay/ModalScreen.swift +74 -0
- package/ios/Application/Navigation/Overplay/SnackBar.swift +144 -0
- package/ios/Application/Navigation/Tracking/ScreenTracker.swift +117 -0
- package/ios/Application/Navigation/component/Header.swift +178 -0
- package/ios/Application/Navigation/component/HeaderBackground.swift +83 -0
- package/ios/Application/Navigation/component/HeaderColor.swift +65 -0
- package/ios/Application/Screen.swift +2 -1
- package/ios/Application/StackScreen.swift +501 -0
- package/ios/Avatar/Avatar.swift +193 -0
- package/ios/Badge/Badge.swift +11 -14
- package/ios/Badge/BadgeRibbon.swift +92 -21
- package/ios/BaselineView/BaselineView.swift +163 -0
- package/ios/Button/Button.swift +124 -29
- package/ios/Carousel/Carousel.swift +196 -0
- package/ios/Checkbox/Checkbox.swift +23 -28
- package/ios/Chip/Chip.swift +56 -33
- package/ios/Collapse/Collapse.swift +192 -0
- package/ios/Colors+Radius+Spacing/Colors.swift +20 -17
- package/ios/Colors+Radius+Spacing/Spacing.swift +3 -1
- package/ios/Colors+Radius+Spacing/Theme.swift +295 -0
- package/ios/DateTimePicker/DateTimePicker.swift +212 -0
- package/ios/DateTimePicker/DateTimePickerTypes.swift +55 -0
- package/ios/DateTimePicker/DateTimePickerUtils.swift +167 -0
- package/ios/DateTimePicker/WheelPicker.swift +165 -0
- package/ios/Divider/Divider.swift +16 -0
- package/ios/Extensions/ActiveOpacityButtonStyle.swift +14 -0
- package/ios/Extensions/Color++.swift +32 -0
- package/ios/Icon/Icon.swift +10 -1
- package/ios/IconButton/IconButton.swift +140 -0
- package/ios/Image/Image.swift +16 -3
- package/ios/Information/Information.swift +3 -1
- package/ios/Input/ErrorView.swift +3 -1
- package/ios/Input/Input.swift +72 -33
- package/ios/Input/InputPhoneNumber.swift +33 -21
- package/ios/Input/InputSearch.swift +107 -48
- package/ios/Input/InputTextArea.swift +134 -64
- package/ios/InputDropDown/InputDropDown.swift +201 -0
- package/ios/InputMoney/InputMoney.swift +347 -0
- package/ios/InputOTP/InputOTP.swift +210 -0
- package/ios/Loader/Loader.swift +113 -0
- package/ios/MoMoUIKits.podspec +5 -0
- package/ios/Pagination/PaginationDot.swift +61 -0
- package/ios/Pagination/PaginationNumber.swift +35 -0
- package/ios/Pagination/PaginationScroll.swift +101 -0
- package/ios/Pagination/PaginationWhiteDot.swift +37 -0
- package/ios/Popup/PopupDisplay.swift +11 -20
- package/ios/Popup/PopupInput.swift +2 -8
- package/ios/Popup/PopupNotify.swift +218 -0
- package/ios/Popup/PopupPromotion.swift +16 -8
- package/ios/ProgressInfo/ProgressInfo.swift +296 -0
- package/ios/Radio/Radio.swift +69 -0
- package/ios/Rating/Rating.swift +82 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Background.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Border.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Card.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Contents.json +6 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Error.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryDark.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryLight.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Success.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Text.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/TextSecondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/Contents.json +9 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-pressed.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-selected.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-surface.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-tonal.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/gradient.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-container.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-hint.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Warning.colorset/Contents.json +38 -0
- package/ios/Skeleton/Skeleton.swift +99 -0
- package/ios/Slider/Slider.swift +237 -0
- package/ios/Stepper/Stepper.swift +220 -0
- package/ios/Steps/Steps.swift +467 -0
- package/ios/SuggestAction/SuggestAction.swift +99 -0
- package/ios/Swipeable/SwipeCell.swift +187 -0
- package/ios/Swipeable/SwipeCellModel.swift +21 -0
- package/ios/Switch/Switch.swift +53 -28
- package/ios/TabView/TabView.swift +534 -0
- package/ios/Tag/Tag.swift +98 -0
- package/ios/Template/TrustBanner/TrustBanner.swift +6 -7
- package/ios/Title/Title.swift +269 -0
- package/ios/Tooltip/Tooltip.swift +485 -0
- package/ios/Typography/FontScaleStore.swift +19 -0
- package/ios/Typography/Text.swift +79 -5
- package/ios/Typography/Typography.swift +3 -0
- package/ios/Uploader/Uploader.swift +174 -0
- package/ios/native-kits.podspec +61 -8
- package/ios-demo/MoMoUIKitsDemo.podspec +20 -0
- package/ios-demo/README.md +120 -0
- package/ios-demo/Resources/dot_loading.json +558 -0
- package/ios-demo/Resources/icon.json +4052 -0
- package/ios-demo/Resources/lottie_circle_loader.json +1 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/DemoScaffold.swift +48 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsBadgeDemoView.swift +25 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsButtonDemoView.swift +26 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsCheckboxDemoView.swift +19 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsChipDemoView.swift +33 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsInputDemoView.swift +48 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsPopupDemoView.swift +21 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsRadioDemoView.swift +17 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsTypographyDemoView.swift +28 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoContext.swift +31 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoFactory.swift +24 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AnimatedHeaderDemo.swift +110 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AvatarDemo.swift +93 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BadgeDemo.swift +269 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BaselineView.swift +117 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BottomTabDemo.swift +89 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ButtonDemo.swift +100 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CarouselDemo.swift +126 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CheckboxDemo.swift +63 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ChipDemo.swift +20 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CollapseDemo.swift +93 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ContentView.swift +107 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DateTimePickerDemo.swift +124 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DividerDemo.swift +14 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/HeaderUserDemo.swift +49 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/Home.swift +279 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconButtonDemo.swift +58 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ImageDemo.swift +78 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InformationDemo.swift +138 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDemo.swift +111 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDropDownDemo.swift +136 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputMoneyDemo.swift +107 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputOTPDemo.swift +73 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputPhoneNumberDemo.swift +100 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputSearchDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputTextAreaDemo.swift +57 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LoaderDemo.swift +70 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LocalizeDemo.swift +188 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/NavigationDemo.swift +229 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PaginationDemo.swift +72 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupDisplayDemo.swift +175 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +121 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +76 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ProgressInfoDemo.swift +89 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RadioDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RatingDemo.swift +56 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SkeletonDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SliderDemo.swift +150 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SnackBarDemo.swift +138 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepperDemo.swift +103 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepsDemo.swift +94 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SuggestActionDemo.swift +79 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwipeDemo.swift +152 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwitchDemo.swift +33 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TabViewDemo.swift +190 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TagDemo.swift +34 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ThemeDemo.swift +182 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TitleDemo.swift +109 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TooltipDemo.swift +187 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TypographyDemo.swift +87 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/UploaderDemo.swift +131 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SwiftUIDemoBrowserView.swift +51 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoModels.swift +15 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoRegistry.swift +73 -0
- package/local.properties +2 -2
- package/package.json +1 -1
- package/publish.sh +53 -0
- package/scripts/gen-ios-color.mjs +136 -0
- package/.claude/settings.local.json +0 -62
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
//
|
|
2
|
+
// ModalScreen.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `ModalScreen` (navigation/ModalScreen.kt).
|
|
6
|
+
// A centered overlay that fades + scales in over a dimmed scrim, and animates
|
|
7
|
+
// back out before the overplay is removed. Driven by `Navigator.showModal`.
|
|
8
|
+
//
|
|
9
|
+
|
|
10
|
+
import SwiftUI
|
|
11
|
+
|
|
12
|
+
@available(iOS 16.0, *)
|
|
13
|
+
struct ModalScreen<Content: View>: View {
|
|
14
|
+
let barrierDismissible: Bool
|
|
15
|
+
let content: () -> Content
|
|
16
|
+
|
|
17
|
+
@EnvironmentObject private var navigator: Navigator
|
|
18
|
+
@Environment(\.applicationEnvironment) private var appEnv
|
|
19
|
+
|
|
20
|
+
@State private var scrimOpacity: CGFloat = 0
|
|
21
|
+
@State private var contentScale: CGFloat = 0.8
|
|
22
|
+
@State private var contentOpacity: CGFloat = 0
|
|
23
|
+
@State private var didAppear = false
|
|
24
|
+
|
|
25
|
+
var body: some View {
|
|
26
|
+
ZStack {
|
|
27
|
+
// Dimmed scrim (mirrors `Color.Black.copy(alpha = 0.6f * alpha)`).
|
|
28
|
+
Color.black.opacity(0.6 * scrimOpacity)
|
|
29
|
+
.ignoresSafeArea()
|
|
30
|
+
.contentShape(Rectangle())
|
|
31
|
+
.onTapGesture {
|
|
32
|
+
if barrierDismissible { navigator.hideOverplay() }
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
content()
|
|
36
|
+
.scaleEffect(contentScale)
|
|
37
|
+
.opacity(contentOpacity)
|
|
38
|
+
}
|
|
39
|
+
.onAppear {
|
|
40
|
+
guard !didAppear else { return }
|
|
41
|
+
didAppear = true
|
|
42
|
+
ScreenTracker.trackPopupDisplayed(
|
|
43
|
+
maxApi: appEnv.maxApi,
|
|
44
|
+
context: appEnv.applicationContext,
|
|
45
|
+
parentScreenName: ScreenTracker.getLastScreenName()
|
|
46
|
+
)
|
|
47
|
+
navigator.registerOverplayDismiss { close() }
|
|
48
|
+
open()
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Mirrors Compose's `openEvent`: 250ms fade + scale to 1.
|
|
53
|
+
private func open() {
|
|
54
|
+
DispatchQueue.main.async {
|
|
55
|
+
withAnimation(.easeOut(duration: 0.25)) {
|
|
56
|
+
scrimOpacity = 1
|
|
57
|
+
contentScale = 1
|
|
58
|
+
contentOpacity = 1
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Mirrors Compose's `closeEvent`: 200ms fade + scale back to 0.8, then remove.
|
|
64
|
+
private func close() {
|
|
65
|
+
withAnimation(.easeIn(duration: 0.2)) {
|
|
66
|
+
scrimOpacity = 0
|
|
67
|
+
contentScale = 0.8
|
|
68
|
+
contentOpacity = 0
|
|
69
|
+
}
|
|
70
|
+
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
|
|
71
|
+
navigator.finishOverplayDismiss()
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
//
|
|
2
|
+
// SnackBar.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `SnackBar` (navigation/component/SnackBar.kt).
|
|
6
|
+
// A snack bar slides up from the bottom (just above the footer / home
|
|
7
|
+
// indicator), stays for `duration`, then slides back down and is removed.
|
|
8
|
+
// `Navigator.showSnackBar(_:)` drives it through the overplay host.
|
|
9
|
+
//
|
|
10
|
+
|
|
11
|
+
import Foundation
|
|
12
|
+
import SwiftUI
|
|
13
|
+
|
|
14
|
+
// MARK: - SnackBar model
|
|
15
|
+
|
|
16
|
+
/// Mirrors Compose's `sealed class SnackBar` (Custom / Toast). A `nil` duration
|
|
17
|
+
/// keeps the snack bar on screen until dismissed manually.
|
|
18
|
+
public struct SnackBar {
|
|
19
|
+
public enum Style {
|
|
20
|
+
case custom
|
|
21
|
+
case toast
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
public let style: Style
|
|
25
|
+
public let duration: TimeInterval?
|
|
26
|
+
public let content: (() -> AnyView)?
|
|
27
|
+
|
|
28
|
+
private init(style: Style, duration: TimeInterval?, content: (() -> AnyView)?) {
|
|
29
|
+
self.style = style
|
|
30
|
+
self.duration = duration
|
|
31
|
+
self.content = content
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/// Mirrors `SnackBar.Custom`: renders arbitrary content.
|
|
35
|
+
public static func custom<V: View>(
|
|
36
|
+
duration: TimeInterval? = 3.0,
|
|
37
|
+
@ViewBuilder content: @escaping () -> V
|
|
38
|
+
) -> SnackBar {
|
|
39
|
+
SnackBar(style: .custom, duration: duration, content: { AnyView(content()) })
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/// Mirrors `SnackBar.Toast`: a placeholder with no custom content (parity with
|
|
43
|
+
/// Compose where `Toast` currently renders nothing).
|
|
44
|
+
public static func toast(duration: TimeInterval? = 3.0) -> SnackBar {
|
|
45
|
+
SnackBar(style: .toast, duration: duration, content: nil)
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// MARK: - SnackBar host view
|
|
50
|
+
|
|
51
|
+
/// Self-animating container. Slides the content up on appear, schedules an
|
|
52
|
+
/// auto-dismiss after `duration`, and animates out before removing the overplay.
|
|
53
|
+
@available(iOS 16.0, *)
|
|
54
|
+
struct SnackBarView: View {
|
|
55
|
+
let snackBar: SnackBar
|
|
56
|
+
/// Bottom inset so the bar sits above the footer / home indicator
|
|
57
|
+
/// (mirrors Compose's `footerHeight` offset).
|
|
58
|
+
let bottomInset: CGFloat
|
|
59
|
+
|
|
60
|
+
@EnvironmentObject private var navigator: Navigator
|
|
61
|
+
|
|
62
|
+
@State private var contentHeight: CGFloat = 0
|
|
63
|
+
@State private var offsetY: CGFloat = 0
|
|
64
|
+
@State private var didAppear = false
|
|
65
|
+
@State private var isClosing = false
|
|
66
|
+
@State private var autoDismissWorkItem: DispatchWorkItem?
|
|
67
|
+
|
|
68
|
+
var body: some View {
|
|
69
|
+
VStack(spacing: 0) {
|
|
70
|
+
Spacer(minLength: 0)
|
|
71
|
+
content
|
|
72
|
+
.background(
|
|
73
|
+
GeometryReader { geo in
|
|
74
|
+
Color.clear.onAppear { contentHeight = geo.size.height }
|
|
75
|
+
}
|
|
76
|
+
)
|
|
77
|
+
.offset(y: offsetY)
|
|
78
|
+
.padding(.bottom, bottomInset)
|
|
79
|
+
}
|
|
80
|
+
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
81
|
+
.onAppear {
|
|
82
|
+
guard !didAppear else { return }
|
|
83
|
+
didAppear = true
|
|
84
|
+
offsetY = max(contentHeight, 200) + bottomInset
|
|
85
|
+
open()
|
|
86
|
+
registerClose()
|
|
87
|
+
scheduleAutoDismiss()
|
|
88
|
+
}
|
|
89
|
+
.onDisappear {
|
|
90
|
+
autoDismissWorkItem?.cancel()
|
|
91
|
+
autoDismissWorkItem = nil
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@ViewBuilder
|
|
96
|
+
private var content: some View {
|
|
97
|
+
switch snackBar.style {
|
|
98
|
+
case .custom:
|
|
99
|
+
snackBar.content?()
|
|
100
|
+
case .toast:
|
|
101
|
+
EmptyView()
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Mirrors Compose's `openEvent`: 350ms slide up.
|
|
106
|
+
private func open() {
|
|
107
|
+
DispatchQueue.main.async {
|
|
108
|
+
withAnimation(.easeOut(duration: 0.35)) {
|
|
109
|
+
offsetY = 0
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// Animated slide down, then remove (mirrors Compose's `closeEvent`/`hideSnackBar`).
|
|
115
|
+
private func close() {
|
|
116
|
+
guard !isClosing else { return }
|
|
117
|
+
isClosing = true
|
|
118
|
+
autoDismissWorkItem?.cancel()
|
|
119
|
+
autoDismissWorkItem = nil
|
|
120
|
+
|
|
121
|
+
withAnimation(.easeIn(duration: 0.2)) {
|
|
122
|
+
offsetY = max(contentHeight, 200) + bottomInset
|
|
123
|
+
}
|
|
124
|
+
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
|
|
125
|
+
navigator.finishOverplayDismiss()
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
private func registerClose() {
|
|
130
|
+
navigator.registerOverplayDismiss { close() }
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
private func scheduleAutoDismiss() {
|
|
134
|
+
guard let duration = snackBar.duration else { return }
|
|
135
|
+
let workItem = DispatchWorkItem {
|
|
136
|
+
// Only auto-dismiss if this snack bar is still the active overplay.
|
|
137
|
+
if navigator.overplay?.type == .snackBar {
|
|
138
|
+
navigator.hideSnackBar()
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
autoDismissWorkItem = workItem
|
|
142
|
+
DispatchQueue.main.asyncAfter(deadline: .now() + duration, execute: workItem)
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
//
|
|
2
|
+
// ScreenTracker.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `navigation/tracking/ScreenTracker.kt`. Pure
|
|
6
|
+
// logic, no platform dependency beyond the `MaxApi` bridge.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
import Foundation
|
|
10
|
+
|
|
11
|
+
public final class ScreenTrackingState {
|
|
12
|
+
public var time: Double = Date().timeIntervalSince1970 * 1000
|
|
13
|
+
public var releaseNavigated: Bool = false
|
|
14
|
+
public var releaseLoad: Bool = false
|
|
15
|
+
public var releaseInteraction: Bool = false
|
|
16
|
+
public var previousScreenName: String?
|
|
17
|
+
public var action: String = "push"
|
|
18
|
+
|
|
19
|
+
public init() {}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
public enum ScreenTracker {
|
|
23
|
+
private static var lastScreenName: String?
|
|
24
|
+
|
|
25
|
+
public static func trackScreenNavigated(
|
|
26
|
+
maxApi: MaxApi?,
|
|
27
|
+
context: MiniAppContext?,
|
|
28
|
+
screenName: String,
|
|
29
|
+
action: String,
|
|
30
|
+
state: ScreenTrackingState
|
|
31
|
+
) {
|
|
32
|
+
guard !state.releaseNavigated else { return }
|
|
33
|
+
|
|
34
|
+
let previousScreen = lastScreenName
|
|
35
|
+
lastScreenName = screenName
|
|
36
|
+
|
|
37
|
+
var params = buildBaseParams(context: context, screenName: screenName)
|
|
38
|
+
params["pre_screen_name"] = previousScreen
|
|
39
|
+
params["state"] = "navigated"
|
|
40
|
+
params["action"] = action
|
|
41
|
+
maxApi?.track(eventName: "auto_screen_navigated", params: params)
|
|
42
|
+
|
|
43
|
+
state.releaseNavigated = true
|
|
44
|
+
state.previousScreenName = previousScreen
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
public static func trackScreenDisplayed(
|
|
48
|
+
maxApi: MaxApi?,
|
|
49
|
+
context: MiniAppContext?,
|
|
50
|
+
screenName: String,
|
|
51
|
+
duration: Double,
|
|
52
|
+
state: ScreenTrackingState
|
|
53
|
+
) {
|
|
54
|
+
guard !state.releaseLoad else { return }
|
|
55
|
+
|
|
56
|
+
var params = buildBaseParams(context: context, screenName: screenName)
|
|
57
|
+
params["state"] = "load"
|
|
58
|
+
params["duration"] = duration
|
|
59
|
+
maxApi?.track(eventName: "auto_screen_displayed", params: params)
|
|
60
|
+
|
|
61
|
+
state.releaseLoad = true
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
public static func trackScreenInteracted(
|
|
65
|
+
maxApi: MaxApi?,
|
|
66
|
+
context: MiniAppContext?,
|
|
67
|
+
screenName: String,
|
|
68
|
+
duration: Double,
|
|
69
|
+
totalDuration: Double,
|
|
70
|
+
state: ScreenTrackingState
|
|
71
|
+
) {
|
|
72
|
+
guard !state.releaseInteraction else { return }
|
|
73
|
+
|
|
74
|
+
var params = buildBaseParams(context: context, screenName: screenName)
|
|
75
|
+
params["state"] = "interaction"
|
|
76
|
+
params["duration"] = duration
|
|
77
|
+
params["total_duration"] = totalDuration
|
|
78
|
+
maxApi?.track(eventName: "auto_screen_interacted", params: params)
|
|
79
|
+
|
|
80
|
+
state.releaseInteraction = true
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
public static func trackPopupDisplayed(
|
|
84
|
+
maxApi: MaxApi?,
|
|
85
|
+
context: MiniAppContext?,
|
|
86
|
+
parentScreenName: String?
|
|
87
|
+
) {
|
|
88
|
+
maxApi?.track(eventName: "auto_popup_displayed", params: [
|
|
89
|
+
"screen_name": parentScreenName,
|
|
90
|
+
"tracking_source": 1,
|
|
91
|
+
"app_id": context?.appId,
|
|
92
|
+
"feature_code": context?.appCode,
|
|
93
|
+
"kits_version": nil,
|
|
94
|
+
"component_name": "Modal"
|
|
95
|
+
])
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
private static func buildBaseParams(
|
|
99
|
+
context: MiniAppContext?,
|
|
100
|
+
screenName: String,
|
|
101
|
+
componentName: String = "Screen"
|
|
102
|
+
) -> [String: Any?] {
|
|
103
|
+
[
|
|
104
|
+
"app_id": context?.appId,
|
|
105
|
+
"feature_code": context?.appCode,
|
|
106
|
+
"screen_name": screenName,
|
|
107
|
+
"component_name": componentName,
|
|
108
|
+
"tracking_source": 1
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
public static func getLastScreenName() -> String? { lastScreenName }
|
|
113
|
+
|
|
114
|
+
public static func reset() {
|
|
115
|
+
lastScreenName = nil
|
|
116
|
+
}
|
|
117
|
+
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Header.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `Header` (navigation/component/Header.kt).
|
|
6
|
+
// Renders the 52pt header bar: a circular back button (colors resolved via
|
|
7
|
+
// `getHeaderColor`), the title area (`HeaderContent` → plain title, user title
|
|
8
|
+
// or inline search), the header-right toolkit, and a scroll-triggered bottom
|
|
9
|
+
// shadow. The header band background itself is painted by `HeaderBackground`.
|
|
10
|
+
//
|
|
11
|
+
// Named `NavigationHeader` to coexist with the legacy `Header` in
|
|
12
|
+
// `Components.swift` (kept as-is, used as a package elsewhere; to be marked
|
|
13
|
+
// deprecated later). Used by the new `StackScreen` navigation path.
|
|
14
|
+
//
|
|
15
|
+
|
|
16
|
+
import SwiftUI
|
|
17
|
+
|
|
18
|
+
public struct NavigationHeader: View {
|
|
19
|
+
var headerType: HeaderType = .default
|
|
20
|
+
var titlePosition: TitlePosition
|
|
21
|
+
var title: String
|
|
22
|
+
/// Optional rich title (mirrors Compose's `HeaderTitle`); `.user` renders an
|
|
23
|
+
/// avatar group, `.default`/nil renders plain `title`.
|
|
24
|
+
var headerTitle: HeaderTitle?
|
|
25
|
+
var headerRight: (() -> any View)? = { HeaderRight() }
|
|
26
|
+
var goBack: (() -> Void)?
|
|
27
|
+
var opacity: CGFloat = 1
|
|
28
|
+
var animatedHeader: AnimatedHeader?
|
|
29
|
+
var scrollState: CGFloat = 0
|
|
30
|
+
var inputSearchProps: InputSearchProps?
|
|
31
|
+
var tintColor: Color?
|
|
32
|
+
/// Title opacity; used by the animated search header to fade the title out on scroll.
|
|
33
|
+
var titleOpacity: CGFloat = 1
|
|
34
|
+
|
|
35
|
+
public init(
|
|
36
|
+
headerType: HeaderType = .default,
|
|
37
|
+
titlePosition: TitlePosition,
|
|
38
|
+
title: String,
|
|
39
|
+
headerTitle: HeaderTitle? = nil,
|
|
40
|
+
headerRight: (() -> any View)? = { HeaderRight() },
|
|
41
|
+
goBack: (() -> Void)? = nil,
|
|
42
|
+
opacity: CGFloat = 1,
|
|
43
|
+
animatedHeader: AnimatedHeader? = nil,
|
|
44
|
+
scrollState: CGFloat = 0,
|
|
45
|
+
inputSearchProps: InputSearchProps? = nil,
|
|
46
|
+
tintColor: Color? = nil,
|
|
47
|
+
titleOpacity: CGFloat = 1
|
|
48
|
+
) {
|
|
49
|
+
self.headerType = headerType
|
|
50
|
+
self.titlePosition = titlePosition
|
|
51
|
+
self.title = title
|
|
52
|
+
self.headerTitle = headerTitle
|
|
53
|
+
self.headerRight = headerRight
|
|
54
|
+
self.goBack = goBack
|
|
55
|
+
self.opacity = opacity
|
|
56
|
+
self.animatedHeader = animatedHeader
|
|
57
|
+
self.scrollState = scrollState
|
|
58
|
+
self.inputSearchProps = inputSearchProps
|
|
59
|
+
self.tintColor = tintColor
|
|
60
|
+
self.titleOpacity = titleOpacity
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
private var isAnimated: Bool { animatedHeader != nil }
|
|
64
|
+
private var isSurface: Bool { animatedHeader?.isSurface ?? true }
|
|
65
|
+
|
|
66
|
+
private var headerColor: HeaderColor {
|
|
67
|
+
getHeaderColor(isAnimated: isAnimated, isSurface: isSurface, opacity: opacity, tintColor: tintColor)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/// Centered title needs a full-width overlay to stay screen-centered, not
|
|
71
|
+
/// boxed between the back button and the header-right (mirrors Compose).
|
|
72
|
+
private var centerTitle: Bool {
|
|
73
|
+
guard inputSearchProps == nil else { return false }
|
|
74
|
+
let isDefault = headerTitle == nil || headerTitle?.defaultTitle != nil
|
|
75
|
+
return titlePosition == .center && isDefault
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
public var body: some View {
|
|
79
|
+
if headerType != .none {
|
|
80
|
+
ZStack {
|
|
81
|
+
HStack(spacing: 0) {
|
|
82
|
+
if let goBack {
|
|
83
|
+
BackButton(color: headerColor, onBack: goBack)
|
|
84
|
+
Spacer().frame(width: Spacing.S)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if centerTitle {
|
|
88
|
+
Spacer()
|
|
89
|
+
} else {
|
|
90
|
+
titleArea(centered: false)
|
|
91
|
+
.frame(maxWidth: .infinity, alignment: .leading)
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if let headerRight {
|
|
95
|
+
AnyView(headerRight())
|
|
96
|
+
.background(
|
|
97
|
+
GeometryReader { geo in
|
|
98
|
+
Color.clear.preference(key: HeaderRightWidthKey.self, value: geo.size.width)
|
|
99
|
+
}
|
|
100
|
+
)
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
.padding(.horizontal, Spacing.M)
|
|
104
|
+
|
|
105
|
+
if centerTitle {
|
|
106
|
+
titleArea(centered: true)
|
|
107
|
+
.padding(.horizontal, Spacing.M)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
.frame(height: HEADER_HEIGHT)
|
|
111
|
+
.overlay(alignment: .bottom) { VerticalShadow(opacity: opacity) }
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/// Mirrors Compose's `HeaderContent`: plain title, user title, or — when a
|
|
116
|
+
/// header search is active — the inline search field.
|
|
117
|
+
@ViewBuilder
|
|
118
|
+
private func titleArea(centered: Bool) -> some View {
|
|
119
|
+
if let inputSearchProps {
|
|
120
|
+
InputSearch(props: inputSearchProps)
|
|
121
|
+
} else if case let .user(userData)? = headerTitle {
|
|
122
|
+
if #available(iOS 16.0, *) {
|
|
123
|
+
HeaderUserView(userData)
|
|
124
|
+
}
|
|
125
|
+
} else {
|
|
126
|
+
MomoText(
|
|
127
|
+
headerTitle?.defaultTitle ?? title,
|
|
128
|
+
typography: .actionSBold,
|
|
129
|
+
color: headerColor.tintIconColor,
|
|
130
|
+
textAlign: centered ? .center : .leading,
|
|
131
|
+
maxLines: 1
|
|
132
|
+
)
|
|
133
|
+
.opacity(titleOpacity)
|
|
134
|
+
.truncationMode(.tail)
|
|
135
|
+
.frame(maxWidth: centered ? .infinity : nil, alignment: centered ? .center : .leading)
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// MARK: - Back button
|
|
141
|
+
|
|
142
|
+
/// Mirrors Compose's `BackButton`: a 28pt circular control with the back arrow.
|
|
143
|
+
private struct BackButton: View {
|
|
144
|
+
let color: HeaderColor
|
|
145
|
+
let onBack: () -> Void
|
|
146
|
+
|
|
147
|
+
var body: some View {
|
|
148
|
+
SwiftUI.Button(action: onBack) {
|
|
149
|
+
Circle()
|
|
150
|
+
.fill(color.backgroundButton)
|
|
151
|
+
.overlay(Circle().stroke(color.borderColor, lineWidth: 0.2))
|
|
152
|
+
.frame(width: 28, height: 28)
|
|
153
|
+
.overlay(Icon(source: "arrow-back", size: 20, color: color.tintIconColor))
|
|
154
|
+
}
|
|
155
|
+
.buttonStyle(.plain)
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// MARK: - Vertical shadow
|
|
160
|
+
|
|
161
|
+
/// Mirrors Compose's `VerticalShadow`: a 6pt drop shadow under the header that
|
|
162
|
+
/// only appears once the header is fully opaque (scrolled).
|
|
163
|
+
private struct VerticalShadow: View {
|
|
164
|
+
let opacity: CGFloat
|
|
165
|
+
|
|
166
|
+
var body: some View {
|
|
167
|
+
if opacity >= 1 {
|
|
168
|
+
LinearGradient(
|
|
169
|
+
gradient: Gradient(colors: [Color.black.opacity(0.05), .clear]),
|
|
170
|
+
startPoint: .top,
|
|
171
|
+
endPoint: .bottom
|
|
172
|
+
)
|
|
173
|
+
.frame(height: 6)
|
|
174
|
+
.frame(maxWidth: .infinity)
|
|
175
|
+
.offset(y: 6)
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
//
|
|
2
|
+
// HeaderBackground.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `HeaderBackground` (navigation/component/HeaderBackground.kt).
|
|
6
|
+
// Paints the header band behind the `Header`: a flat surface for `.default`,
|
|
7
|
+
// the taller pink gradient for `.extended`, fading out as the screen scrolls.
|
|
8
|
+
// Stays transparent when the header is transparent or the content is full-screen.
|
|
9
|
+
//
|
|
10
|
+
// Named `NavigationHeaderBackground` to coexist with the legacy
|
|
11
|
+
// `HeaderBackground` in `Components.swift` (kept as-is, used as a package
|
|
12
|
+
// elsewhere; to be marked deprecated later). Used by the new `StackScreen`.
|
|
13
|
+
//
|
|
14
|
+
|
|
15
|
+
import SwiftUI
|
|
16
|
+
|
|
17
|
+
public struct NavigationHeaderBackground: View {
|
|
18
|
+
var headerType: HeaderType = .default
|
|
19
|
+
var scrollState: CGFloat
|
|
20
|
+
var headerTransparent: Bool = false
|
|
21
|
+
var fullScreenContent: Bool = false
|
|
22
|
+
|
|
23
|
+
public init(
|
|
24
|
+
headerType: HeaderType = .default,
|
|
25
|
+
scrollState: CGFloat = 0,
|
|
26
|
+
headerTransparent: Bool = false,
|
|
27
|
+
fullScreenContent: Bool = false
|
|
28
|
+
) {
|
|
29
|
+
self.headerType = headerType
|
|
30
|
+
self.scrollState = scrollState
|
|
31
|
+
self.headerTransparent = headerTransparent
|
|
32
|
+
self.fullScreenContent = fullScreenContent
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
private func pinkGradient(topColor: Color, bottomColor: Color) -> LinearGradient {
|
|
36
|
+
LinearGradient(
|
|
37
|
+
gradient: Gradient(colors: [
|
|
38
|
+
topColor,
|
|
39
|
+
bottomColor
|
|
40
|
+
]),
|
|
41
|
+
startPoint: .top,
|
|
42
|
+
endPoint: .bottom
|
|
43
|
+
)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
public var body: some View {
|
|
47
|
+
let statusBarHeight = safeAreaTopInset()
|
|
48
|
+
let opacity = max(0, 1 - scrollState / CGFloat(HEADER_HEIGHT))
|
|
49
|
+
let minHeight = fullScreenContent ? 0 : statusBarHeight + HEADER_HEIGHT
|
|
50
|
+
let maxHeight: CGFloat = 154
|
|
51
|
+
let backgroundColor = headerTransparent ? Color.clear : Colors.black01
|
|
52
|
+
let topColor = opacity == 0 ? backgroundColor : Color(hex: 0xFDCADE)
|
|
53
|
+
|
|
54
|
+
Group {
|
|
55
|
+
switch headerType {
|
|
56
|
+
case .default:
|
|
57
|
+
ZStack(alignment: .bottom) {
|
|
58
|
+
backgroundColor
|
|
59
|
+
.frame(height: minHeight)
|
|
60
|
+
if !headerTransparent {
|
|
61
|
+
pinkGradient(topColor: topColor, bottomColor: backgroundColor)
|
|
62
|
+
.frame(height: maxHeight)
|
|
63
|
+
.frame(height: minHeight, alignment: .top)
|
|
64
|
+
.clipped()
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
case .extended:
|
|
69
|
+
ZStack {
|
|
70
|
+
if !headerTransparent {
|
|
71
|
+
backgroundColor
|
|
72
|
+
.frame(height: maxHeight)
|
|
73
|
+
pinkGradient(topColor: topColor, bottomColor: backgroundColor)
|
|
74
|
+
.frame(height: maxHeight)
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
case .none:
|
|
79
|
+
EmptyView()
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
//
|
|
2
|
+
// HeaderColor.swift
|
|
3
|
+
// MoMoUIKits
|
|
4
|
+
//
|
|
5
|
+
// SwiftUI mirror of Compose's `HeaderColor` + `getHeaderColor`
|
|
6
|
+
// (navigation/component/Header.kt). Resolves the back-button / control colors
|
|
7
|
+
// for the header based on whether it sits over an animated (image) header and
|
|
8
|
+
// how far the screen has scrolled.
|
|
9
|
+
//
|
|
10
|
+
|
|
11
|
+
import SwiftUI
|
|
12
|
+
|
|
13
|
+
/// Header band height, mirrors Compose's `HEADER_HEIGHT`.
|
|
14
|
+
public let HEADER_HEIGHT: CGFloat = 52
|
|
15
|
+
|
|
16
|
+
/// Mirrors Compose's `enum InputSearchType`.
|
|
17
|
+
enum NavInputSearchType {
|
|
18
|
+
case none, header, animated
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/// Mirrors Compose's `HeaderColor`.
|
|
22
|
+
public struct HeaderColor {
|
|
23
|
+
public let tintIconColor: Color
|
|
24
|
+
public let backgroundButton: Color
|
|
25
|
+
public let borderColor: Color
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/// Mirrors Compose's `getHeaderColor`. On iOS the "animated" header is expressed
|
|
29
|
+
/// via a non-nil `animatedHeader`, so we pass `isAnimated`/`isSurface` instead of
|
|
30
|
+
/// the Compose `HeaderType.Animated` case.
|
|
31
|
+
func getHeaderColor(
|
|
32
|
+
isAnimated: Bool,
|
|
33
|
+
isSurface: Bool,
|
|
34
|
+
opacity: CGFloat,
|
|
35
|
+
tintColor: Color?,
|
|
36
|
+
defaultColor: Color = Colors.black17
|
|
37
|
+
) -> HeaderColor {
|
|
38
|
+
if isAnimated {
|
|
39
|
+
if opacity >= 1 || !isSurface {
|
|
40
|
+
return HeaderColor(
|
|
41
|
+
tintIconColor: Colors.black17,
|
|
42
|
+
backgroundButton: Colors.black01.opacity(0.6),
|
|
43
|
+
borderColor: Colors.black20.opacity(0.2)
|
|
44
|
+
)
|
|
45
|
+
}
|
|
46
|
+
return HeaderColor(
|
|
47
|
+
tintIconColor: Colors.black01,
|
|
48
|
+
backgroundButton: Colors.black20.opacity(0.6),
|
|
49
|
+
borderColor: .clear
|
|
50
|
+
)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if tintColor == Colors.black01 {
|
|
54
|
+
return HeaderColor(
|
|
55
|
+
tintIconColor: Colors.black01,
|
|
56
|
+
backgroundButton: Colors.black20.opacity(0.6),
|
|
57
|
+
borderColor: Colors.black01.opacity(0.2)
|
|
58
|
+
)
|
|
59
|
+
}
|
|
60
|
+
return HeaderColor(
|
|
61
|
+
tintIconColor: tintColor ?? defaultColor,
|
|
62
|
+
backgroundButton: Colors.black01.opacity(0.6),
|
|
63
|
+
borderColor: Colors.black20.opacity(0.2)
|
|
64
|
+
)
|
|
65
|
+
}
|
|
@@ -229,6 +229,7 @@ public struct Screen<Content: View>: View {
|
|
|
229
229
|
struct Footer: View {
|
|
230
230
|
var footerView: AnyView
|
|
231
231
|
var keyboardSize: CGFloat
|
|
232
|
+
var bottomInset: CGFloat = 0
|
|
232
233
|
|
|
233
234
|
var body: some View {
|
|
234
235
|
VStack {
|
|
@@ -236,7 +237,7 @@ struct Footer: View {
|
|
|
236
237
|
}
|
|
237
238
|
.padding(.vertical, Spacing.S)
|
|
238
239
|
.padding(.horizontal, Spacing.M)
|
|
239
|
-
.padding(.bottom, keyboardSize)
|
|
240
|
+
.padding(.bottom, keyboardSize - bottomInset)
|
|
240
241
|
.background(Colors.black01)
|
|
241
242
|
.overlay(
|
|
242
243
|
Rectangle()
|