@momo-kits/native-kits 0.163.1-beta.3-debug → 0.163.1-beta.5-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 (215) hide show
  1. package/CLAUDE.md +1 -1
  2. package/compose/build.gradle.kts +2 -1
  3. package/compose/build.gradle.kts.backup +1 -0
  4. package/compose/compose.podspec +1 -1
  5. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/OsFontScale.android.kt +7 -0
  6. package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +8 -10
  7. package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +3 -0
  8. package/compose/src/commonMain/kotlin/vn/momo/kits/application/WidgetContainer.kt +56 -0
  9. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +11 -9
  10. package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +40 -55
  11. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +69 -26
  12. package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +3 -1
  13. package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +21 -0
  14. package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +3 -6
  15. package/compose/src/commonMain/kotlin/vn/momo/kits/const/KitFontScale.kt +22 -0
  16. package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +28 -21
  17. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +4 -0
  18. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +112 -115
  19. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +11 -6
  20. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +3 -4
  21. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +3 -1
  22. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +2 -1
  23. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/OsFontScale.kt +9 -0
  24. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/OsFontScale.ios.kt +66 -0
  25. package/gradle/libs.versions.toml +2 -0
  26. package/gradle.properties +1 -1
  27. package/ios/Application/ApplicationEnvironment.swift +11 -1
  28. package/ios/Application/Components.swift +34 -44
  29. package/ios/Application/FloatingButton.swift +10 -9
  30. package/ios/Application/HeaderRight.swift +79 -45
  31. package/ios/Application/Navigation/BottomTab/BottomTab.swift +103 -0
  32. package/ios/Application/Navigation/BottomTab/BottomTabBar.swift +215 -0
  33. package/ios/Application/Navigation/BottomTab/CurvedContainer.swift +65 -0
  34. package/ios/Application/Navigation/HeaderBackProps.swift +66 -0
  35. package/ios/Application/Navigation/HeaderTitle.swift +57 -0
  36. package/ios/Application/Navigation/HeaderUser.swift +209 -0
  37. package/ios/Application/Navigation/NavigationContainer.swift +176 -0
  38. package/ios/Application/Navigation/NavigationOptions.swift +109 -0
  39. package/ios/Application/Navigation/Navigator.swift +364 -0
  40. package/ios/Application/Navigation/Overplay/BottomSheet.swift +188 -0
  41. package/ios/Application/Navigation/Overplay/ModalScreen.swift +68 -0
  42. package/ios/Application/Navigation/Overplay/SnackBar.swift +144 -0
  43. package/ios/Application/Navigation/component/Header.swift +178 -0
  44. package/ios/Application/Navigation/component/HeaderBackground.swift +83 -0
  45. package/ios/Application/Navigation/component/HeaderColor.swift +65 -0
  46. package/ios/Application/Screen.swift +2 -1
  47. package/ios/Application/StackScreen.swift +453 -0
  48. package/ios/Avatar/Avatar.swift +193 -0
  49. package/ios/Badge/Badge.swift +11 -14
  50. package/ios/Badge/BadgeRibbon.swift +12 -21
  51. package/ios/BaselineView/BaselineView.swift +163 -0
  52. package/ios/Button/Button.swift +61 -22
  53. package/ios/Carousel/Carousel.swift +181 -0
  54. package/ios/Checkbox/Checkbox.swift +14 -13
  55. package/ios/Chip/Chip.swift +23 -9
  56. package/ios/Collapse/Collapse.swift +182 -0
  57. package/ios/Colors+Radius+Spacing/Colors.swift +12 -12
  58. package/ios/Colors+Radius+Spacing/Theme.swift +295 -0
  59. package/ios/DateTimePicker/DateTimePicker.swift +210 -0
  60. package/ios/DateTimePicker/DateTimePickerTypes.swift +55 -0
  61. package/ios/DateTimePicker/DateTimePickerUtils.swift +167 -0
  62. package/ios/DateTimePicker/WheelPicker.swift +161 -0
  63. package/ios/Divider/Divider.swift +16 -0
  64. package/ios/Extensions/Color++.swift +32 -0
  65. package/ios/Icon/Icon.swift +6 -1
  66. package/ios/IconButton/IconButton.swift +112 -0
  67. package/ios/Input/Input.swift +41 -25
  68. package/ios/Input/InputPhoneNumber.swift +20 -19
  69. package/ios/Input/InputSearch.swift +100 -47
  70. package/ios/Input/InputTextArea.swift +66 -40
  71. package/ios/InputDropDown/InputDropDown.swift +198 -0
  72. package/ios/InputMoney/InputMoney.swift +335 -0
  73. package/ios/InputOTP/InputOTP.swift +210 -0
  74. package/ios/Loader/Loader.swift +113 -0
  75. package/ios/MoMoUIKits.podspec +5 -0
  76. package/ios/Pagination/PaginationDot.swift +61 -0
  77. package/ios/Pagination/PaginationNumber.swift +35 -0
  78. package/ios/Pagination/PaginationScroll.swift +101 -0
  79. package/ios/Pagination/PaginationWhiteDot.swift +37 -0
  80. package/ios/Popup/PopupDisplay.swift +8 -16
  81. package/ios/Popup/PopupInput.swift +2 -8
  82. package/ios/Popup/PopupNotify.swift +219 -0
  83. package/ios/ProgressInfo/ProgressInfo.swift +294 -0
  84. package/ios/Radio/Radio.swift +70 -0
  85. package/ios/Rating/Rating.swift +82 -0
  86. package/ios/Resources/MoMoUIKitsColors.xcassets/AccentColor.colorset/Contents.json +11 -0
  87. package/ios/Resources/MoMoUIKitsColors.xcassets/Background.colorset/Contents.json +38 -0
  88. package/ios/Resources/MoMoUIKitsColors.xcassets/Border.colorset/Contents.json +38 -0
  89. package/ios/Resources/MoMoUIKitsColors.xcassets/Card.colorset/Contents.json +38 -0
  90. package/ios/Resources/MoMoUIKitsColors.xcassets/Contents.json +6 -0
  91. package/ios/Resources/MoMoUIKitsColors.xcassets/Error.colorset/Contents.json +38 -0
  92. package/ios/Resources/MoMoUIKitsColors.xcassets/Primary.colorset/Contents.json +38 -0
  93. package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryDark.colorset/Contents.json +38 -0
  94. package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryLight.colorset/Contents.json +38 -0
  95. package/ios/Resources/MoMoUIKitsColors.xcassets/Secondary.colorset/Contents.json +38 -0
  96. package/ios/Resources/MoMoUIKitsColors.xcassets/Success.colorset/Contents.json +38 -0
  97. package/ios/Resources/MoMoUIKitsColors.xcassets/Text.colorset/Contents.json +38 -0
  98. package/ios/Resources/MoMoUIKitsColors.xcassets/TextSecondary.colorset/Contents.json +38 -0
  99. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/Contents.json +9 -0
  100. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-default.colorset/Contents.json +38 -0
  101. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-disable.colorset/Contents.json +38 -0
  102. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-pressed.colorset/Contents.json +38 -0
  103. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-selected.colorset/Contents.json +38 -0
  104. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-surface.colorset/Contents.json +38 -0
  105. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-tonal.colorset/Contents.json +38 -0
  106. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-default.colorset/Contents.json +38 -0
  107. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-disable.colorset/Contents.json +38 -0
  108. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/gradient.colorset/Contents.json +38 -0
  109. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/primary.colorset/Contents.json +38 -0
  110. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/secondary.colorset/Contents.json +38 -0
  111. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-container.colorset/Contents.json +38 -0
  112. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json +38 -0
  113. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json +38 -0
  114. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json +38 -0
  115. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json +38 -0
  116. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-hint.colorset/Contents.json +38 -0
  117. package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json +38 -0
  118. package/ios/Resources/MoMoUIKitsColors.xcassets/Warning.colorset/Contents.json +38 -0
  119. package/ios/Skeleton/Skeleton.swift +99 -0
  120. package/ios/Slider/Slider.swift +237 -0
  121. package/ios/Stepper/Stepper.swift +220 -0
  122. package/ios/Steps/Steps.swift +451 -0
  123. package/ios/SuggestAction/SuggestAction.swift +97 -0
  124. package/ios/Swipeable/SwipeCell.swift +185 -0
  125. package/ios/Swipeable/SwipeCellModel.swift +21 -0
  126. package/ios/TabView/TabView.swift +530 -0
  127. package/ios/Tag/Tag.swift +98 -0
  128. package/ios/Title/Title.swift +269 -0
  129. package/ios/Tooltip/Tooltip.swift +482 -0
  130. package/ios/Typography/FontScaleStore.swift +19 -0
  131. package/ios/Typography/Text.swift +86 -17
  132. package/ios/Typography/Typography.swift +12 -14
  133. package/ios/Uploader/Uploader.swift +183 -0
  134. package/ios/native-kits.podspec +61 -8
  135. package/ios-demo/MoMoUIKitsDemo.podspec +20 -0
  136. package/ios-demo/README.md +120 -0
  137. package/ios-demo/Resources/dot_loading.json +558 -0
  138. package/ios-demo/Resources/icon.json +4052 -0
  139. package/ios-demo/Resources/lottie_circle_loader.json +1 -0
  140. package/ios-demo/Sources/MoMoUIKitsDemo/DemoScaffold.swift +48 -0
  141. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsBadgeDemoView.swift +25 -0
  142. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsButtonDemoView.swift +26 -0
  143. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsCheckboxDemoView.swift +19 -0
  144. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsChipDemoView.swift +33 -0
  145. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsInputDemoView.swift +48 -0
  146. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsPopupDemoView.swift +21 -0
  147. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsRadioDemoView.swift +17 -0
  148. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsTypographyDemoView.swift +28 -0
  149. package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoContext.swift +31 -0
  150. package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoFactory.swift +24 -0
  151. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AnimatedHeaderDemo.swift +110 -0
  152. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AvatarDemo.swift +93 -0
  153. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BadgeDemo.swift +269 -0
  154. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BaselineView.swift +117 -0
  155. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BottomTabDemo.swift +89 -0
  156. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ButtonDemo.swift +100 -0
  157. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CarouselDemo.swift +126 -0
  158. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CheckboxDemo.swift +63 -0
  159. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ChipDemo.swift +20 -0
  160. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CollapseDemo.swift +93 -0
  161. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ContentView.swift +107 -0
  162. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DateTimePickerDemo.swift +124 -0
  163. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DividerDemo.swift +14 -0
  164. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/HeaderUserDemo.swift +49 -0
  165. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/Home.swift +278 -0
  166. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconButtonDemo.swift +58 -0
  167. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ImageDemo.swift +78 -0
  168. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InformationDemo.swift +138 -0
  169. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDemo.swift +111 -0
  170. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDropDownDemo.swift +136 -0
  171. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputMoneyDemo.swift +107 -0
  172. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputOTPDemo.swift +73 -0
  173. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputPhoneNumberDemo.swift +100 -0
  174. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputSearchDemo.swift +32 -0
  175. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputTextAreaDemo.swift +57 -0
  176. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LoaderDemo.swift +70 -0
  177. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/NavigationDemo.swift +227 -0
  178. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PaginationDemo.swift +72 -0
  179. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupDisplayDemo.swift +175 -0
  180. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +121 -0
  181. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +76 -0
  182. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ProgressInfoDemo.swift +89 -0
  183. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RadioDemo.swift +32 -0
  184. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RatingDemo.swift +56 -0
  185. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SkeletonDemo.swift +32 -0
  186. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SliderDemo.swift +150 -0
  187. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SnackBarDemo.swift +138 -0
  188. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepperDemo.swift +103 -0
  189. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepsDemo.swift +94 -0
  190. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SuggestActionDemo.swift +79 -0
  191. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwipeDemo.swift +152 -0
  192. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwitchDemo.swift +33 -0
  193. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TabViewDemo.swift +190 -0
  194. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TagDemo.swift +34 -0
  195. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ThemeDemo.swift +182 -0
  196. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TitleDemo.swift +109 -0
  197. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TooltipDemo.swift +187 -0
  198. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TypographyDemo.swift +87 -0
  199. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/UploaderDemo.swift +131 -0
  200. package/ios-demo/Sources/MoMoUIKitsDemo/SwiftUIDemoBrowserView.swift +51 -0
  201. package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoModels.swift +15 -0
  202. package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoRegistry.swift +73 -0
  203. package/package.json +1 -1
  204. package/publish.sh +50 -0
  205. package/scripts/gen-ios-color.mjs +136 -0
  206. package/example/ios/Example.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
  207. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  208. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -5
  209. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +0 -58
  210. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/Pods-Example.xcscheme +0 -58
  211. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImage.xcscheme +0 -58
  212. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme +0 -58
  213. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SkeletonUI.xcscheme +0 -58
  214. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -46
  215. package/ios/Application/FontScaleStore.swift +0 -59
