@oxyhq/services 5.25.0 → 5.26.1

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 (532) hide show
  1. package/README.md +60 -8
  2. package/lib/commonjs/core/AuthManager.js +405 -0
  3. package/lib/commonjs/core/AuthManager.js.map +1 -0
  4. package/lib/commonjs/core/HttpService.js +39 -1
  5. package/lib/commonjs/core/HttpService.js.map +1 -1
  6. package/lib/commonjs/core/index.js +16 -0
  7. package/lib/commonjs/core/index.js.map +1 -1
  8. package/lib/commonjs/core/mixins/OxyServices.fedcm.js +38 -44
  9. package/lib/commonjs/core/mixins/OxyServices.fedcm.js.map +1 -1
  10. package/lib/commonjs/core/mixins/OxyServices.popup.js +9 -7
  11. package/lib/commonjs/core/mixins/OxyServices.popup.js.map +1 -1
  12. package/lib/commonjs/crypto/keyManager.js +16 -21
  13. package/lib/commonjs/crypto/keyManager.js.map +1 -1
  14. package/lib/commonjs/index.js +386 -18
  15. package/lib/commonjs/index.js.map +1 -1
  16. package/lib/commonjs/lib/sonner.js +13 -17
  17. package/lib/commonjs/lib/sonner.js.map +1 -1
  18. package/lib/commonjs/lib/sonner.native.js +24 -0
  19. package/lib/commonjs/lib/sonner.native.js.map +1 -0
  20. package/lib/commonjs/lib/sonner.web.js +24 -0
  21. package/lib/commonjs/lib/sonner.web.js.map +1 -0
  22. package/lib/commonjs/shared/index.js +227 -0
  23. package/lib/commonjs/shared/index.js.map +1 -0
  24. package/lib/commonjs/shared/utils/colorUtils.js +161 -0
  25. package/lib/commonjs/shared/utils/colorUtils.js.map +1 -0
  26. package/lib/commonjs/shared/utils/debugUtils.js +84 -0
  27. package/lib/commonjs/shared/utils/debugUtils.js.map +1 -0
  28. package/lib/commonjs/shared/utils/errorUtils.js +190 -0
  29. package/lib/commonjs/shared/utils/errorUtils.js.map +1 -0
  30. package/lib/commonjs/shared/utils/index.js +196 -0
  31. package/lib/commonjs/shared/utils/index.js.map +1 -0
  32. package/lib/commonjs/shared/utils/networkUtils.js +213 -0
  33. package/lib/commonjs/shared/utils/networkUtils.js.map +1 -0
  34. package/lib/commonjs/shared/utils/themeUtils.js +118 -0
  35. package/lib/commonjs/shared/utils/themeUtils.js.map +1 -0
  36. package/lib/commonjs/ui/client.js +1 -1
  37. package/lib/commonjs/ui/components/BottomSheetRouter.js +1 -1
  38. package/lib/commonjs/ui/components/FollowButton.js +1 -1
  39. package/lib/commonjs/ui/components/FontLoader.js +1 -1
  40. package/lib/commonjs/ui/components/FontLoader.js.map +1 -1
  41. package/lib/commonjs/ui/components/GroupedItem.js +1 -1
  42. package/lib/commonjs/ui/components/Header.js +1 -1
  43. package/lib/commonjs/ui/components/OxyProvider.js +10 -2
  44. package/lib/commonjs/ui/components/OxyProvider.js.map +1 -1
  45. package/lib/commonjs/ui/components/OxySignInButton.js +19 -20
  46. package/lib/commonjs/ui/components/OxySignInButton.js.map +1 -1
  47. package/lib/commonjs/ui/components/ProfileCard.js +1 -1
  48. package/lib/commonjs/ui/components/ProfileCard.js.map +1 -1
  49. package/lib/commonjs/ui/components/QuickActions.js +1 -1
  50. package/lib/commonjs/ui/components/QuickActions.js.map +1 -1
  51. package/lib/commonjs/ui/components/Section.js +1 -1
  52. package/lib/commonjs/ui/components/SectionTitle.js +1 -1
  53. package/lib/commonjs/ui/components/SignInModal.js +546 -0
  54. package/lib/commonjs/ui/components/SignInModal.js.map +1 -0
  55. package/lib/commonjs/ui/components/payment/PaymentDetailsStep.js +1 -1
  56. package/lib/commonjs/ui/context/OxyContext.js +3 -2
  57. package/lib/commonjs/ui/context/OxyContext.js.map +1 -1
  58. package/lib/commonjs/ui/hooks/mutations/mutationFactory.js +1 -1
  59. package/lib/commonjs/ui/hooks/mutations/useAccountMutations.js +1 -1
  60. package/lib/commonjs/ui/hooks/mutations/useServicesMutations.js +1 -1
  61. package/lib/commonjs/ui/hooks/useAsyncAction.js +1 -1
  62. package/lib/commonjs/ui/hooks/{use-color-scheme.js → useColorScheme.js} +1 -1
  63. package/lib/commonjs/ui/hooks/useColorScheme.js.map +1 -0
  64. package/lib/commonjs/ui/hooks/useSessionSocket.js +7 -13
  65. package/lib/commonjs/ui/hooks/useSessionSocket.js.map +1 -1
  66. package/lib/commonjs/ui/hooks/useSettingToggle.js +1 -1
  67. package/lib/commonjs/ui/hooks/useThemeColors.js +1 -1
  68. package/lib/commonjs/ui/hooks/useThemeStyles.js +1 -1
  69. package/lib/commonjs/ui/navigation/bottomSheetManager.js +5 -2
  70. package/lib/commonjs/ui/navigation/bottomSheetManager.js.map +1 -1
  71. package/lib/commonjs/ui/navigation/routes.js +7 -8
  72. package/lib/commonjs/ui/navigation/routes.js.map +1 -1
  73. package/lib/commonjs/ui/screens/AccountCenterScreen.js +8 -8
  74. package/lib/commonjs/ui/screens/AccountCenterScreen.js.map +1 -1
  75. package/lib/commonjs/ui/screens/AccountOverviewScreen.js +7 -7
  76. package/lib/commonjs/ui/screens/AccountOverviewScreen.js.map +1 -1
  77. package/lib/commonjs/ui/screens/AccountSettingsScreen.js +3 -3
  78. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js +5 -5
  79. package/lib/commonjs/ui/screens/AccountSwitcherScreen.js.map +1 -1
  80. package/lib/commonjs/ui/screens/AccountVerificationScreen.js +1 -1
  81. package/lib/commonjs/ui/screens/AppInfoScreen.js +2 -2
  82. package/lib/commonjs/ui/screens/EditProfileFieldScreen.js +2 -2
  83. package/lib/commonjs/ui/screens/FAQScreen.js +1 -1
  84. package/lib/commonjs/ui/screens/FeedbackScreen.js +1 -1
  85. package/lib/commonjs/ui/screens/FileManagementScreen.js +2 -2
  86. package/lib/commonjs/ui/screens/FollowersListScreen.js +18 -0
  87. package/lib/commonjs/ui/screens/FollowersListScreen.js.map +1 -0
  88. package/lib/commonjs/ui/screens/FollowingListScreen.js +18 -0
  89. package/lib/commonjs/ui/screens/FollowingListScreen.js.map +1 -0
  90. package/lib/commonjs/ui/screens/HelpSupportScreen.js +2 -2
  91. package/lib/commonjs/ui/screens/HelpSupportScreen.js.map +1 -1
  92. package/lib/commonjs/ui/screens/HistoryViewScreen.js +2 -2
  93. package/lib/commonjs/ui/screens/LanguageSelectorScreen.js +2 -2
  94. package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js +229 -0
  95. package/lib/commonjs/ui/screens/LearnMoreUsernamesScreen.js.map +1 -0
  96. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js +2 -2
  97. package/lib/commonjs/ui/screens/LegalDocumentsScreen.js.map +1 -1
  98. package/lib/commonjs/ui/screens/OxyAuthScreen.js +9 -21
  99. package/lib/commonjs/ui/screens/OxyAuthScreen.js.map +1 -1
  100. package/lib/commonjs/ui/screens/PremiumSubscriptionScreen.js +2 -2
  101. package/lib/commonjs/ui/screens/PrivacySettingsScreen.js +1 -1
  102. package/lib/commonjs/ui/screens/ProfileScreen.js +1 -1
  103. package/lib/commonjs/ui/screens/ProfileScreen.js.map +1 -1
  104. package/lib/commonjs/ui/screens/SavesCollectionsScreen.js +2 -2
  105. package/lib/commonjs/ui/screens/SessionManagementScreen.js +1 -1
  106. package/lib/commonjs/ui/screens/UserListScreen.js +411 -0
  107. package/lib/commonjs/ui/screens/UserListScreen.js.map +1 -0
  108. package/lib/commonjs/ui/screens/WelcomeNewUserScreen.js +1 -1
  109. package/lib/commonjs/ui/screens/karma/KarmaAboutScreen.js +1 -1
  110. package/lib/commonjs/ui/screens/karma/KarmaCenterScreen.js +1 -1
  111. package/lib/commonjs/ui/screens/karma/KarmaFAQScreen.js +1 -1
  112. package/lib/commonjs/ui/screens/karma/KarmaLeaderboardScreen.js +1 -1
  113. package/lib/commonjs/ui/screens/karma/KarmaRewardsScreen.js +1 -1
  114. package/lib/commonjs/ui/screens/karma/KarmaRulesScreen.js +1 -1
  115. package/lib/commonjs/ui/stores/authStore.js +4 -6
  116. package/lib/commonjs/ui/stores/authStore.js.map +1 -1
  117. package/lib/commonjs/ui/utils/colorUtils.js +43 -46
  118. package/lib/commonjs/ui/utils/colorUtils.js.map +1 -1
  119. package/lib/commonjs/ui/utils/fileManagement.js +1 -1
  120. package/lib/commonjs/ui/utils/themeUtils.js +29 -39
  121. package/lib/commonjs/ui/utils/themeUtils.js.map +1 -1
  122. package/lib/commonjs/ui/utils/{user-utils.js → userUtils.js} +1 -1
  123. package/lib/commonjs/ui/utils/userUtils.js.map +1 -0
  124. package/lib/commonjs/utils/errorUtils.js +0 -13
  125. package/lib/commonjs/utils/errorUtils.js.map +1 -1
  126. package/lib/commonjs/utils/hookUtils.js +8 -8
  127. package/lib/commonjs/utils/hookUtils.js.map +1 -1
  128. package/lib/commonjs/utils/platform.js +129 -0
  129. package/lib/commonjs/utils/platform.js.map +1 -0
  130. package/lib/commonjs/web/WebOxyContext.js +273 -41
  131. package/lib/commonjs/web/WebOxyContext.js.map +1 -1
  132. package/lib/commonjs/web/index.js +177 -4
  133. package/lib/commonjs/web/index.js.map +1 -1
  134. package/lib/commonjs/web.js +12 -12
  135. package/lib/commonjs/web.js.map +1 -1
  136. package/lib/module/core/AuthManager.js +399 -0
  137. package/lib/module/core/AuthManager.js.map +1 -0
  138. package/lib/module/core/HttpService.js +39 -1
  139. package/lib/module/core/HttpService.js.map +1 -1
  140. package/lib/module/core/index.js +2 -0
  141. package/lib/module/core/index.js.map +1 -1
  142. package/lib/module/core/mixins/OxyServices.fedcm.js +38 -44
  143. package/lib/module/core/mixins/OxyServices.fedcm.js.map +1 -1
  144. package/lib/module/core/mixins/OxyServices.popup.js +9 -7
  145. package/lib/module/core/mixins/OxyServices.popup.js.map +1 -1
  146. package/lib/module/crypto/keyManager.js +16 -21
  147. package/lib/module/crypto/keyManager.js.map +1 -1
  148. package/lib/module/index.js +34 -3
  149. package/lib/module/index.js.map +1 -1
  150. package/lib/module/lib/sonner.js +11 -16
  151. package/lib/module/lib/sonner.js.map +1 -1
  152. package/lib/module/lib/sonner.native.js +19 -0
  153. package/lib/module/lib/sonner.native.js.map +1 -0
  154. package/lib/module/lib/sonner.web.js +19 -0
  155. package/lib/module/lib/sonner.web.js.map +1 -0
  156. package/lib/module/shared/index.js +37 -0
  157. package/lib/module/shared/index.js.map +1 -0
  158. package/lib/module/shared/utils/colorUtils.js +150 -0
  159. package/lib/module/shared/utils/colorUtils.js.map +1 -0
  160. package/lib/module/shared/utils/debugUtils.js +75 -0
  161. package/lib/module/shared/utils/debugUtils.js.map +1 -0
  162. package/lib/module/shared/utils/errorUtils.js +176 -0
  163. package/lib/module/shared/utils/errorUtils.js.map +1 -0
  164. package/lib/module/shared/utils/index.js +21 -0
  165. package/lib/module/shared/utils/index.js.map +1 -0
  166. package/lib/module/shared/utils/networkUtils.js +202 -0
  167. package/lib/module/shared/utils/networkUtils.js.map +1 -0
  168. package/lib/module/shared/utils/themeUtils.js +109 -0
  169. package/lib/module/shared/utils/themeUtils.js.map +1 -0
  170. package/lib/module/ui/client.js +1 -1
  171. package/lib/module/ui/client.js.map +1 -1
  172. package/lib/module/ui/components/BottomSheetRouter.js +1 -1
  173. package/lib/module/ui/components/BottomSheetRouter.js.map +1 -1
  174. package/lib/module/ui/components/FollowButton.js +1 -1
  175. package/lib/module/ui/components/FollowButton.js.map +1 -1
  176. package/lib/module/ui/components/FontLoader.js +1 -1
  177. package/lib/module/ui/components/FontLoader.js.map +1 -1
  178. package/lib/module/ui/components/GroupedItem.js +1 -1
  179. package/lib/module/ui/components/GroupedItem.js.map +1 -1
  180. package/lib/module/ui/components/Header.js +1 -1
  181. package/lib/module/ui/components/Header.js.map +1 -1
  182. package/lib/module/ui/components/OxyProvider.js +10 -2
  183. package/lib/module/ui/components/OxyProvider.js.map +1 -1
  184. package/lib/module/ui/components/OxySignInButton.js +20 -21
  185. package/lib/module/ui/components/OxySignInButton.js.map +1 -1
  186. package/lib/module/ui/components/ProfileCard.js +1 -1
  187. package/lib/module/ui/components/ProfileCard.js.map +1 -1
  188. package/lib/module/ui/components/QuickActions.js +1 -1
  189. package/lib/module/ui/components/QuickActions.js.map +1 -1
  190. package/lib/module/ui/components/Section.js +1 -1
  191. package/lib/module/ui/components/Section.js.map +1 -1
  192. package/lib/module/ui/components/SectionTitle.js +1 -1
  193. package/lib/module/ui/components/SectionTitle.js.map +1 -1
  194. package/lib/module/ui/components/SignInModal.js +536 -0
  195. package/lib/module/ui/components/SignInModal.js.map +1 -0
  196. package/lib/module/ui/components/payment/PaymentDetailsStep.js +1 -1
  197. package/lib/module/ui/components/payment/PaymentDetailsStep.js.map +1 -1
  198. package/lib/module/ui/context/OxyContext.js +2 -2
  199. package/lib/module/ui/context/OxyContext.js.map +1 -1
  200. package/lib/module/ui/hooks/mutations/mutationFactory.js +1 -1
  201. package/lib/module/ui/hooks/mutations/mutationFactory.js.map +1 -1
  202. package/lib/module/ui/hooks/mutations/useAccountMutations.js +1 -1
  203. package/lib/module/ui/hooks/mutations/useAccountMutations.js.map +1 -1
  204. package/lib/module/ui/hooks/mutations/useServicesMutations.js +1 -1
  205. package/lib/module/ui/hooks/mutations/useServicesMutations.js.map +1 -1
  206. package/lib/module/ui/hooks/useAsyncAction.js +1 -1
  207. package/lib/module/ui/hooks/useAsyncAction.js.map +1 -1
  208. package/lib/module/ui/hooks/{use-color-scheme.js → useColorScheme.js} +1 -1
  209. package/lib/module/ui/hooks/useColorScheme.js.map +1 -0
  210. package/lib/module/ui/hooks/useSessionSocket.js +7 -13
  211. package/lib/module/ui/hooks/useSessionSocket.js.map +1 -1
  212. package/lib/module/ui/hooks/useSettingToggle.js +1 -1
  213. package/lib/module/ui/hooks/useSettingToggle.js.map +1 -1
  214. package/lib/module/ui/hooks/useThemeColors.js +1 -1
  215. package/lib/module/ui/hooks/useThemeColors.js.map +1 -1
  216. package/lib/module/ui/hooks/useThemeStyles.js +1 -1
  217. package/lib/module/ui/hooks/useThemeStyles.js.map +1 -1
  218. package/lib/module/ui/navigation/bottomSheetManager.js +5 -2
  219. package/lib/module/ui/navigation/bottomSheetManager.js.map +1 -1
  220. package/lib/module/ui/navigation/routes.js +7 -8
  221. package/lib/module/ui/navigation/routes.js.map +1 -1
  222. package/lib/module/ui/screens/AccountCenterScreen.js +8 -8
  223. package/lib/module/ui/screens/AccountCenterScreen.js.map +1 -1
  224. package/lib/module/ui/screens/AccountOverviewScreen.js +7 -7
  225. package/lib/module/ui/screens/AccountOverviewScreen.js.map +1 -1
  226. package/lib/module/ui/screens/AccountSettingsScreen.js +3 -3
  227. package/lib/module/ui/screens/AccountSettingsScreen.js.map +1 -1
  228. package/lib/module/ui/screens/AccountSwitcherScreen.js +5 -5
  229. package/lib/module/ui/screens/AccountSwitcherScreen.js.map +1 -1
  230. package/lib/module/ui/screens/AccountVerificationScreen.js +1 -1
  231. package/lib/module/ui/screens/AccountVerificationScreen.js.map +1 -1
  232. package/lib/module/ui/screens/AppInfoScreen.js +2 -2
  233. package/lib/module/ui/screens/AppInfoScreen.js.map +1 -1
  234. package/lib/module/ui/screens/EditProfileFieldScreen.js +2 -2
  235. package/lib/module/ui/screens/EditProfileFieldScreen.js.map +1 -1
  236. package/lib/module/ui/screens/FAQScreen.js +1 -1
  237. package/lib/module/ui/screens/FAQScreen.js.map +1 -1
  238. package/lib/module/ui/screens/FeedbackScreen.js +1 -1
  239. package/lib/module/ui/screens/FeedbackScreen.js.map +1 -1
  240. package/lib/module/ui/screens/FileManagementScreen.js +2 -2
  241. package/lib/module/ui/screens/FileManagementScreen.js.map +1 -1
  242. package/lib/module/ui/screens/FollowersListScreen.js +13 -0
  243. package/lib/module/ui/screens/FollowersListScreen.js.map +1 -0
  244. package/lib/module/ui/screens/FollowingListScreen.js +13 -0
  245. package/lib/module/ui/screens/FollowingListScreen.js.map +1 -0
  246. package/lib/module/ui/screens/HelpSupportScreen.js +2 -2
  247. package/lib/module/ui/screens/HelpSupportScreen.js.map +1 -1
  248. package/lib/module/ui/screens/HistoryViewScreen.js +2 -2
  249. package/lib/module/ui/screens/HistoryViewScreen.js.map +1 -1
  250. package/lib/module/ui/screens/LanguageSelectorScreen.js +2 -2
  251. package/lib/module/ui/screens/LanguageSelectorScreen.js.map +1 -1
  252. package/lib/module/ui/screens/LearnMoreUsernamesScreen.js +224 -0
  253. package/lib/module/ui/screens/LearnMoreUsernamesScreen.js.map +1 -0
  254. package/lib/module/ui/screens/LegalDocumentsScreen.js +2 -2
  255. package/lib/module/ui/screens/LegalDocumentsScreen.js.map +1 -1
  256. package/lib/module/ui/screens/OxyAuthScreen.js +9 -21
  257. package/lib/module/ui/screens/OxyAuthScreen.js.map +1 -1
  258. package/lib/module/ui/screens/PremiumSubscriptionScreen.js +2 -2
  259. package/lib/module/ui/screens/PremiumSubscriptionScreen.js.map +1 -1
  260. package/lib/module/ui/screens/PrivacySettingsScreen.js +1 -1
  261. package/lib/module/ui/screens/PrivacySettingsScreen.js.map +1 -1
  262. package/lib/module/ui/screens/ProfileScreen.js +1 -1
  263. package/lib/module/ui/screens/ProfileScreen.js.map +1 -1
  264. package/lib/module/ui/screens/SavesCollectionsScreen.js +2 -2
  265. package/lib/module/ui/screens/SavesCollectionsScreen.js.map +1 -1
  266. package/lib/module/ui/screens/SessionManagementScreen.js +1 -1
  267. package/lib/module/ui/screens/SessionManagementScreen.js.map +1 -1
  268. package/lib/module/ui/screens/UserListScreen.js +405 -0
  269. package/lib/module/ui/screens/UserListScreen.js.map +1 -0
  270. package/lib/module/ui/screens/WelcomeNewUserScreen.js +1 -1
  271. package/lib/module/ui/screens/WelcomeNewUserScreen.js.map +1 -1
  272. package/lib/module/ui/screens/karma/KarmaAboutScreen.js +1 -1
  273. package/lib/module/ui/screens/karma/KarmaAboutScreen.js.map +1 -1
  274. package/lib/module/ui/screens/karma/KarmaCenterScreen.js +1 -1
  275. package/lib/module/ui/screens/karma/KarmaCenterScreen.js.map +1 -1
  276. package/lib/module/ui/screens/karma/KarmaFAQScreen.js +1 -1
  277. package/lib/module/ui/screens/karma/KarmaFAQScreen.js.map +1 -1
  278. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js +1 -1
  279. package/lib/module/ui/screens/karma/KarmaLeaderboardScreen.js.map +1 -1
  280. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js +1 -1
  281. package/lib/module/ui/screens/karma/KarmaRewardsScreen.js.map +1 -1
  282. package/lib/module/ui/screens/karma/KarmaRulesScreen.js +1 -1
  283. package/lib/module/ui/screens/karma/KarmaRulesScreen.js.map +1 -1
  284. package/lib/module/ui/stores/authStore.js +4 -6
  285. package/lib/module/ui/stores/authStore.js.map +1 -1
  286. package/lib/module/ui/utils/colorUtils.js +7 -40
  287. package/lib/module/ui/utils/colorUtils.js.map +1 -1
  288. package/lib/module/ui/utils/fileManagement.js +1 -1
  289. package/lib/module/ui/utils/fileManagement.js.map +1 -1
  290. package/lib/module/ui/utils/themeUtils.js +7 -35
  291. package/lib/module/ui/utils/themeUtils.js.map +1 -1
  292. package/lib/module/ui/utils/{user-utils.js → userUtils.js} +1 -1
  293. package/lib/module/ui/utils/userUtils.js.map +1 -0
  294. package/lib/module/utils/errorUtils.js +0 -7
  295. package/lib/module/utils/errorUtils.js.map +1 -1
  296. package/lib/module/utils/hookUtils.js +8 -8
  297. package/lib/module/utils/hookUtils.js.map +1 -1
  298. package/lib/module/utils/platform.js +118 -0
  299. package/lib/module/utils/platform.js.map +1 -0
  300. package/lib/module/web/WebOxyContext.js +272 -41
  301. package/lib/module/web/WebOxyContext.js.map +1 -1
  302. package/lib/module/web/index.js +26 -5
  303. package/lib/module/web/index.js.map +1 -1
  304. package/lib/module/web.js +2 -1
  305. package/lib/module/web.js.map +1 -1
  306. package/lib/typescript/commonjs/core/AuthManager.d.ts +144 -0
  307. package/lib/typescript/commonjs/core/AuthManager.d.ts.map +1 -0
  308. package/lib/typescript/commonjs/core/HttpService.d.ts.map +1 -1
  309. package/lib/typescript/commonjs/core/index.d.ts +2 -0
  310. package/lib/typescript/commonjs/core/index.d.ts.map +1 -1
  311. package/lib/typescript/commonjs/core/mixins/OxyServices.fedcm.d.ts.map +1 -1
  312. package/lib/typescript/commonjs/core/mixins/OxyServices.popup.d.ts.map +1 -1
  313. package/lib/typescript/commonjs/crypto/keyManager.d.ts.map +1 -1
  314. package/lib/typescript/commonjs/index.d.ts +16 -2
  315. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  316. package/lib/typescript/commonjs/lib/sonner.d.ts +11 -14
  317. package/lib/typescript/commonjs/lib/sonner.d.ts.map +1 -1
  318. package/lib/typescript/commonjs/lib/sonner.native.d.ts +15 -0
  319. package/lib/typescript/commonjs/lib/sonner.native.d.ts.map +1 -0
  320. package/lib/typescript/commonjs/lib/sonner.web.d.ts +15 -0
  321. package/lib/typescript/commonjs/lib/sonner.web.d.ts.map +1 -0
  322. package/lib/typescript/commonjs/models/session.d.ts +4 -0
  323. package/lib/typescript/commonjs/models/session.d.ts.map +1 -1
  324. package/lib/typescript/commonjs/shared/index.d.ts +29 -0
  325. package/lib/typescript/commonjs/shared/index.d.ts.map +1 -0
  326. package/lib/typescript/commonjs/shared/utils/colorUtils.d.ts +105 -0
  327. package/lib/typescript/commonjs/shared/utils/colorUtils.d.ts.map +1 -0
  328. package/lib/typescript/commonjs/shared/utils/debugUtils.d.ts +49 -0
  329. package/lib/typescript/commonjs/shared/utils/debugUtils.d.ts.map +1 -0
  330. package/lib/typescript/commonjs/shared/utils/errorUtils.d.ts +98 -0
  331. package/lib/typescript/commonjs/shared/utils/errorUtils.d.ts.map +1 -0
  332. package/lib/typescript/commonjs/shared/utils/index.d.ts +14 -0
  333. package/lib/typescript/commonjs/shared/utils/index.d.ts.map +1 -0
  334. package/lib/typescript/commonjs/shared/utils/networkUtils.d.ts +140 -0
  335. package/lib/typescript/commonjs/shared/utils/networkUtils.d.ts.map +1 -0
  336. package/lib/typescript/commonjs/shared/utils/themeUtils.d.ts +91 -0
  337. package/lib/typescript/commonjs/shared/utils/themeUtils.d.ts.map +1 -0
  338. package/lib/typescript/commonjs/ui/components/FontLoader.d.ts +1 -1
  339. package/lib/typescript/commonjs/ui/components/FontLoader.d.ts.map +1 -1
  340. package/lib/typescript/commonjs/ui/components/OxyProvider.d.ts.map +1 -1
  341. package/lib/typescript/commonjs/ui/components/OxySignInButton.d.ts.map +1 -1
  342. package/lib/typescript/commonjs/ui/components/SignInModal.d.ts +18 -0
  343. package/lib/typescript/commonjs/ui/components/SignInModal.d.ts.map +1 -0
  344. package/lib/typescript/commonjs/ui/context/OxyContext.d.ts +1 -2
  345. package/lib/typescript/commonjs/ui/context/OxyContext.d.ts.map +1 -1
  346. package/lib/typescript/commonjs/ui/hooks/{use-color-scheme.d.ts → useColorScheme.d.ts} +1 -1
  347. package/lib/typescript/commonjs/ui/hooks/useColorScheme.d.ts.map +1 -0
  348. package/lib/typescript/commonjs/ui/hooks/useSessionSocket.d.ts.map +1 -1
  349. package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts +2 -0
  350. package/lib/typescript/commonjs/ui/navigation/bottomSheetManager.d.ts.map +1 -1
  351. package/lib/typescript/commonjs/ui/navigation/routes.d.ts +1 -1
  352. package/lib/typescript/commonjs/ui/navigation/routes.d.ts.map +1 -1
  353. package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts +9 -0
  354. package/lib/typescript/commonjs/ui/screens/FollowersListScreen.d.ts.map +1 -0
  355. package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts +9 -0
  356. package/lib/typescript/commonjs/ui/screens/FollowingListScreen.d.ts.map +1 -0
  357. package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts +5 -0
  358. package/lib/typescript/commonjs/ui/screens/LearnMoreUsernamesScreen.d.ts.map +1 -0
  359. package/lib/typescript/commonjs/ui/screens/OxyAuthScreen.d.ts.map +1 -1
  360. package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts +11 -0
  361. package/lib/typescript/commonjs/ui/screens/UserListScreen.d.ts.map +1 -0
  362. package/lib/typescript/commonjs/ui/stores/authStore.d.ts.map +1 -1
  363. package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts +7 -11
  364. package/lib/typescript/commonjs/ui/utils/colorUtils.d.ts.map +1 -1
  365. package/lib/typescript/commonjs/ui/utils/themeUtils.d.ts +6 -19
  366. package/lib/typescript/commonjs/ui/utils/themeUtils.d.ts.map +1 -1
  367. package/lib/typescript/commonjs/ui/utils/{user-utils.d.ts → userUtils.d.ts} +1 -1
  368. package/lib/typescript/commonjs/ui/utils/userUtils.d.ts.map +1 -0
  369. package/lib/typescript/commonjs/utils/errorUtils.d.ts +0 -6
  370. package/lib/typescript/commonjs/utils/errorUtils.d.ts.map +1 -1
  371. package/lib/typescript/commonjs/utils/platform.d.ts +41 -0
  372. package/lib/typescript/commonjs/utils/platform.d.ts.map +1 -0
  373. package/lib/typescript/commonjs/web/WebOxyContext.d.ts +117 -9
  374. package/lib/typescript/commonjs/web/WebOxyContext.d.ts.map +1 -1
  375. package/lib/typescript/commonjs/web/index.d.ts +19 -8
  376. package/lib/typescript/commonjs/web/index.d.ts.map +1 -1
  377. package/lib/typescript/commonjs/web.d.ts +2 -1
  378. package/lib/typescript/commonjs/web.d.ts.map +1 -1
  379. package/lib/typescript/module/core/AuthManager.d.ts +144 -0
  380. package/lib/typescript/module/core/AuthManager.d.ts.map +1 -0
  381. package/lib/typescript/module/core/HttpService.d.ts.map +1 -1
  382. package/lib/typescript/module/core/index.d.ts +2 -0
  383. package/lib/typescript/module/core/index.d.ts.map +1 -1
  384. package/lib/typescript/module/core/mixins/OxyServices.fedcm.d.ts.map +1 -1
  385. package/lib/typescript/module/core/mixins/OxyServices.popup.d.ts.map +1 -1
  386. package/lib/typescript/module/crypto/keyManager.d.ts.map +1 -1
  387. package/lib/typescript/module/index.d.ts +16 -2
  388. package/lib/typescript/module/index.d.ts.map +1 -1
  389. package/lib/typescript/module/lib/sonner.d.ts +11 -14
  390. package/lib/typescript/module/lib/sonner.d.ts.map +1 -1
  391. package/lib/typescript/module/lib/sonner.native.d.ts +15 -0
  392. package/lib/typescript/module/lib/sonner.native.d.ts.map +1 -0
  393. package/lib/typescript/module/lib/sonner.web.d.ts +15 -0
  394. package/lib/typescript/module/lib/sonner.web.d.ts.map +1 -0
  395. package/lib/typescript/module/models/session.d.ts +4 -0
  396. package/lib/typescript/module/models/session.d.ts.map +1 -1
  397. package/lib/typescript/module/shared/index.d.ts +29 -0
  398. package/lib/typescript/module/shared/index.d.ts.map +1 -0
  399. package/lib/typescript/module/shared/utils/colorUtils.d.ts +105 -0
  400. package/lib/typescript/module/shared/utils/colorUtils.d.ts.map +1 -0
  401. package/lib/typescript/module/shared/utils/debugUtils.d.ts +49 -0
  402. package/lib/typescript/module/shared/utils/debugUtils.d.ts.map +1 -0
  403. package/lib/typescript/module/shared/utils/errorUtils.d.ts +98 -0
  404. package/lib/typescript/module/shared/utils/errorUtils.d.ts.map +1 -0
  405. package/lib/typescript/module/shared/utils/index.d.ts +14 -0
  406. package/lib/typescript/module/shared/utils/index.d.ts.map +1 -0
  407. package/lib/typescript/module/shared/utils/networkUtils.d.ts +140 -0
  408. package/lib/typescript/module/shared/utils/networkUtils.d.ts.map +1 -0
  409. package/lib/typescript/module/shared/utils/themeUtils.d.ts +91 -0
  410. package/lib/typescript/module/shared/utils/themeUtils.d.ts.map +1 -0
  411. package/lib/typescript/module/ui/components/FontLoader.d.ts +1 -1
  412. package/lib/typescript/module/ui/components/FontLoader.d.ts.map +1 -1
  413. package/lib/typescript/module/ui/components/OxyProvider.d.ts.map +1 -1
  414. package/lib/typescript/module/ui/components/OxySignInButton.d.ts.map +1 -1
  415. package/lib/typescript/module/ui/components/SignInModal.d.ts +18 -0
  416. package/lib/typescript/module/ui/components/SignInModal.d.ts.map +1 -0
  417. package/lib/typescript/module/ui/context/OxyContext.d.ts +1 -2
  418. package/lib/typescript/module/ui/context/OxyContext.d.ts.map +1 -1
  419. package/lib/typescript/module/ui/hooks/{use-color-scheme.d.ts → useColorScheme.d.ts} +1 -1
  420. package/lib/typescript/module/ui/hooks/useColorScheme.d.ts.map +1 -0
  421. package/lib/typescript/module/ui/hooks/useSessionSocket.d.ts.map +1 -1
  422. package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts +2 -0
  423. package/lib/typescript/module/ui/navigation/bottomSheetManager.d.ts.map +1 -1
  424. package/lib/typescript/module/ui/navigation/routes.d.ts +1 -1
  425. package/lib/typescript/module/ui/navigation/routes.d.ts.map +1 -1
  426. package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts +9 -0
  427. package/lib/typescript/module/ui/screens/FollowersListScreen.d.ts.map +1 -0
  428. package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts +9 -0
  429. package/lib/typescript/module/ui/screens/FollowingListScreen.d.ts.map +1 -0
  430. package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts +5 -0
  431. package/lib/typescript/module/ui/screens/LearnMoreUsernamesScreen.d.ts.map +1 -0
  432. package/lib/typescript/module/ui/screens/OxyAuthScreen.d.ts.map +1 -1
  433. package/lib/typescript/module/ui/screens/UserListScreen.d.ts +11 -0
  434. package/lib/typescript/module/ui/screens/UserListScreen.d.ts.map +1 -0
  435. package/lib/typescript/module/ui/stores/authStore.d.ts.map +1 -1
  436. package/lib/typescript/module/ui/utils/colorUtils.d.ts +7 -11
  437. package/lib/typescript/module/ui/utils/colorUtils.d.ts.map +1 -1
  438. package/lib/typescript/module/ui/utils/themeUtils.d.ts +6 -19
  439. package/lib/typescript/module/ui/utils/themeUtils.d.ts.map +1 -1
  440. package/lib/typescript/module/ui/utils/{user-utils.d.ts → userUtils.d.ts} +1 -1
  441. package/lib/typescript/module/ui/utils/userUtils.d.ts.map +1 -0
  442. package/lib/typescript/module/utils/errorUtils.d.ts +0 -6
  443. package/lib/typescript/module/utils/errorUtils.d.ts.map +1 -1
  444. package/lib/typescript/module/utils/platform.d.ts +41 -0
  445. package/lib/typescript/module/utils/platform.d.ts.map +1 -0
  446. package/lib/typescript/module/web/WebOxyContext.d.ts +117 -9
  447. package/lib/typescript/module/web/WebOxyContext.d.ts.map +1 -1
  448. package/lib/typescript/module/web/index.d.ts +19 -8
  449. package/lib/typescript/module/web/index.d.ts.map +1 -1
  450. package/lib/typescript/module/web.d.ts +2 -1
  451. package/lib/typescript/module/web.d.ts.map +1 -1
  452. package/package.json +8 -2
  453. package/src/core/AuthManager.ts +436 -0
  454. package/src/core/HttpService.ts +43 -1
  455. package/src/core/index.ts +4 -0
  456. package/src/core/mixins/OxyServices.fedcm.ts +37 -42
  457. package/src/core/mixins/OxyServices.popup.ts +10 -7
  458. package/src/crypto/keyManager.ts +16 -21
  459. package/src/index.ts +83 -12
  460. package/src/lib/sonner.native.ts +28 -0
  461. package/src/lib/sonner.ts +11 -28
  462. package/src/lib/sonner.web.ts +28 -0
  463. package/src/models/session.ts +4 -0
  464. package/src/shared/index.ts +82 -0
  465. package/src/shared/utils/colorUtils.ts +155 -0
  466. package/src/shared/utils/debugUtils.ts +73 -0
  467. package/src/shared/utils/errorUtils.ts +181 -0
  468. package/src/shared/utils/index.ts +59 -0
  469. package/src/shared/utils/networkUtils.ts +248 -0
  470. package/src/shared/utils/themeUtils.ts +115 -0
  471. package/src/ui/components/BottomSheetRouter.tsx +1 -1
  472. package/src/ui/components/FontLoader.tsx +1 -2
  473. package/src/ui/components/GroupedItem.tsx +1 -1
  474. package/src/ui/components/Header.tsx +1 -1
  475. package/src/ui/components/OxyProvider.tsx +10 -0
  476. package/src/ui/components/OxySignInButton.tsx +20 -22
  477. package/src/ui/components/ProfileCard.tsx +1 -1
  478. package/src/ui/components/QuickActions.tsx +1 -1
  479. package/src/ui/components/Section.tsx +1 -1
  480. package/src/ui/components/SectionTitle.tsx +1 -1
  481. package/src/ui/components/SignInModal.tsx +534 -0
  482. package/src/ui/context/OxyContext.tsx +1 -2
  483. package/src/ui/hooks/queries/queryKeys.ts +2 -2
  484. package/src/ui/hooks/useSessionSocket.ts +12 -17
  485. package/src/ui/hooks/useThemeColors.ts +1 -1
  486. package/src/ui/hooks/useThemeStyles.ts +1 -1
  487. package/src/ui/navigation/bottomSheetManager.ts +5 -1
  488. package/src/ui/navigation/routes.ts +8 -9
  489. package/src/ui/screens/AccountCenterScreen.tsx +7 -7
  490. package/src/ui/screens/AccountOverviewScreen.tsx +6 -6
  491. package/src/ui/screens/AccountSettingsScreen.tsx +2 -2
  492. package/src/ui/screens/AccountSwitcherScreen.tsx +4 -4
  493. package/src/ui/screens/AppInfoScreen.tsx +1 -1
  494. package/src/ui/screens/EditProfileFieldScreen.tsx +1 -1
  495. package/src/ui/screens/FileManagementScreen.tsx +1 -1
  496. package/src/ui/screens/FollowersListScreen.tsx +14 -0
  497. package/src/ui/screens/FollowingListScreen.tsx +14 -0
  498. package/src/ui/screens/HelpSupportScreen.tsx +1 -1
  499. package/src/ui/screens/HistoryViewScreen.tsx +1 -1
  500. package/src/ui/screens/LanguageSelectorScreen.tsx +1 -1
  501. package/src/ui/screens/LearnMoreUsernamesScreen.tsx +231 -0
  502. package/src/ui/screens/LegalDocumentsScreen.tsx +1 -1
  503. package/src/ui/screens/OxyAuthScreen.tsx +10 -21
  504. package/src/ui/screens/PremiumSubscriptionScreen.tsx +1 -1
  505. package/src/ui/screens/ProfileScreen.tsx +1 -1
  506. package/src/ui/screens/SavesCollectionsScreen.tsx +1 -1
  507. package/src/ui/screens/UserListScreen.tsx +416 -0
  508. package/src/ui/screens/karma/KarmaAboutScreen.tsx +1 -1
  509. package/src/ui/screens/karma/KarmaCenterScreen.tsx +1 -1
  510. package/src/ui/screens/karma/KarmaFAQScreen.tsx +1 -1
  511. package/src/ui/screens/karma/KarmaLeaderboardScreen.tsx +1 -1
  512. package/src/ui/screens/karma/KarmaRewardsScreen.tsx +1 -1
  513. package/src/ui/screens/karma/KarmaRulesScreen.tsx +1 -1
  514. package/src/ui/stores/authStore.ts +5 -6
  515. package/src/ui/utils/colorUtils.ts +15 -43
  516. package/src/ui/utils/themeUtils.ts +14 -39
  517. package/src/utils/errorUtils.ts +1 -6
  518. package/src/utils/hookUtils.ts +8 -8
  519. package/src/utils/platform.ts +117 -0
  520. package/src/web/WebOxyContext.tsx +331 -41
  521. package/src/web/index.ts +76 -6
  522. package/src/web.ts +1 -1
  523. package/lib/commonjs/ui/hooks/use-color-scheme.js.map +0 -1
  524. package/lib/commonjs/ui/utils/user-utils.js.map +0 -1
  525. package/lib/module/ui/hooks/use-color-scheme.js.map +0 -1
  526. package/lib/module/ui/utils/user-utils.js.map +0 -1
  527. package/lib/typescript/commonjs/ui/hooks/use-color-scheme.d.ts.map +0 -1
  528. package/lib/typescript/commonjs/ui/utils/user-utils.d.ts.map +0 -1
  529. package/lib/typescript/module/ui/hooks/use-color-scheme.d.ts.map +0 -1
  530. package/lib/typescript/module/ui/utils/user-utils.d.ts.map +0 -1
  531. /package/src/ui/hooks/{use-color-scheme.ts → useColorScheme.ts} +0 -0
  532. /package/src/ui/utils/{user-utils.ts → userUtils.ts} +0 -0