@@ -0,0 +1,167 @@
1
+ import Foundation
2
+
3
+ // MARK: - DateTimePickerUtils
4
+
5
+ /// Pure helper functions mirroring Compose `DateTimePickerUtils.kt`.
6
+ public enum DateTimePickerUtils {
7
+
8
+ /// Time mode list for 12-hour clock (only-hour format).
9
+ public static let timeMode: [String] = ["AM", "PM"]
10
+
11
+ /// Pad a number with a leading zero if it's less than 10.
12
+ public static func paddingNum(_ num: Int) -> String {
13
+ return num > 9 ? String(num) : "0\(num)"
14
+ }
15
+
16
+ /// Format a `Date` into a string, matching Compose `formatLocalDateTime`.
17
+ public static func formatDate(
18
+ _ date: Date,
19
+ format: String = "yyyy-MM-dd HH:mm",
20
+ calendar: Calendar = Calendar.current
21
+ ) -> String {
22
+ let c = calendar.dateComponents([.year, .month, .day, .hour, .minute], from: date)
23
+ let year = c.year ?? 0
24
+ let month = c.month ?? 1
25
+ let day = c.day ?? 1
26
+ let hour = c.hour ?? 0
27
+ let minute = c.minute ?? 0
28
+
29
+ switch format {
30
+ case "yyyy-MM-dd HH:mm":
31
+ return "\(year)-\(paddingNum(month))-\(paddingNum(day)) \(paddingNum(hour)):\(paddingNum(minute))"
32
+ case "dd-MM-yyyy":
33
+ return "\(paddingNum(day))-\(paddingNum(month))-\(year)"
34
+ case "HH:mm":
35
+ return "\(paddingNum(hour)):\(paddingNum(minute))"
36
+ default:
37
+ return "\(year)-\(paddingNum(month))-\(paddingNum(day)) \(paddingNum(hour)):\(paddingNum(minute))"
38
+ }
39
+ }
40
+
41
+ /// Number of days in a given month/year.
42
+ private static func daysInMonth(year: Int, month: Int) -> Int {
43
+ switch month {
44
+ case 1, 3, 5, 7, 8, 10, 12: return 31
45
+ case 4, 6, 9, 11: return 30
46
+ case 2: return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)) ? 29 : 28
47
+ default: return 31
48
+ }
49
+ }
50
+
51
+ /// Get a list of day strings constrained by min/max date.
52
+ public static func getDaysInMonth(
53
+ year: Int,
54
+ month: Int,
55
+ minDate: DateComponents,
56
+ maxDate: DateComponents
57
+ ) -> [String] {
58
+ let maxDay = daysInMonth(year: year, month: month)
59
+ var startDay = 1
60
+ var endDay = maxDay
61
+
62
+ if year == minDate.year && month == minDate.month {
63
+ startDay = minDate.day ?? 1
64
+ }
65
+ if year == maxDate.year && month == maxDate.month {
66
+ endDay = maxDate.day ?? maxDay
67
+ }
68
+
69
+ guard startDay <= endDay else { return [paddingNum(startDay)] }
70
+ return (startDay...endDay).map { paddingNum($0) }
71
+ }
72
+
73
+ /// Get a list of month strings constrained by min/max date for a year.
74
+ public static func getMonths(
75
+ minDate: DateComponents,
76
+ maxDate: DateComponents,
77
+ currentYear: Int
78
+ ) -> [String] {
79
+ var startMonth = 1
80
+ var endMonth = 12
81
+
82
+ if currentYear == minDate.year {
83
+ startMonth = minDate.month ?? 1
84
+ }
85
+ if currentYear == maxDate.year {
86
+ endMonth = maxDate.month ?? 12
87
+ }
88
+
89
+ guard startMonth <= endMonth else { return [paddingNum(startMonth)] }
90
+ return (startMonth...endMonth).map { paddingNum($0) }
91
+ }
92
+
93
+ /// Get a list of year strings between min and max date.
94
+ public static func getYears(minDate: DateComponents, maxDate: DateComponents) -> [String] {
95
+ let startYear = minDate.year ?? 0
96
+ let endYear = maxDate.year ?? 0
97
+ guard startYear <= endYear else { return [String(startYear)] }
98
+ return (startYear...endYear).map { String($0) }
99
+ }
100
+
101
+ /// Get a list of hours for either a 12-hour or 24-hour clock.
102
+ public static func getHours(hourMode: Int) -> [String] {
103
+ var hours: [String] = []
104
+ for i in 0..<hourMode {
105
+ let hour = hourMode == 12 ? i + 1 : i
106
+ hours.append(paddingNum(hour))
107
+ }
108
+ return hours
109
+ }
110
+
111
+ /// Get a list of minutes stepped by `interval`.
112
+ public static func getMinutes(interval: Int) -> [String] {
113
+ let step = max(1, interval)
114
+ var minutes: [String] = []
115
+ var min = 0
116
+ while min < 60 {
117
+ minutes.append(paddingNum(min))
118
+ min += step
119
+ }
120
+ return minutes
121
+ }
122
+
123
+ /// Today's date.
124
+ public static func getCurrentDateTime() -> Date {
125
+ return Date()
126
+ }
127
+
128
+ /// Create a date a certain number of years before/after now.
129
+ public static func createRelativeDate(years: Int, calendar: Calendar = Calendar.current) -> Date {
130
+ let now = Date()
131
+ return calendar.date(byAdding: .year, value: years, to: now) ?? now
132
+ }
133
+
134
+ /// Resolve the wheel columns from a format string. Mirrors Compose `getDateComponents`.
135
+ public static func getDateComponents(
136
+ format: String,
137
+ currentData: DateTimePickerData,
138
+ minDate: DateComponents,
139
+ maxDate: DateComponents,
140
+ minuteInterval: Int
141
+ ) -> [DateTimePickerComponent] {
142
+ let formatParts = format.split(whereSeparator: { !$0.isLetter }).map { String($0) }
143
+ let isOnlyHour = formatParts.count == 1 && formatParts[0] == "HH"
144
+
145
+ let dayData = getDaysInMonth(year: currentData.year, month: currentData.month, minDate: minDate, maxDate: maxDate)
146
+ let monthData = getMonths(minDate: minDate, maxDate: maxDate, currentYear: currentData.year)
147
+ let yearData = getYears(minDate: minDate, maxDate: maxDate)
148
+ let hourData = getHours(hourMode: isOnlyHour ? 12 : 24)
149
+ let minData = getMinutes(interval: minuteInterval)
150
+
151
+ var components: [DateTimePickerComponent] = []
152
+ for part in formatParts {
153
+ switch part {
154
+ case "DD": components.append(DateTimePickerComponent(name: "day", data: dayData))
155
+ case "MM": components.append(DateTimePickerComponent(name: "month", data: monthData))
156
+ case "YYYY": components.append(DateTimePickerComponent(name: "year", data: yearData))
157
+ case "HH": components.append(DateTimePickerComponent(name: "hour", data: hourData))
158
+ case "mm": components.append(DateTimePickerComponent(name: "minute", data: minData))
159
+ default: break
160
+ }
161
+ }
162
+ if isOnlyHour {
163
+ components.append(DateTimePickerComponent(name: "timeMode", data: timeMode))
164
+ }
165
+ return components
166
+ }
167
+ }
@@ -0,0 +1,161 @@
1
+ import SwiftUI
2
+
3
+ // MARK: - Constants
4
+
5
+ private let wheelItemHeight: CGFloat = 42
6
+ private let wheelVisibleCount: Int = 5
7
+ private let wheelPickerBorderWidth: CGFloat = 1
8
+
9
+ // MARK: - WheelPicker
10
+
11
+ /// A reusable single-column wheel picker, mirroring Compose `WheelPicker.kt`.
12
+ ///
13
+ /// The data is padded with two empty rows at the top and bottom so the first/last
14
+ /// real value can be centered. The currently centered row is reported back via
15
+ /// `onChange(name, value)`.
16
+ public struct WheelPicker: View {
17
+ // MARK: Lifecycle
18
+
19
+ public init(
20
+ name: String,
21
+ data: [String],
22
+ selectedData: String,
23
+ onChange: @escaping (String, String) -> Void
24
+ ) {
25
+ self.name = name
26
+ self.data = data
27
+ self.selectedData = selectedData
28
+ self.onChange = onChange
29
+ }
30
+
31
+ // MARK: Public
32
+
33
+ public var body: some View {
34
+ let paddedData = ["", ""] + data + ["", ""]
35
+
36
+ return GeometryReader { geo in
37
+ let height = geo.size.height
38
+ ScrollViewReader { proxy in
39
+ ScrollView(.vertical, showsIndicators: false) {
40
+ LazyVStack(spacing: 0) {
41
+ ForEach(Array(paddedData.enumerated()), id: \.offset) { index, text in
42
+ WheelPickerItem(
43
+ text: text,
44
+ isSelected: index == selectedIndex,
45
+ index: index,
46
+ scrollOffset: scrollOffset,
47
+ viewportHeight: height
48
+ )
49
+ .frame(height: wheelItemHeight)
50
+ .id(index)
51
+ }
52
+ }
53
+ .background(
54
+ GeometryReader { inner in
55
+ Color.clear.preference(
56
+ key: WheelOffsetKey.self,
57
+ value: inner.frame(in: .named(scrollSpace)).minY
58
+ )
59
+ }
60
+ )
61
+ }
62
+ .coordinateSpace(name: scrollSpace)
63
+ .onPreferenceChange(WheelOffsetKey.self) { value in
64
+ scrollOffset = value
65
+ updateSelection(paddedData: paddedData, viewportHeight: height)
66
+ }
67
+ .onAppear {
68
+ let initial = max(paddedData.firstIndex(of: selectedData) ?? 2, 2)
69
+ selectedIndex = initial
70
+ DispatchQueue.main.async {
71
+ proxy.scrollTo(initial, anchor: .center)
72
+ }
73
+ }
74
+ }
75
+ }
76
+ .frame(height: wheelItemHeight * CGFloat(wheelVisibleCount))
77
+ .overlay(
78
+ RoundedRectangle(cornerRadius: Radius.S)
79
+ .stroke(Colors.border, lineWidth: wheelPickerBorderWidth)
80
+ )
81
+ .background(Colors.background.clipShape(RoundedRectangle(cornerRadius: Radius.S)))
82
+ .overlay(
83
+ // Centered translucent selection band.
84
+ Rectangle()
85
+ .fill(Colors.blue10)
86
+ .opacity(0.2)
87
+ .frame(height: wheelItemHeight)
88
+ .allowsHitTesting(false)
89
+ )
90
+ .clipShape(RoundedRectangle(cornerRadius: Radius.S))
91
+ }
92
+
93
+ // MARK: Internal
94
+
95
+ let name: String
96
+ let data: [String]
97
+ let selectedData: String
98
+ let onChange: (String, String) -> Void
99
+
100
+ @State private var selectedIndex: Int = 0
101
+ @State private var scrollOffset: CGFloat = 0
102
+
103
+ private let scrollSpace = "wheelScroll"
104
+
105
+ /// Map the current scroll offset to the centered index and report changes.
106
+ private func updateSelection(paddedData: [String], viewportHeight: CGFloat) {
107
+ // `scrollOffset` is the top of the content relative to the viewport (<= 0 when scrolled).
108
+ let centerY = viewportHeight / 2
109
+ let contentCenter = -scrollOffset + centerY
110
+ let rawIndex = Int((contentCenter / wheelItemHeight).rounded()) - 1
111
+ let clamped = max(2, min(rawIndex, paddedData.count - 3))
112
+ guard clamped != selectedIndex else { return }
113
+ selectedIndex = clamped
114
+ let value = paddedData[clamped]
115
+ if !value.isEmpty {
116
+ onChange(name, value)
117
+ }
118
+ }
119
+ }
120
+
121
+ // MARK: - WheelPickerItem
122
+
123
+ private struct WheelPickerItem: View {
124
+ let text: String
125
+ let isSelected: Bool
126
+ let index: Int
127
+ let scrollOffset: CGFloat
128
+ let viewportHeight: CGFloat
129
+
130
+ var body: some View {
131
+ let itemCenterInContent = CGFloat(index) * wheelItemHeight + wheelItemHeight / 2
132
+ let itemCenterInViewport = itemCenterInContent + scrollOffset
133
+ let distanceFromCenter = abs(itemCenterInViewport - viewportHeight / 2) / wheelItemHeight
134
+
135
+ let alpha: Double
136
+ switch distanceFromCenter {
137
+ case ..<1: alpha = 1.0
138
+ case ..<2: alpha = 0.8
139
+ default: alpha = 0.4
140
+ }
141
+
142
+ let scale: CGFloat = isSelected ? 1.0 : 0.87
143
+
144
+ return ZStack {
145
+ MomoText(text, typography: .actionSBold, color: Colors.text)
146
+ .scaleEffect(scale)
147
+ }
148
+ .frame(maxWidth: .infinity)
149
+ .frame(height: wheelItemHeight)
150
+ .opacity(alpha)
151
+ }
152
+ }
153
+
154
+ // MARK: - WheelOffsetKey
155
+
156
+ private struct WheelOffsetKey: PreferenceKey {
157
+ static var defaultValue: CGFloat = 0
158
+ static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) {
159
+ value = nextValue()
160
+ }
161
+ }
@@ -0,0 +1,16 @@
1
+ import Foundation
2
+ import SwiftUI
3
+
4
+ public struct MomoDivider: View {
5
+ @Environment(\.appTheme) private var theme
6
+
7
+ public init() {}
8
+
9
+ public var body: some View {
10
+ Rectangle()
11
+ .fill(theme.colors.border.default)
12
+ .frame(maxWidth: .infinity)
13
+ .frame(height: 1)
14
+ .padding(.vertical, Spacing.XS)
15
+ }
16
+ }
@@ -1,6 +1,38 @@
1
1
  import SwiftUI
2
+ import Foundation
3
+
4
+ private final class MoMoUIKitsBundleToken {}
5
+
6
+ enum MoMoUIKitsResources {
7
+ static let bundle: Bundle = {
8
+ let bundleName = "MoMoUIKitsResources"
9
+ let tokenBundle = Bundle(for: MoMoUIKitsBundleToken.self)
10
+ let frameworkBundle = Bundle(identifier: "org.cocoapods.MoMoUIKits")
11
+ let candidates = [
12
+ Bundle.main.resourceURL,
13
+ tokenBundle.resourceURL,
14
+ tokenBundle.bundleURL,
15
+ frameworkBundle?.resourceURL,
16
+ frameworkBundle?.bundleURL
17
+ ]
18
+
19
+ for candidate in candidates {
20
+ guard let bundleURL = candidate?.appendingPathComponent("\(bundleName).bundle"),
21
+ let bundle = Bundle(url: bundleURL) else {
22
+ continue
23
+ }
24
+ return bundle
25
+ }
26
+
27
+ return Bundle.main
28
+ }()
29
+ }
2
30
 
3
31
  public extension Color {
32
+ static func momoAsset(_ name: String) -> Color {
33
+ Color(name, bundle: MoMoUIKitsResources.bundle)
34
+ }
35
+
4
36
  init(hex: UInt, alpha: Double = 1) {
5
37
  self.init(
6
38
  .sRGB,
@@ -23,6 +23,9 @@ func loadIconSources() -> [String: IconSource] {
23
23
  // Load the JSON data into a global variable
24
24
  let iconSources: [String: IconSource] = loadIconSources()
25
25
 
26
+ // Icons that must never be tinted (mirror Compose `noThemeIcons`)
27
+ let noThemeIcons: [String] = ["ic_round_momo_tiny"]
28
+
26
29
  // Icon ViewModel
27
30
  public struct Icon: View {
28
31
  var source: String
@@ -44,7 +47,9 @@ public struct Icon: View {
44
47
 
45
48
  public var body: some View {
46
49
  if let uri = iconSources[source]?.uri {
47
- ImageView(uri, color: color).frame(width: size, height: size)
50
+ // Mirror Compose: certain icons (e.g. branded glyphs) are never tinted
51
+ let resolvedColor = noThemeIcons.contains(source) ? nil : color
52
+ ImageView(uri, color: resolvedColor).frame(width: size, height: size)
48
53
  }
49
54
  }
50
55
  }
@@ -0,0 +1,112 @@
1
+ import Foundation
2
+ import SwiftUI
3
+
4
+ // MARK: - IconSize
5
+
6
+ public enum IconSize {
7
+ case large
8
+ case small
9
+
10
+ /// Container width/height of the button.
11
+ var containerSize: CGFloat {
12
+ switch self {
13
+ case .large: return 48
14
+ case .small: return 40
15
+ }
16
+ }
17
+
18
+ /// Glyph size of the icon inside the button.
19
+ var iconSize: CGFloat {
20
+ switch self {
21
+ case .large: return 24
22
+ case .small: return 16
23
+ }
24
+ }
25
+
26
+ var radius: CGFloat {
27
+ Radius.XL
28
+ }
29
+ }
30
+
31
+ // MARK: - IconButton
32
+
33
+ public struct IconButton: View {
34
+ @Environment(\.appTheme) private var theme
35
+
36
+ var icon: String
37
+ var onClick: () -> Void
38
+ var type: ButtonType
39
+ var size: IconSize
40
+ var color: Color?
41
+
42
+ public init(
43
+ icon: String = "",
44
+ onClick: @escaping () -> Void,
45
+ type: ButtonType = .primary,
46
+ size: IconSize = .small,
47
+ color: Color? = nil
48
+ ) {
49
+ self.icon = icon
50
+ self.onClick = onClick
51
+ self.type = type
52
+ self.size = size
53
+ self.color = color
54
+ }
55
+
56
+ private var isEnabled: Bool {
57
+ type != .disabled
58
+ }
59
+
60
+ public var body: some View {
61
+ let bg = backgroundColor
62
+ let fg = contentColor
63
+ // OUTLINE allows an override color for its border, mirroring Compose `color ?? theme.colors.primary`.
64
+ let border: Color? = type == .outline ? (color ?? theme.colors.primary) : borderColor
65
+ let borderWidth = type.borderWidth
66
+
67
+ SwiftUI.Button(action: {
68
+ if isEnabled {
69
+ onClick()
70
+ }
71
+ }) {
72
+ Icon(source: icon, size: size.iconSize, color: fg)
73
+ .frame(width: size.containerSize, height: size.containerSize)
74
+ .background(bg)
75
+ .clipShape(RoundedRectangle(cornerRadius: size.radius))
76
+ .overlay(
77
+ RoundedRectangle(cornerRadius: size.radius)
78
+ .stroke(border ?? .clear, lineWidth: border != nil ? borderWidth : 0)
79
+ )
80
+ }
81
+ .buttonStyle(.plain)
82
+ .disabled(!isEnabled)
83
+ }
84
+
85
+ private var backgroundColor: Color {
86
+ switch type {
87
+ case .disabled: return theme.colors.background.disable
88
+ case .primary: return theme.colors.primary
89
+ case .secondary, .outline: return theme.colors.background.surface
90
+ case .tonal: return theme.colors.background.tonal
91
+ case .danger: return theme.colors.error.primary
92
+ case .text: return .clear
93
+ }
94
+ }
95
+
96
+ private var contentColor: Color {
97
+ switch type {
98
+ case .disabled: return theme.colors.text.disable
99
+ case .primary, .danger: return Colors.black01
100
+ case .secondary: return theme.colors.text.default
101
+ case .outline, .tonal, .text: return theme.colors.primary
102
+ }
103
+ }
104
+
105
+ private var borderColor: Color? {
106
+ switch type {
107
+ case .secondary: return theme.colors.border.default
108
+ case .outline: return color ?? theme.colors.primary
109
+ default: return nil
110
+ }
111
+ }
112
+ }