@@ -0,0 +1,176 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Error Utility Functions
5
+ *
6
+ * Consolidated error handling utilities for the OxyServices ecosystem.
7
+ * These functions help with common error patterns like checking HTTP status codes.
8
+ *
9
+ * @module shared/utils/errorUtils
10
+ */
11
+
12
+ /**
13
+ * Common HTTP status codes used in error checking.
14
+ */
15
+ export const HttpStatus = {
16
+ BAD_REQUEST: 400,
17
+ UNAUTHORIZED: 401,
18
+ FORBIDDEN: 403,
19
+ NOT_FOUND: 404,
20
+ CONFLICT: 409,
21
+ UNPROCESSABLE_ENTITY: 422,
22
+ TOO_MANY_REQUESTS: 429,
23
+ INTERNAL_SERVER_ERROR: 500,
24
+ BAD_GATEWAY: 502,
25
+ SERVICE_UNAVAILABLE: 503,
26
+ GATEWAY_TIMEOUT: 504
27
+ };
28
+
29
+ /**
30
+ * Extracts the HTTP status code from an error object.
31
+ *
32
+ * @param error - Any error object
33
+ * @returns The status code if found, undefined otherwise
34
+ */
35
+ export const getErrorStatus = error => {
36
+ if (!error || typeof error !== 'object') return undefined;
37
+ const err = error;
38
+
39
+ // Direct status property
40
+ if (typeof err.status === 'number') return err.status;
41
+
42
+ // Axios-style response.status
43
+ if (err.response && typeof err.response === 'object') {
44
+ const response = err.response;
45
+ if (typeof response.status === 'number') return response.status;
46
+ }
47
+
48
+ // statusCode property (some libraries use this)
49
+ if (typeof err.statusCode === 'number') return err.statusCode;
50
+ return undefined;
51
+ };
52
+
53
+ /**
54
+ * Extracts the error message from an error object.
55
+ *
56
+ * @param error - Any error object
57
+ * @param fallback - Fallback message if none found
58
+ * @returns The error message
59
+ */
60
+ export const getErrorMessage = (error, fallback = 'An unknown error occurred') => {
61
+ if (!error) return fallback;
62
+ if (typeof error === 'string') return error;
63
+ if (error instanceof Error) return error.message;
64
+ if (typeof error === 'object') {
65
+ const err = error;
66
+ if (typeof err.message === 'string') return err.message;
67
+ if (typeof err.error === 'string') return err.error;
68
+
69
+ // Axios-style response.data.message
70
+ if (err.response && typeof err.response === 'object') {
71
+ const response = err.response;
72
+ if (response.data && typeof response.data === 'object') {
73
+ const data = response.data;
74
+ if (typeof data.message === 'string') return data.message;
75
+ if (typeof data.error === 'string') return data.error;
76
+ }
77
+ }
78
+ }
79
+ return fallback;
80
+ };
81
+
82
+ /**
83
+ * Check if an error indicates the user is already registered (HTTP 409 Conflict).
84
+ *
85
+ * The backend should always return HTTP 409 for duplicate registrations.
86
+ *
87
+ * @param error - Any error object
88
+ * @returns true if the error is a 409 Conflict
89
+ */
90
+ export const isAlreadyRegisteredError = error => {
91
+ return getErrorStatus(error) === HttpStatus.CONFLICT;
92
+ };
93
+
94
+ /**
95
+ * Check if an error is an authentication error (HTTP 401).
96
+ *
97
+ * @param error - Any error object
98
+ * @returns true if the error is a 401 Unauthorized
99
+ */
100
+ export const isUnauthorizedError = error => {
101
+ return getErrorStatus(error) === HttpStatus.UNAUTHORIZED;
102
+ };
103
+
104
+ /**
105
+ * Check if an error is a forbidden error (HTTP 403).
106
+ *
107
+ * @param error - Any error object
108
+ * @returns true if the error is a 403 Forbidden
109
+ */
110
+ export const isForbiddenError = error => {
111
+ return getErrorStatus(error) === HttpStatus.FORBIDDEN;
112
+ };
113
+
114
+ /**
115
+ * Check if an error is a not found error (HTTP 404).
116
+ *
117
+ * @param error - Any error object
118
+ * @returns true if the error is a 404 Not Found
119
+ */
120
+ export const isNotFoundError = error => {
121
+ return getErrorStatus(error) === HttpStatus.NOT_FOUND;
122
+ };
123
+
124
+ /**
125
+ * Check if an error is a rate limit error (HTTP 429).
126
+ *
127
+ * @param error - Any error object
128
+ * @returns true if the error is a 429 Too Many Requests
129
+ */
130
+ export const isRateLimitError = error => {
131
+ return getErrorStatus(error) === HttpStatus.TOO_MANY_REQUESTS;
132
+ };
133
+
134
+ /**
135
+ * Check if an error is a server error (HTTP 5xx).
136
+ *
137
+ * @param error - Any error object
138
+ * @returns true if the error is a 5xx server error
139
+ */
140
+ export const isServerError = error => {
141
+ const status = getErrorStatus(error);
142
+ return status !== undefined && status >= 500 && status < 600;
143
+ };
144
+
145
+ /**
146
+ * Check if an error is a network error (no response received).
147
+ *
148
+ * @param error - Any error object
149
+ * @returns true if the error appears to be a network error
150
+ */
151
+ export const isNetworkError = error => {
152
+ if (!error || typeof error !== 'object') return false;
153
+ const err = error;
154
+
155
+ // Check for common network error indicators
156
+ if (err.name === 'NetworkError') return true;
157
+ if (err.code === 'ENOTFOUND' || err.code === 'ECONNREFUSED' || err.code === 'ETIMEDOUT') return true;
158
+
159
+ // Axios-style: has request but no response
160
+ if (err.request && !err.response) return true;
161
+
162
+ // Message-based detection
163
+ const message = getErrorMessage(error, '').toLowerCase();
164
+ return message.includes('network') || message.includes('connection') || message.includes('timeout');
165
+ };
166
+
167
+ /**
168
+ * Check if an error is retryable (network errors or 5xx server errors).
169
+ *
170
+ * @param error - Any error object
171
+ * @returns true if the request should be retried
172
+ */
173
+ export const isRetryableError = error => {
174
+ return isNetworkError(error) || isServerError(error) || isRateLimitError(error);
175
+ };
176
+ //# sourceMappingURL=errorUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["HttpStatus","BAD_REQUEST","UNAUTHORIZED","FORBIDDEN","NOT_FOUND","CONFLICT","UNPROCESSABLE_ENTITY","TOO_MANY_REQUESTS","INTERNAL_SERVER_ERROR","BAD_GATEWAY","SERVICE_UNAVAILABLE","GATEWAY_TIMEOUT","getErrorStatus","error","undefined","err","status","response","statusCode","getErrorMessage","fallback","Error","message","data","isAlreadyRegisteredError","isUnauthorizedError","isForbiddenError","isNotFoundError","isRateLimitError","isServerError","isNetworkError","name","code","request","toLowerCase","includes","isRetryableError"],"sourceRoot":"../../../../src","sources":["shared/utils/errorUtils.ts"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Shared Utility Functions
5
+ *
6
+ * Re-exports all shared utilities for convenient importing.
7
+ *
8
+ * @module shared/utils
9
+ */
10
+
11
+ // Color utilities
12
+ export { darkenColor, lightenColor, hexToRgb, rgbToHex, withOpacity, isLightColor, getContrastTextColor } from "./colorUtils.js";
13
+
14
+ // Theme utilities
15
+ export { normalizeTheme, normalizeColorScheme, getOppositeTheme, systemPrefersDarkMode, getSystemColorScheme } from "./themeUtils.js";
16
+ // Error utilities
17
+ export { HttpStatus, getErrorStatus, getErrorMessage, isAlreadyRegisteredError, isUnauthorizedError, isForbiddenError, isNotFoundError, isRateLimitError, isServerError, isNetworkError, isRetryableError } from "./errorUtils.js";
18
+
19
+ // Network utilities
20
+ export { DEFAULT_CIRCUIT_BREAKER_CONFIG, createCircuitBreakerState, calculateBackoffInterval, recordFailure, recordSuccess, shouldAllowRequest, delay, withRetry } from "./networkUtils.js";
21
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["darkenColor","lightenColor","hexToRgb","rgbToHex","withOpacity","isLightColor","getContrastTextColor","normalizeTheme","normalizeColorScheme","getOppositeTheme","systemPrefersDarkMode","getSystemColorScheme","HttpStatus","getErrorStatus","getErrorMessage","isAlreadyRegisteredError","isUnauthorizedError","isForbiddenError","isNotFoundError","isRateLimitError","isServerError","isNetworkError","isRetryableError","DEFAULT_CIRCUIT_BREAKER_CONFIG","createCircuitBreakerState","calculateBackoffInterval","recordFailure","recordSuccess","shouldAllowRequest","delay","withRetry"],"sourceRoot":"../../../../src","sources":["shared/utils/index.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,SACEA,WAAW,EACXC,YAAY,EACZC,QAAQ,EACRC,QAAQ,EACRC,WAAW,EACXC,YAAY,EACZC,oBAAoB,QACf,iBAAc;;AAErB;AACA,SACEC,cAAc,EACdC,oBAAoB,EACpBC,gBAAgB,EAChBC,qBAAqB,EACrBC,oBAAoB,QACf,iBAAc;AAGrB;AACA,SACEC,UAAU,EACVC,cAAc,EACdC,eAAe,EACfC,wBAAwB,EACxBC,mBAAmB,EACnBC,gBAAgB,EAChBC,eAAe,EACfC,gBAAgB,EAChBC,aAAa,EACbC,cAAc,EACdC,gBAAgB,QACX,iBAAc;;AAErB;AACA,SACEC,8BAA8B,EAC9BC,yBAAyB,EACzBC,wBAAwB,EACxBC,aAAa,EACbC,aAAa,EACbC,kBAAkB,EAClBC,KAAK,EACLC,SAAS,QACJ,mBAAgB","ignoreList":[]}
@@ -0,0 +1,202 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Network Utility Functions
5
+ *
6
+ * Consolidated network utilities including circuit breaker pattern
7
+ * and exponential backoff for resilient API calls.
8
+ *
9
+ * @module shared/utils/networkUtils
10
+ */
11
+
12
+ /**
13
+ * State for circuit breaker pattern.
14
+ */
15
+
16
+ /**
17
+ * Configuration for circuit breaker.
18
+ */
19
+
20
+ /**
21
+ * Default circuit breaker configuration.
22
+ */
23
+ export const DEFAULT_CIRCUIT_BREAKER_CONFIG = {
24
+ baseInterval: 10000,
25
+ maxInterval: 60000,
26
+ maxFailures: 5,
27
+ recoveryTimeout: 30000
28
+ };
29
+
30
+ /**
31
+ * Creates initial circuit breaker state.
32
+ *
33
+ * @param config - Optional custom configuration
34
+ * @returns Initial circuit breaker state
35
+ *
36
+ * @example
37
+ * ```ts
38
+ * const state = createCircuitBreakerState({ maxFailures: 3 });
39
+ * ```
40
+ */
41
+ export const createCircuitBreakerState = (config = {}) => {
42
+ const {
43
+ baseInterval,
44
+ maxInterval,
45
+ maxFailures
46
+ } = {
47
+ ...DEFAULT_CIRCUIT_BREAKER_CONFIG,
48
+ ...config
49
+ };
50
+ return {
51
+ consecutiveFailures: 0,
52
+ currentInterval: baseInterval,
53
+ baseInterval,
54
+ maxInterval,
55
+ maxFailures,
56
+ isOpen: false
57
+ };
58
+ };
59
+
60
+ /**
61
+ * Calculates next interval using exponential backoff.
62
+ *
63
+ * @param state - Current circuit breaker state
64
+ * @returns Next interval in milliseconds
65
+ *
66
+ * @example
67
+ * ```ts
68
+ * const nextInterval = calculateBackoffInterval(state);
69
+ * await delay(nextInterval);
70
+ * ```
71
+ */
72
+ export const calculateBackoffInterval = state => {
73
+ const {
74
+ consecutiveFailures,
75
+ baseInterval,
76
+ maxInterval
77
+ } = state;
78
+ if (consecutiveFailures === 0) return baseInterval;
79
+ const backoffMultiplier = Math.min(Math.pow(2, consecutiveFailures - 1), maxInterval / baseInterval);
80
+ return Math.min(baseInterval * backoffMultiplier, maxInterval);
81
+ };
82
+
83
+ /**
84
+ * Records a failure and updates circuit breaker state.
85
+ *
86
+ * @param state - Current circuit breaker state
87
+ * @returns Updated state after recording failure
88
+ *
89
+ * @example
90
+ * ```ts
91
+ * try {
92
+ * await apiCall();
93
+ * state = recordSuccess(state);
94
+ * } catch (error) {
95
+ * state = recordFailure(state);
96
+ * }
97
+ * ```
98
+ */
99
+ export const recordFailure = state => {
100
+ const newFailures = state.consecutiveFailures + 1;
101
+ const newInterval = calculateBackoffInterval({
102
+ ...state,
103
+ consecutiveFailures: newFailures
104
+ });
105
+ const shouldOpenCircuit = newFailures >= state.maxFailures;
106
+ const finalInterval = shouldOpenCircuit ? state.maxInterval : newInterval;
107
+ return {
108
+ ...state,
109
+ consecutiveFailures: newFailures,
110
+ currentInterval: finalInterval,
111
+ isOpen: shouldOpenCircuit,
112
+ openedAt: shouldOpenCircuit ? Date.now() : state.openedAt
113
+ };
114
+ };
115
+
116
+ /**
117
+ * Records a success and resets circuit breaker state.
118
+ *
119
+ * @param state - Current circuit breaker state
120
+ * @returns Reset state after successful request
121
+ */
122
+ export const recordSuccess = state => {
123
+ return {
124
+ ...state,
125
+ consecutiveFailures: 0,
126
+ currentInterval: state.baseInterval,
127
+ isOpen: false,
128
+ openedAt: undefined
129
+ };
130
+ };
131
+
132
+ /**
133
+ * Checks if the circuit breaker should allow a request.
134
+ *
135
+ * When the circuit is open, it will only allow requests after
136
+ * the recovery timeout has passed (half-open state).
137
+ *
138
+ * @param state - Current circuit breaker state
139
+ * @param recoveryTimeout - Time to wait before allowing recovery attempts
140
+ * @returns true if request should be allowed
141
+ */
142
+ export const shouldAllowRequest = (state, recoveryTimeout = DEFAULT_CIRCUIT_BREAKER_CONFIG.recoveryTimeout) => {
143
+ if (!state.isOpen) return true;
144
+ if (!state.openedAt) return true;
145
+ const timeSinceOpen = Date.now() - state.openedAt;
146
+ return timeSinceOpen >= recoveryTimeout;
147
+ };
148
+
149
+ /**
150
+ * Delays execution for a specified duration.
151
+ *
152
+ * @param ms - Milliseconds to delay
153
+ * @returns Promise that resolves after the delay
154
+ *
155
+ * @example
156
+ * ```ts
157
+ * await delay(1000); // Wait 1 second
158
+ * ```
159
+ */
160
+ export const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
161
+
162
+ /**
163
+ * Executes a function with exponential backoff retry.
164
+ *
165
+ * @param fn - Async function to execute
166
+ * @param options - Retry options
167
+ * @returns Result of the function
168
+ * @throws Last error if all retries fail
169
+ *
170
+ * @example
171
+ * ```ts
172
+ * const result = await withRetry(
173
+ * () => fetchData(),
174
+ * { maxRetries: 3, baseDelay: 1000 }
175
+ * );
176
+ * ```
177
+ */
178
+ export const withRetry = async (fn, options = {}) => {
179
+ const {
180
+ maxRetries = 3,
181
+ baseDelay = 1000,
182
+ maxDelay = 30000,
183
+ shouldRetry = () => true,
184
+ onRetry
185
+ } = options;
186
+ let lastError;
187
+ for (let attempt = 0; attempt <= maxRetries; attempt++) {
188
+ try {
189
+ return await fn();
190
+ } catch (error) {
191
+ lastError = error;
192
+ if (attempt === maxRetries || !shouldRetry(error)) {
193
+ throw error;
194
+ }
195
+ const delayMs = Math.min(baseDelay * Math.pow(2, attempt), maxDelay);
196
+ onRetry?.(error, attempt + 1);
197
+ await delay(delayMs);
198
+ }
199
+ }
200
+ throw lastError;
201
+ };
202
+ //# sourceMappingURL=networkUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["DEFAULT_CIRCUIT_BREAKER_CONFIG","baseInterval","maxInterval","maxFailures","recoveryTimeout","createCircuitBreakerState","config","consecutiveFailures","currentInterval","isOpen","calculateBackoffInterval","state","backoffMultiplier","Math","min","pow","recordFailure","newFailures","newInterval","shouldOpenCircuit","finalInterval","openedAt","Date","now","recordSuccess","undefined","shouldAllowRequest","timeSinceOpen","delay","ms","Promise","resolve","setTimeout","withRetry","fn","options","maxRetries","baseDelay","maxDelay","shouldRetry","onRetry","lastError","attempt","error","delayMs"],"sourceRoot":"../../../../src","sources":["shared/utils/networkUtils.ts"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Theme Utility Functions
5
+ *
6
+ * Consolidated theme utilities for normalizing and handling color schemes
7
+ * across the OxyServices ecosystem.
8
+ *
9
+ * @module shared/utils/themeUtils
10
+ */
11
+
12
+ /**
13
+ * Valid theme values in the Oxy ecosystem.
14
+ */
15
+
16
+ /**
17
+ * Normalizes a theme value to ensure it's always 'light' or 'dark'.
18
+ *
19
+ * @param theme - Theme value (may be 'light' | 'dark' | string | undefined)
20
+ * @returns Normalized 'light' | 'dark' theme (defaults to 'light')
21
+ *
22
+ * @example
23
+ * ```ts
24
+ * normalizeTheme('dark'); // 'dark'
25
+ * normalizeTheme('light'); // 'light'
26
+ * normalizeTheme('unknown'); // 'light'
27
+ * normalizeTheme(undefined); // 'light'
28
+ * normalizeTheme(null); // 'light'
29
+ * ```
30
+ */
31
+ export const normalizeTheme = theme => theme === 'light' || theme === 'dark' ? theme : 'light';
32
+
33
+ /**
34
+ * Normalizes a color scheme value with optional fallback chain.
35
+ *
36
+ * Handles null/undefined cases from React Native's useColorScheme() hook
37
+ * with a proper fallback chain.
38
+ *
39
+ * @param colorScheme - The color scheme from useColorScheme() hook (may be null/undefined)
40
+ * @param theme - Optional theme prop as fallback
41
+ * @returns Normalized 'light' | 'dark' color scheme
42
+ *
43
+ * @example
44
+ * ```ts
45
+ * // In a React Native component:
46
+ * const systemScheme = useColorScheme(); // might be null
47
+ * const colorScheme = normalizeColorScheme(systemScheme, props.theme);
48
+ *
49
+ * normalizeColorScheme('dark', 'light'); // 'dark'
50
+ * normalizeColorScheme(null, 'dark'); // 'dark'
51
+ * normalizeColorScheme(undefined, undefined); // 'light'
52
+ * ```
53
+ */
54
+ export const normalizeColorScheme = (colorScheme, theme) => {
55
+ if (colorScheme === 'light' || colorScheme === 'dark') {
56
+ return colorScheme;
57
+ }
58
+ if (theme === 'light' || theme === 'dark') {
59
+ return theme;
60
+ }
61
+ return 'light';
62
+ };
63
+
64
+ /**
65
+ * Gets the opposite theme value.
66
+ *
67
+ * @param theme - Current theme value
68
+ * @returns The opposite theme ('light' → 'dark', 'dark' → 'light')
69
+ *
70
+ * @example
71
+ * ```ts
72
+ * getOppositeTheme('light'); // 'dark'
73
+ * getOppositeTheme('dark'); // 'light'
74
+ * ```
75
+ */
76
+ export const getOppositeTheme = theme => theme === 'light' ? 'dark' : 'light';
77
+
78
+ /**
79
+ * Checks if the system prefers dark mode.
80
+ *
81
+ * This function only works in browser environments.
82
+ * Returns false in non-browser environments (Node.js, React Native).
83
+ *
84
+ * @returns true if system prefers dark mode, false otherwise
85
+ *
86
+ * @example
87
+ * ```ts
88
+ * if (systemPrefersDarkMode()) {
89
+ * setTheme('dark');
90
+ * }
91
+ * ```
92
+ */
93
+ export const systemPrefersDarkMode = () => {
94
+ if (typeof window === 'undefined') return false;
95
+ return window.matchMedia?.('(prefers-color-scheme: dark)').matches ?? false;
96
+ };
97
+
98
+ /**
99
+ * Gets the system's preferred color scheme.
100
+ *
101
+ * @returns 'dark' if system prefers dark mode, 'light' otherwise
102
+ *
103
+ * @example
104
+ * ```ts
105
+ * const theme = getSystemColorScheme();
106
+ * ```
107
+ */
108
+ export const getSystemColorScheme = () => systemPrefersDarkMode() ? 'dark' : 'light';
109
+ //# sourceMappingURL=themeUtils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["normalizeTheme","theme","normalizeColorScheme","colorScheme","getOppositeTheme","systemPrefersDarkMode","window","matchMedia","matches","getSystemColorScheme"],"sourceRoot":"../../../../src","sources":["shared/utils/themeUtils.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMA,cAAc,GAAIC,KAAqB,IAClDA,KAAK,KAAK,OAAO,IAAIA,KAAK,KAAK,MAAM,GAAGA,KAAK,GAAG,OAAO;;AAEzD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,oBAAoB,GAAGA,CAClCC,WAA2B,EAC3BF,KAAc,KACC;EACf,IAAIE,WAAW,KAAK,OAAO,IAAIA,WAAW,KAAK,MAAM,EAAE;IACrD,OAAOA,WAAW;EACpB;EAEA,IAAIF,KAAK,KAAK,OAAO,IAAIA,KAAK,KAAK,MAAM,EAAE;IACzC,OAAOA,KAAK;EACd;EAEA,OAAO,OAAO;AAChB,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMG,gBAAgB,GAAIH,KAAiB,IAChDA,KAAK,KAAK,OAAO,GAAG,MAAM,GAAG,OAAO;;AAEtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMI,qBAAqB,GAAGA,CAAA,KAAe;EAClD,IAAI,OAAOC,MAAM,KAAK,WAAW,EAAE,OAAO,KAAK;EAC/C,OAAOA,MAAM,CAACC,UAAU,GAAG,8BAA8B,CAAC,CAACC,OAAO,IAAI,KAAK;AAC7E,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,oBAAoB,GAAGA,CAAA,KAClCJ,qBAAqB,CAAC,CAAC,GAAG,MAAM,GAAG,OAAO","ignoreList":[]}
@@ -39,7 +39,7 @@ export { useAccountStore } from "./stores/accountStore.js";
39
39
  export { fontFamilies, fontStyles } from "./styles/fonts.js";
40
40
 
41
41
  // Toast
42
- export { toast } from "../lib/sonner.js";
42
+ export { toast } from '../lib/sonner';
43
43
 
44
44
  // Core re-exports for convenience
45
45
  export { OxyServices } from "../core/index.js";
@@ -1 +1 @@
1
- {"version":3,"names":["default","OxyProvider","WebOxyProvider","OxySignInButton","OxyLogo","Avatar","FollowButton","OxyPayButton","FontLoader","setupFonts","OxyIcon","useOxy","useAuth","useFollow","useStorage","ProfileScreen","useAuthStore","useAccountStore","fontFamilies","fontStyles","toast","OxyServices","handleAuthError","isInvalidSessionError","isTimeoutOrNetworkError","extractErrorMessage"],"sourceRoot":"../../../src","sources":["ui/client.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,SAASA,OAAO,IAAIC,WAAW,QAAQ,6BAA0B;AACjE,SAASD,OAAO,IAAIE,cAAc,QAAQ,gCAA6B;AACvE,SAASF,OAAO,IAAIG,eAAe,QAAQ,iCAA8B;AACzE,SAASH,OAAO,IAAII,OAAO,QAAQ,yBAAsB;AACzD,SAASJ,OAAO,IAAIK,MAAM,QAAQ,wBAAqB;AACvD,SAASL,OAAO,IAAIM,YAAY,QAAQ,8BAA2B;AACnE,SAASN,OAAO,IAAIO,YAAY,QAAQ,8BAA2B;AACnE,SAASC,UAAU,EAAEC,UAAU,QAAQ,4BAAyB;AAChE,SAASC,OAAO,QAAQ,4BAAmB;;AAE3C;AACA,SAASC,MAAM,QAAQ,yBAAsB;;AAE7C;AACA,SAASC,OAAO,QAAQ,oBAAiB;AAEzC,SAASC,SAAS,QAAQ,kBAAS;AACnC,SAASC,UAAU,QAAQ,uBAAoB;AAG/C;AACA,SAASd,OAAO,IAAIe,aAAa,QAAQ,4BAAyB;;AAElE;AACA,SAASC,YAAY,QAAQ,uBAAoB;AACjD,SAASC,eAAe,QAAQ,0BAAuB;;AAEvD;AACA,SAASC,YAAY,EAAEC,UAAU,QAAQ,mBAAgB;;AAEzD;AACA,SAASC,KAAK,QAAQ,kBAAe;;AAErC;AACA,SAASC,WAAW,QAAQ,kBAAS;AAGrC;AACA,SACIC,eAAe,EACfC,qBAAqB,EACrBC,uBAAuB,EACvBC,mBAAmB,QAChB,0BAAuB","ignoreList":[]}
1
+ {"version":3,"names":["default","OxyProvider","WebOxyProvider","OxySignInButton","OxyLogo","Avatar","FollowButton","OxyPayButton","FontLoader","setupFonts","OxyIcon","useOxy","useAuth","useFollow","useStorage","ProfileScreen","useAuthStore","useAccountStore","fontFamilies","fontStyles","toast","OxyServices","handleAuthError","isInvalidSessionError","isTimeoutOrNetworkError","extractErrorMessage"],"sourceRoot":"../../../src","sources":["ui/client.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,SAASA,OAAO,IAAIC,WAAW,QAAQ,6BAA0B;AACjE,SAASD,OAAO,IAAIE,cAAc,QAAQ,gCAA6B;AACvE,SAASF,OAAO,IAAIG,eAAe,QAAQ,iCAA8B;AACzE,SAASH,OAAO,IAAII,OAAO,QAAQ,yBAAsB;AACzD,SAASJ,OAAO,IAAIK,MAAM,QAAQ,wBAAqB;AACvD,SAASL,OAAO,IAAIM,YAAY,QAAQ,8BAA2B;AACnE,SAASN,OAAO,IAAIO,YAAY,QAAQ,8BAA2B;AACnE,SAASC,UAAU,EAAEC,UAAU,QAAQ,4BAAyB;AAChE,SAASC,OAAO,QAAQ,4BAAmB;;AAE3C;AACA,SAASC,MAAM,QAAQ,yBAAsB;;AAE7C;AACA,SAASC,OAAO,QAAQ,oBAAiB;AAEzC,SAASC,SAAS,QAAQ,kBAAS;AACnC,SAASC,UAAU,QAAQ,uBAAoB;AAG/C;AACA,SAASd,OAAO,IAAIe,aAAa,QAAQ,4BAAyB;;AAElE;AACA,SAASC,YAAY,QAAQ,uBAAoB;AACjD,SAASC,eAAe,QAAQ,0BAAuB;;AAEvD;AACA,SAASC,YAAY,EAAEC,UAAU,QAAQ,mBAAgB;;AAEzD;AACA,SAASC,KAAK,QAAQ,eAAe;;AAErC;AACA,SAASC,WAAW,QAAQ,kBAAS;AAGrC;AACA,SACIC,eAAe,EACfC,qBAAqB,EACrBC,uBAAuB,EACvBC,mBAAmB,QAChB,0BAAuB","ignoreList":[]}
@@ -4,7 +4,7 @@ import React, { useRef, useEffect, useCallback, useMemo } from 'react';
4
4
  import { BackHandler, View, StyleSheet } from 'react-native';
5
5
  import { useStore } from 'zustand';
6
6
  import { getScreenComponent, isValidRoute } from "../navigation/routes.js";
7
- import { useColorScheme } from "../hooks/use-color-scheme.js";
7
+ import { useColorScheme } from "../hooks/useColorScheme.js";
8
8
  import { Colors } from "../constants/theme.js";
9
9
  import BottomSheet from "./BottomSheet.js";
10
10
  import { bottomSheetStore, getState, showBottomSheet, closeBottomSheet, goBack, updateState } from "../navigation/bottomSheetManager.js";
@@ -1 +1 @@
1
- {"version":3,"names":["React","useRef","useEffect","useCallback","useMemo","BackHandler","View","StyleSheet","useStore","getScreenComponent","isValidRoute","useColorScheme","Colors","BottomSheet","bottomSheetStore","getState","showBottomSheet","closeBottomSheet","goBack","updateState","jsx","_jsx","BottomSheetRouter","onScreenChange","onDismiss","sheetRef","colorScheme","colors","prevScreenRef","currentScreen","screenProps","currentStep","isOpen","ScreenComponent","current","present","dismiss","handler","addEventListener","handleGoBack","remove","navigate","screen","props","__DEV__","console","warn","state","history","length","step","initialStep","canDismiss","handleDismissAttempt","handleDismiss","handleStepChange","scrollTo","y","animated","renderBackground","style","styles","background","backgroundColor","screenPropsValue","_","rest","onClose","onAuthenticated","theme","undefined","onStepChange","ref","enablePanDownToClose","enableHandlePanningGesture","backgroundComponent","container","onDismissAttempt","children","create","maxWidth","width","alignSelf","marginHorizontal","borderTopLeftRadius","borderTopRightRadius","overflow","memo"],"sourceRoot":"../../../../src","sources":["ui/components/BottomSheetRouter.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useRef","useEffect","useCallback","useMemo","BackHandler","View","StyleSheet","useStore","getScreenComponent","isValidRoute","useColorScheme","Colors","BottomSheet","bottomSheetStore","getState","showBottomSheet","closeBottomSheet","goBack","updateState","jsx","_jsx","BottomSheetRouter","onScreenChange","onDismiss","sheetRef","colorScheme","colors","prevScreenRef","currentScreen","screenProps","currentStep","isOpen","ScreenComponent","current","present","dismiss","handler","addEventListener","handleGoBack","remove","navigate","screen","props","__DEV__","console","warn","state","history","length","step","initialStep","canDismiss","handleDismissAttempt","handleDismiss","handleStepChange","scrollTo","y","animated","renderBackground","style","styles","background","backgroundColor","screenPropsValue","_","rest","onClose","onAuthenticated","theme","undefined","onStepChange","ref","enablePanDownToClose","enableHandlePanningGesture","backgroundComponent","container","onDismissAttempt","children","create","maxWidth","width","alignSelf","marginHorizontal","borderTopLeftRadius","borderTopRightRadius","overflow","memo"],"sourceRoot":"../../../../src","sources":["ui/components/BottomSheetRouter.tsx"],"mappings":"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","ignoreList":[]}
@@ -5,7 +5,7 @@ import { TouchableOpacity, Text, Platform, ActivityIndicator } from 'react-nativ
5
5
  import Animated, { useSharedValue, useAnimatedStyle, withSpring, interpolateColor, Easing, withTiming } from 'react-native-reanimated';
6
6
  import { useOxy } from "../context/OxyContext.js";
7
7
  import { fontFamilies } from "../styles/fonts.js";
8
- import { toast } from "../../lib/sonner.js";
8
+ import { toast } from '../../lib/sonner';
9
9
  import { useFollow } from "../hooks/useFollow.js";
10
10
  import { useThemeColors } from "../styles/theme.js";
11
11
 
@@ -1 +1 @@
1
- {"version":3,"names":["useEffect","useCallback","TouchableOpacity","Text","Platform","ActivityIndicator","Animated","useSharedValue","useAnimatedStyle","withSpring","interpolateColor","Easing","withTiming","useOxy","fontFamilies","toast","useFollow","useThemeColors","jsx","_jsx","AnimatedTouchableOpacity","createAnimatedComponent","AnimatedText","FollowButton","userId","initiallyFollowing","size","onFollowChange","style","textStyle","disabled","showLoadingState","preventParentActions","theme","oxyServices","isAuthenticated","user","currentUser","colors","normalizeId","id","String","trim","currentUserId","targetUserId","isFollowing","isLoading","error","toggleFollow","setFollowStatus","fetchStatus","clearError","animationProgress","scale","handlePress","event","preventDefault","stopPropagation","value","duration","finished","damping","stiffness","err","Error","message","easing","inOut","ease","animatedButtonStyle","transform","backgroundColor","background","primary","borderColor","border","animatedTextStyle","color","text","getBaseButtonStyle","baseStyle","flexDirection","alignItems","justifyContent","borderWidth","select","web","boxShadow","default","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","sizeStyle","paddingVertical","paddingHorizontal","minWidth","borderRadius","getBaseTextStyle","baseTextStyle","fontFamily","interSemiBold","fontWeight","sizeTextStyle","fontSize","onPress","activeOpacity","children"],"sourceRoot":"../../../../src","sources":["ui/components/FollowButton.tsx"],"mappings":";;AACA,SAASA,SAAS,EAAEC,WAAW,QAAQ,OAAO;AAC9C,SACEC,gBAAgB,EAChBC,IAAI,EAKJC,QAAQ,EACRC,iBAAiB,QACZ,cAAc;AACrB,OAAOC,QAAQ,IACbC,cAAc,EACdC,gBAAgB,EAChBC,UAAU,EACVC,gBAAgB,EAChBC,MAAM,EACNC,UAAU,QACL,yBAAyB;AAChC,SAASC,MAAM,QAAQ,0BAAuB;AAC9C,SAASC,YAAY,QAAQ,oBAAiB;AAC9C,SAASC,KAAK,QAAQ,qBAAkB;AACxC,SAASC,SAAS,QAAQ,uBAAoB;AAC9C,SAASC,cAAc,QAAQ,oBAAiB;;AAEhD;AAAA,SAAAC,GAAA,IAAAC,IAAA;AACA,MAAMC,wBAAwB,GAAGd,QAAQ,CAACe,uBAAuB,CAACnB,gBAAgB,CAAC;AACnF,MAAMoB,YAAY,GAAGhB,QAAQ,CAACe,uBAAuB,CAAClB,IAAI,CAAC;AAe3D,MAAMoB,YAAyC,GAAGA,CAAC;EACjDC,MAAM;EACNC,kBAAkB,GAAG,KAAK;EAC1BC,IAAI,GAAG,QAAQ;EACfC,cAAc;EACdC,KAAK;EACLC,SAAS;EACTC,QAAQ,GAAG,KAAK;EAChBC,gBAAgB,GAAG,IAAI;EACvBC,oBAAoB,GAAG,IAAI;EAC3BC,KAAK,GAAG;AACV,CAAC,KAAK;EACJ,MAAM;IAAEC,WAAW;IAAEC,eAAe;IAAEC,IAAI,EAAEC;EAAY,CAAC,GAAGxB,MAAM,CAAC,CAAC;EACpE,MAAMyB,MAAM,GAAGrB,cAAc,CAACgB,KAAK,CAAC;;EAEpC;EACA;EACA;EACA,MAAMM,WAAW,GAAIC,EAA6B,IAAa;IAC7D,IAAI,CAACA,EAAE,EAAE,OAAO,EAAE;IAClB,OAAOC,MAAM,CAACD,EAAE,CAAC,CAACE,IAAI,CAAC,CAAC;EAC1B,CAAC;EAED,MAAMC,aAAa,GAAGJ,WAAW,CAACF,WAAW,EAAEG,EAAE,CAAC;EAClD,MAAMI,YAAY,GAAGL,WAAW,CAACf,MAAM,CAAC;;EAExC;EACA;EACA;EACA,IAAI,CAACW,eAAe,IAAKQ,aAAa,IAAIC,YAAY,IAAID,aAAa,KAAKC,YAAa,EAAE;IACzF,OAAO,IAAI;EACb;EACA,MAAM;IACJC,WAAW;IACXC,SAAS;IACTC,KAAK;IACLC,YAAY;IACZC,eAAe;IACfC,WAAW;IACXC;EACF,CAAC,GAAGnC,SAAS,CAACQ,MAAM,CAAC;;EAErB;EACA,MAAM4B,iBAAiB,GAAG7C,cAAc,CAACsC,WAAW,GAAG,CAAC,GAAG,CAAC,CAAC;EAC7D,MAAMQ,KAAK,GAAG9C,cAAc,CAAC,CAAC,CAAC;;EAE/B;EACA,MAAM+C,WAAW,GAAGrD,WAAW,CAAC,MAAOsD,KAAqE,IAAK;IAC/G,IAAIvB,oBAAoB,IAAIuB,KAAK,IAAIA,KAAK,CAACC,cAAc,EAAE;MACzDD,KAAK,CAACC,cAAc,CAAC,CAAC;MACtBD,KAAK,CAACE,eAAe,GAAG,CAAC;IAC3B;IACA,IAAI3B,QAAQ,IAAIgB,SAAS,EAAE;;IAE3B;IACAO,KAAK,CAACK,KAAK,GAAG9C,UAAU,CAAC,IAAI,EAAE;MAAE+C,QAAQ,EAAE;IAAI,CAAC,EAAGC,QAAQ,IAAK;MAC9D,IAAIA,QAAQ,EAAE;QACZP,KAAK,CAACK,KAAK,GAAGjD,UAAU,CAAC,CAAC,EAAE;UAAEoD,OAAO,EAAE,EAAE;UAAEC,SAAS,EAAE;QAAI,CAAC,CAAC;MAC9D;IACF,CAAC,CAAC;IAEF,IAAI;MACF,MAAMd,YAAY,GAAG,CAAC;MACtB,IAAIrB,cAAc,EAAEA,cAAc,CAAC,CAACkB,WAAW,CAAC;IAClD,CAAC,CAAC,OAAOkB,GAAY,EAAE;MACrB,MAAMhB,KAAK,GAAGgB,GAAG,YAAYC,KAAK,GAAGD,GAAG,GAAG,IAAIC,KAAK,CAACvB,MAAM,CAACsB,GAAG,CAAC,CAAC;MACjEhD,KAAK,CAACgC,KAAK,CAACA,KAAK,CAACkB,OAAO,IAAI,gCAAgC,CAAC;IAChE;EACF,CAAC,EAAE,CAACnC,QAAQ,EAAEgB,SAAS,EAAEE,YAAY,EAAErB,cAAc,EAAEkB,WAAW,EAAEb,oBAAoB,EAAEqB,KAAK,CAAC,CAAC;;EAEjG;EACArD,SAAS,CAAC,MAAM;IACd,IAAIwB,MAAM,IAAI,CAACqB,WAAW,IAAIpB,kBAAkB,EAAE;MAChDwB,eAAe,GAAGxB,kBAAkB,CAAC;IACvC;IACA;EACF,CAAC,EAAE,CAACD,MAAM,EAAEC,kBAAkB,CAAC,CAAC;;EAEhC;EACAzB,SAAS,CAAC,MAAM;IACd,IAAIwB,MAAM,IAAIW,eAAe,EAAE;MAC7Be,WAAW,GAAG,CAAC;IACjB;IACA;EACF,CAAC,EAAE,CAAC1B,MAAM,EAAEU,WAAW,EAAEC,eAAe,CAAC,CAAC;;EAE1C;EACAnC,SAAS,CAAC,MAAM;IACdoD,iBAAiB,CAACM,KAAK,GAAG9C,UAAU,CAACiC,WAAW,GAAG,CAAC,GAAG,CAAC,EAAE;MAAEc,QAAQ,EAAE,GAAG;MAAEO,MAAM,EAAEvD,MAAM,CAACwD,KAAK,CAACxD,MAAM,CAACyD,IAAI;IAAE,CAAC,CAAC;EACjH,CAAC,EAAE,CAACvB,WAAW,CAAC,CAAC;;EAEjB;EACA,MAAMwB,mBAAmB,GAAG7D,gBAAgB,CAAC,MAAM;IACjD,OAAO;MACL8D,SAAS,EAAE,CAAC;QAAEjB,KAAK,EAAEA,KAAK,CAACK;MAAM,CAAC,CAAC;MACnCa,eAAe,EAAE7D,gBAAgB,CAC/B0C,iBAAiB,CAACM,KAAK,EACvB,CAAC,CAAC,EAAE,CAAC,CAAC,EACN,CAACpB,MAAM,CAACkC,UAAU,EAAElC,MAAM,CAACmC,OAAO,CACpC,CAAC;MACDC,WAAW,EAAEhE,gBAAgB,CAC3B0C,iBAAiB,CAACM,KAAK,EACvB,CAAC,CAAC,EAAE,CAAC,CAAC,EACN,CAACpB,MAAM,CAACqC,MAAM,EAAErC,MAAM,CAACmC,OAAO,CAChC;IACF,CAAC;EACH,CAAC,EAAE,CAACnC,MAAM,CAAC,CAAC;EAEZ,MAAMsC,iBAAiB,GAAGpE,gBAAgB,CAAC,MAAM;IAC/C,OAAO;MACLqE,KAAK,EAAEnE,gBAAgB,CACrB0C,iBAAiB,CAACM,KAAK,EACvB,CAAC,CAAC,EAAE,CAAC,CAAC,EACN,CAACpB,MAAM,CAACwC,IAAI,EAAE,SAAS,CACzB;IACF,CAAC;EACH,CAAC,EAAE,CAACxC,MAAM,CAAC,CAAC;;EAEZ;EACA,MAAMyC,kBAAkB,GAAGA,CAAA,KAA4B;IACrD,MAAMC,SAAS,GAAG;MAChBC,aAAa,EAAE,KAAc;MAC7BC,UAAU,EAAE,QAAiB;MAC7BC,cAAc,EAAE,QAAiB;MACjCC,WAAW,EAAE,CAAC;MACd,GAAGhF,QAAQ,CAACiF,MAAM,CAAC;QACjBC,GAAG,EAAE;UACHC,SAAS,EAAE;QACb,CAAC;QACDC,OAAO,EAAE;UACPC,WAAW,EAAE,MAAM;UACnBC,YAAY,EAAE;YAAEC,KAAK,EAAE,CAAC;YAAEC,MAAM,EAAE;UAAE,CAAC;UACrCC,aAAa,EAAE,GAAG;UAClBC,YAAY,EAAE,CAAC;UACfC,SAAS,EAAE;QACb;MACF,CAAC;IACH,CAAC;;IAED;IACA,IAAIC,SAAS,GAAG,CAAC,CAAC;IAClB,IAAItE,IAAI,KAAK,OAAO,EAAE;MACpBsE,SAAS,GAAG;QACVC,eAAe,EAAE,CAAC;QAClBC,iBAAiB,EAAE,EAAE;QACrBC,QAAQ,EAAE,EAAE;QACZC,YAAY,EAAE;MAChB,CAAC;IACH,CAAC,MAAM,IAAI1E,IAAI,KAAK,OAAO,EAAE;MAC3BsE,SAAS,GAAG;QACVC,eAAe,EAAE,EAAE;QACnBC,iBAAiB,EAAE,EAAE;QACrBC,QAAQ,EAAE,GAAG;QACbC,YAAY,EAAE;MAChB,CAAC;IACH,CAAC,MAAM;MACL;MACAJ,SAAS,GAAG;QACVC,eAAe,EAAE,CAAC;QAClBC,iBAAiB,EAAE,EAAE;QACrBC,QAAQ,EAAE,EAAE;QACZC,YAAY,EAAE;MAChB,CAAC;IACH;IAEA,OAAO,CAACpB,SAAS,EAAEgB,SAAS,EAAEpE,KAAK,CAAC;EACtC,CAAC;;EAED;EACA,MAAMyE,gBAAgB,GAAGA,CAAA,KAA4B;IACnD,MAAMC,aAAa,GAAG;MACpBC,UAAU,EAAEzF,YAAY,CAAC0F,aAAa;MACtCC,UAAU,EAAE;IACd,CAAC;;IAED;IACA,IAAIC,aAAa,GAAG,CAAC,CAAC;IACtB,IAAIhF,IAAI,KAAK,OAAO,EAAE;MACpBgF,aAAa,GAAG;QAAEC,QAAQ,EAAE;MAAG,CAAC;IAClC,CAAC,MAAM,IAAIjF,IAAI,KAAK,OAAO,EAAE;MAC3BgF,aAAa,GAAG;QAAEC,QAAQ,EAAE;MAAG,CAAC;IAClC,CAAC,MAAM;MACL;MACAD,aAAa,GAAG;QAAEC,QAAQ,EAAE;MAAG,CAAC;IAClC;IAEA,OAAO,CAACL,aAAa,EAAEI,aAAa,EAAE7E,SAAS,CAAC;EAClD,CAAC;EAED,oBACEV,IAAA,CAACC,wBAAwB;IACvBQ,KAAK,EAAE,CAACmD,kBAAkB,CAAC,CAAC,EAAEV,mBAAmB,CAAE;IACnDuC,OAAO,EAAEtD,WAAY;IACrBxB,QAAQ,EAAEA,QAAQ,IAAIgB,SAAU;IAChC+D,aAAa,EAAE,GAAI;IAAAC,QAAA,EAElB/E,gBAAgB,IAAIe,SAAS,gBAC5B3B,IAAA,CAACd,iBAAiB;MAChBqB,IAAI,EAAEA,IAAI,KAAK,OAAO,GAAG,OAAO,GAAG,OAAQ;MAC3CmD,KAAK,EAAEhC,WAAW,GAAG,SAAS,GAAGP,MAAM,CAACmC;IAAQ,CACjD,CAAC,gBAEFtD,IAAA,CAACG,YAAY;MAACM,KAAK,EAAE,CAACyE,gBAAgB,CAAC,CAAC,EAAEzB,iBAAiB,CAAE;MAAAkC,QAAA,EAC1DjE,WAAW,GAAG,WAAW,GAAG;IAAQ,CACzB;EACf,CACuB,CAAC;AAE/B,CAAC;AAGD,SAAStB,YAAY;AACrB,eAAeA,YAAY","ignoreList":[]}
1
+ {"version":3,"names":["useEffect","useCallback","TouchableOpacity","Text","Platform","ActivityIndicator","Animated","useSharedValue","useAnimatedStyle","withSpring","interpolateColor","Easing","withTiming","useOxy","fontFamilies","toast","useFollow","useThemeColors","jsx","_jsx","AnimatedTouchableOpacity","createAnimatedComponent","AnimatedText","FollowButton","userId","initiallyFollowing","size","onFollowChange","style","textStyle","disabled","showLoadingState","preventParentActions","theme","oxyServices","isAuthenticated","user","currentUser","colors","normalizeId","id","String","trim","currentUserId","targetUserId","isFollowing","isLoading","error","toggleFollow","setFollowStatus","fetchStatus","clearError","animationProgress","scale","handlePress","event","preventDefault","stopPropagation","value","duration","finished","damping","stiffness","err","Error","message","easing","inOut","ease","animatedButtonStyle","transform","backgroundColor","background","primary","borderColor","border","animatedTextStyle","color","text","getBaseButtonStyle","baseStyle","flexDirection","alignItems","justifyContent","borderWidth","select","web","boxShadow","default","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","sizeStyle","paddingVertical","paddingHorizontal","minWidth","borderRadius","getBaseTextStyle","baseTextStyle","fontFamily","interSemiBold","fontWeight","sizeTextStyle","fontSize","onPress","activeOpacity","children"],"sourceRoot":"../../../../src","sources":["ui/components/FollowButton.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- import { useState, useEffect } from 'react';
3
+ import React, { useState, useEffect } from 'react';
4
4
  import { Platform } from 'react-native';
5
5
  import * as Font from 'expo-font';
6
6