react-native-debug-toolkit 2.0.0 → 2.2.0

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 (443) hide show
  1. package/README.md +82 -120
  2. package/README.zh-CN.md +171 -0
  3. package/lib/commonjs/core/DebugToolkit.js +117 -115
  4. package/lib/commonjs/core/DebugToolkit.js.map +1 -1
  5. package/lib/commonjs/core/DebugToolkitProvider.js +38 -30
  6. package/lib/commonjs/core/DebugToolkitProvider.js.map +1 -1
  7. package/lib/commonjs/core/initialize.js +84 -0
  8. package/lib/commonjs/core/initialize.js.map +1 -0
  9. package/lib/commonjs/{components → features/clipboard}/ClipboardTab.js +16 -17
  10. package/lib/commonjs/features/clipboard/ClipboardTab.js.map +1 -0
  11. package/lib/commonjs/features/{ClipboardFeature.js → clipboard/index.js} +9 -5
  12. package/lib/commonjs/features/clipboard/index.js.map +1 -0
  13. package/lib/commonjs/features/console/ConsoleLogTab.js +162 -0
  14. package/lib/commonjs/features/console/ConsoleLogTab.js.map +1 -0
  15. package/lib/commonjs/features/console/index.js +118 -0
  16. package/lib/commonjs/features/console/index.js.map +1 -0
  17. package/lib/commonjs/{components → features/environment}/EnvironmentTab.js +24 -25
  18. package/lib/commonjs/features/environment/EnvironmentTab.js.map +1 -0
  19. package/lib/commonjs/features/{EnvironmentFeature.js → environment/index.js} +22 -25
  20. package/lib/commonjs/features/environment/index.js.map +1 -0
  21. package/lib/commonjs/{components → features/navigation}/NavigationLogTab.js +11 -10
  22. package/lib/commonjs/features/navigation/NavigationLogTab.js.map +1 -0
  23. package/lib/commonjs/features/navigation/index.js +39 -0
  24. package/lib/commonjs/features/navigation/index.js.map +1 -0
  25. package/lib/commonjs/{hooks → features/navigation}/useNavigationLogger.js +3 -3
  26. package/lib/commonjs/features/navigation/useNavigationLogger.js.map +1 -0
  27. package/lib/commonjs/features/network/NetworkLogTab.js +405 -0
  28. package/lib/commonjs/features/network/NetworkLogTab.js.map +1 -0
  29. package/lib/commonjs/features/network/index.js +96 -0
  30. package/lib/commonjs/features/network/index.js.map +1 -0
  31. package/lib/commonjs/features/network/networkInterceptor.js +261 -0
  32. package/lib/commonjs/features/network/networkInterceptor.js.map +1 -0
  33. package/lib/commonjs/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.js +10 -9
  34. package/lib/commonjs/features/thirdPartyLibs/ThirdPartyLibsTab.js.map +1 -0
  35. package/lib/commonjs/features/{ThirdPartyLibsFeature.js → thirdPartyLibs/index.js} +8 -8
  36. package/lib/commonjs/features/thirdPartyLibs/index.js.map +1 -0
  37. package/lib/commonjs/{native/NativeDebugLibs.js → features/thirdPartyLibs/nativeDebugLibs.js} +1 -1
  38. package/lib/commonjs/features/thirdPartyLibs/nativeDebugLibs.js.map +1 -0
  39. package/lib/commonjs/features/track/TrackLogTab.js +230 -0
  40. package/lib/commonjs/features/track/TrackLogTab.js.map +1 -0
  41. package/lib/commonjs/features/track/index.js +39 -0
  42. package/lib/commonjs/features/track/index.js.map +1 -0
  43. package/lib/commonjs/features/zustand/ZustandLogTab.js +311 -0
  44. package/lib/commonjs/features/zustand/ZustandLogTab.js.map +1 -0
  45. package/lib/commonjs/features/zustand/index.js +59 -0
  46. package/lib/commonjs/features/zustand/index.js.map +1 -0
  47. package/lib/commonjs/index.js +27 -40
  48. package/lib/commonjs/index.js.map +1 -1
  49. package/lib/commonjs/types/environment.js +2 -0
  50. package/lib/commonjs/types/environment.js.map +1 -0
  51. package/lib/commonjs/types/feature.js +6 -0
  52. package/lib/commonjs/types/feature.js.map +1 -0
  53. package/lib/commonjs/types/index.js +0 -4
  54. package/lib/commonjs/types/logs.js +2 -0
  55. package/lib/commonjs/types/logs.js.map +1 -0
  56. package/lib/commonjs/types/navigation.js +2 -0
  57. package/lib/commonjs/types/navigation.js.map +1 -0
  58. package/lib/commonjs/types/thirdPartyLibs.js +2 -0
  59. package/lib/commonjs/types/thirdPartyLibs.js.map +1 -0
  60. package/lib/commonjs/ui/DebugView.js +66 -0
  61. package/lib/commonjs/ui/DebugView.js.map +1 -0
  62. package/lib/commonjs/ui/floating/FloatIcon.js +240 -0
  63. package/lib/commonjs/ui/floating/FloatIcon.js.map +1 -0
  64. package/lib/commonjs/ui/panel/DebugPanel.js +230 -0
  65. package/lib/commonjs/ui/panel/DebugPanel.js.map +1 -0
  66. package/lib/commonjs/ui/panel/FeatureTabBar.js +182 -0
  67. package/lib/commonjs/ui/panel/FeatureTabBar.js.map +1 -0
  68. package/lib/commonjs/ui/panel/FloatPanelView.js +238 -0
  69. package/lib/commonjs/ui/panel/FloatPanelView.js.map +1 -0
  70. package/lib/commonjs/{components → ui}/shared/CollapsibleSection.js +4 -4
  71. package/lib/commonjs/ui/shared/CollapsibleSection.js.map +1 -0
  72. package/lib/commonjs/{components → ui}/shared/CopyButton.js +3 -3
  73. package/lib/commonjs/ui/shared/CopyButton.js.map +1 -0
  74. package/lib/commonjs/ui/shared/JsonView.js.map +1 -0
  75. package/lib/commonjs/ui/shared/LogListScreen.js +174 -0
  76. package/lib/commonjs/ui/shared/LogListScreen.js.map +1 -0
  77. package/lib/commonjs/ui/shared/useSlideDetailAnimation.js.map +1 -0
  78. package/lib/commonjs/ui/theme/colors.js +43 -0
  79. package/lib/commonjs/ui/theme/colors.js.map +1 -0
  80. package/lib/commonjs/ui/theme/layout.js +8 -0
  81. package/lib/commonjs/ui/theme/layout.js.map +1 -0
  82. package/lib/commonjs/utils/createChannelFeature.js +62 -0
  83. package/lib/commonjs/utils/createChannelFeature.js.map +1 -0
  84. package/lib/commonjs/utils/createObservableStore.js +5 -0
  85. package/lib/commonjs/utils/createObservableStore.js.map +1 -1
  86. package/lib/commonjs/utils/createPersistedObservableStore.js +71 -0
  87. package/lib/commonjs/utils/createPersistedObservableStore.js.map +1 -0
  88. package/lib/commonjs/utils/debugPreferences.js +52 -0
  89. package/lib/commonjs/utils/debugPreferences.js.map +1 -0
  90. package/lib/commonjs/utils/urlRewriterRegistry.js +14 -0
  91. package/lib/commonjs/utils/urlRewriterRegistry.js.map +1 -0
  92. package/lib/module/core/DebugToolkit.js +117 -114
  93. package/lib/module/core/DebugToolkit.js.map +1 -1
  94. package/lib/module/core/DebugToolkitProvider.js +39 -31
  95. package/lib/module/core/DebugToolkitProvider.js.map +1 -1
  96. package/lib/module/core/initialize.js +80 -0
  97. package/lib/module/core/initialize.js.map +1 -0
  98. package/lib/module/{components → features/clipboard}/ClipboardTab.js +9 -9
  99. package/lib/module/features/clipboard/ClipboardTab.js.map +1 -0
  100. package/lib/module/features/clipboard/index.js +16 -0
  101. package/lib/module/features/clipboard/index.js.map +1 -0
  102. package/lib/module/features/console/ConsoleLogTab.js +157 -0
  103. package/lib/module/features/console/ConsoleLogTab.js.map +1 -0
  104. package/lib/module/features/console/index.js +112 -0
  105. package/lib/module/features/console/index.js.map +1 -0
  106. package/lib/module/{components → features/environment}/EnvironmentTab.js +5 -5
  107. package/lib/module/features/environment/EnvironmentTab.js.map +1 -0
  108. package/lib/module/features/{EnvironmentFeature.js → environment/index.js} +22 -25
  109. package/lib/module/features/environment/index.js.map +1 -0
  110. package/lib/module/{components → features/navigation}/NavigationLogTab.js +4 -3
  111. package/lib/module/features/navigation/NavigationLogTab.js.map +1 -0
  112. package/lib/module/features/navigation/index.js +32 -0
  113. package/lib/module/features/navigation/index.js.map +1 -0
  114. package/lib/module/{hooks → features/navigation}/useNavigationLogger.js +2 -2
  115. package/lib/module/features/navigation/useNavigationLogger.js.map +1 -0
  116. package/lib/module/features/network/NetworkLogTab.js +400 -0
  117. package/lib/module/features/network/NetworkLogTab.js.map +1 -0
  118. package/lib/module/features/network/index.js +90 -0
  119. package/lib/module/features/network/index.js.map +1 -0
  120. package/lib/module/features/network/networkInterceptor.js +256 -0
  121. package/lib/module/features/network/networkInterceptor.js.map +1 -0
  122. package/lib/module/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.js +3 -2
  123. package/lib/module/features/thirdPartyLibs/ThirdPartyLibsTab.js.map +1 -0
  124. package/lib/module/features/{ThirdPartyLibsFeature.js → thirdPartyLibs/index.js} +4 -4
  125. package/lib/module/features/thirdPartyLibs/index.js.map +1 -0
  126. package/lib/module/{native/NativeDebugLibs.js → features/thirdPartyLibs/nativeDebugLibs.js} +1 -1
  127. package/lib/module/features/thirdPartyLibs/nativeDebugLibs.js.map +1 -0
  128. package/lib/module/features/track/TrackLogTab.js +225 -0
  129. package/lib/module/features/track/TrackLogTab.js.map +1 -0
  130. package/lib/module/features/track/index.js +32 -0
  131. package/lib/module/features/track/index.js.map +1 -0
  132. package/lib/module/features/zustand/ZustandLogTab.js +306 -0
  133. package/lib/module/features/zustand/ZustandLogTab.js.map +1 -0
  134. package/lib/module/features/zustand/index.js +53 -0
  135. package/lib/module/features/zustand/index.js.map +1 -0
  136. package/lib/module/index.js +11 -12
  137. package/lib/module/index.js.map +1 -1
  138. package/lib/module/types/environment.js +2 -0
  139. package/lib/module/types/environment.js.map +1 -0
  140. package/lib/module/types/feature.js +4 -0
  141. package/lib/module/types/feature.js.map +1 -0
  142. package/lib/module/types/index.js +0 -2
  143. package/lib/module/types/logs.js +2 -0
  144. package/lib/module/types/logs.js.map +1 -0
  145. package/lib/module/types/navigation.js +2 -0
  146. package/lib/module/types/navigation.js.map +1 -0
  147. package/lib/module/types/thirdPartyLibs.js +2 -0
  148. package/lib/module/types/thirdPartyLibs.js.map +1 -0
  149. package/lib/module/ui/DebugView.js +61 -0
  150. package/lib/module/ui/DebugView.js.map +1 -0
  151. package/lib/module/ui/floating/FloatIcon.js +235 -0
  152. package/lib/module/ui/floating/FloatIcon.js.map +1 -0
  153. package/lib/module/ui/panel/DebugPanel.js +225 -0
  154. package/lib/module/ui/panel/DebugPanel.js.map +1 -0
  155. package/lib/module/ui/panel/FeatureTabBar.js +177 -0
  156. package/lib/module/ui/panel/FeatureTabBar.js.map +1 -0
  157. package/lib/module/ui/panel/FloatPanelView.js +233 -0
  158. package/lib/module/ui/panel/FloatPanelView.js.map +1 -0
  159. package/lib/module/{components → ui}/shared/CollapsibleSection.js +1 -1
  160. package/lib/module/ui/shared/CollapsibleSection.js.map +1 -0
  161. package/lib/module/{components → ui}/shared/CopyButton.js +1 -1
  162. package/lib/module/ui/shared/CopyButton.js.map +1 -0
  163. package/lib/module/ui/shared/JsonView.js.map +1 -0
  164. package/lib/module/ui/shared/LogListScreen.js +169 -0
  165. package/lib/module/ui/shared/LogListScreen.js.map +1 -0
  166. package/lib/module/ui/shared/useSlideDetailAnimation.js.map +1 -0
  167. package/lib/module/ui/theme/colors.js +38 -0
  168. package/lib/module/ui/theme/colors.js.map +1 -0
  169. package/lib/module/ui/theme/layout.js +4 -0
  170. package/lib/module/ui/theme/layout.js.map +1 -0
  171. package/lib/module/utils/createChannelFeature.js +58 -0
  172. package/lib/module/utils/createChannelFeature.js.map +1 -0
  173. package/lib/module/utils/createObservableStore.js +5 -0
  174. package/lib/module/utils/createObservableStore.js.map +1 -1
  175. package/lib/module/utils/createPersistedObservableStore.js +67 -0
  176. package/lib/module/utils/createPersistedObservableStore.js.map +1 -0
  177. package/lib/module/utils/debugPreferences.js +46 -0
  178. package/lib/module/utils/debugPreferences.js.map +1 -0
  179. package/lib/module/utils/urlRewriterRegistry.js +10 -0
  180. package/lib/module/utils/urlRewriterRegistry.js.map +1 -0
  181. package/lib/typescript/src/core/DebugToolkit.d.ts +17 -20
  182. package/lib/typescript/src/core/DebugToolkit.d.ts.map +1 -1
  183. package/lib/typescript/src/core/DebugToolkitProvider.d.ts +4 -7
  184. package/lib/typescript/src/core/DebugToolkitProvider.d.ts.map +1 -1
  185. package/lib/typescript/src/core/initialize.d.ts +32 -0
  186. package/lib/typescript/src/core/initialize.d.ts.map +1 -0
  187. package/lib/typescript/src/features/clipboard/ClipboardTab.d.ts +4 -0
  188. package/lib/typescript/src/features/clipboard/ClipboardTab.d.ts.map +1 -0
  189. package/lib/typescript/src/features/clipboard/index.d.ts +7 -0
  190. package/lib/typescript/src/features/clipboard/index.d.ts.map +1 -0
  191. package/lib/typescript/src/{components → features/console}/ConsoleLogTab.d.ts +2 -2
  192. package/lib/typescript/src/features/console/ConsoleLogTab.d.ts.map +1 -0
  193. package/lib/typescript/src/features/console/index.d.ts +9 -0
  194. package/lib/typescript/src/features/console/index.d.ts.map +1 -0
  195. package/lib/typescript/src/{components → features/environment}/EnvironmentTab.d.ts +1 -1
  196. package/lib/typescript/src/features/environment/EnvironmentTab.d.ts.map +1 -0
  197. package/lib/typescript/src/features/{EnvironmentFeature.d.ts → environment/index.d.ts} +2 -2
  198. package/lib/typescript/src/features/environment/index.d.ts.map +1 -0
  199. package/lib/typescript/src/{components → features/navigation}/NavigationLogTab.d.ts +2 -2
  200. package/lib/typescript/src/features/navigation/NavigationLogTab.d.ts.map +1 -0
  201. package/lib/typescript/src/features/{NavigationLogFeature.d.ts → navigation/index.d.ts} +5 -3
  202. package/lib/typescript/src/features/navigation/index.d.ts.map +1 -0
  203. package/lib/typescript/src/{hooks → features/navigation}/useNavigationLogger.d.ts +1 -8
  204. package/lib/typescript/src/features/navigation/useNavigationLogger.d.ts.map +1 -0
  205. package/lib/typescript/src/{components → features/network}/NetworkLogTab.d.ts +2 -2
  206. package/lib/typescript/src/features/network/NetworkLogTab.d.ts.map +1 -0
  207. package/lib/typescript/src/features/network/index.d.ts +15 -0
  208. package/lib/typescript/src/features/network/index.d.ts.map +1 -0
  209. package/lib/typescript/src/features/network/networkInterceptor.d.ts +19 -0
  210. package/lib/typescript/src/features/network/networkInterceptor.d.ts.map +1 -0
  211. package/lib/typescript/src/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.d.ts +2 -2
  212. package/lib/typescript/src/features/thirdPartyLibs/ThirdPartyLibsTab.d.ts.map +1 -0
  213. package/lib/typescript/src/features/thirdPartyLibs/index.d.ts +3 -0
  214. package/lib/typescript/src/features/thirdPartyLibs/index.d.ts.map +1 -0
  215. package/lib/typescript/src/{native/NativeDebugLibs.d.ts → features/thirdPartyLibs/nativeDebugLibs.d.ts} +1 -1
  216. package/lib/typescript/src/features/thirdPartyLibs/nativeDebugLibs.d.ts.map +1 -0
  217. package/lib/typescript/src/{components → features/track}/TrackLogTab.d.ts +2 -2
  218. package/lib/typescript/src/features/track/TrackLogTab.d.ts.map +1 -0
  219. package/lib/typescript/src/features/{TrackFeature.d.ts → track/index.d.ts} +5 -3
  220. package/lib/typescript/src/features/track/index.d.ts.map +1 -0
  221. package/lib/typescript/src/{components → features/zustand}/ZustandLogTab.d.ts +2 -2
  222. package/lib/typescript/src/features/zustand/ZustandLogTab.d.ts.map +1 -0
  223. package/lib/typescript/src/features/{ZustandLogFeature.d.ts → zustand/index.d.ts} +5 -3
  224. package/lib/typescript/src/features/zustand/index.d.ts.map +1 -0
  225. package/lib/typescript/src/index.d.ts +20 -20
  226. package/lib/typescript/src/index.d.ts.map +1 -1
  227. package/lib/typescript/src/types/environment.d.ts +11 -0
  228. package/lib/typescript/src/types/environment.d.ts.map +1 -0
  229. package/lib/typescript/src/types/feature.d.ts +23 -0
  230. package/lib/typescript/src/types/feature.d.ts.map +1 -0
  231. package/lib/typescript/src/types/index.d.ts +5 -111
  232. package/lib/typescript/src/types/index.d.ts.map +1 -1
  233. package/lib/typescript/src/types/logs.d.ts +51 -0
  234. package/lib/typescript/src/types/logs.d.ts.map +1 -0
  235. package/lib/typescript/src/types/navigation.d.ts +8 -0
  236. package/lib/typescript/src/types/navigation.d.ts.map +1 -0
  237. package/lib/typescript/src/types/thirdPartyLibs.d.ts +13 -0
  238. package/lib/typescript/src/types/thirdPartyLibs.d.ts.map +1 -0
  239. package/lib/typescript/src/ui/DebugView.d.ts +19 -0
  240. package/lib/typescript/src/ui/DebugView.d.ts.map +1 -0
  241. package/lib/typescript/src/ui/floating/FloatIcon.d.ts +12 -0
  242. package/lib/typescript/src/ui/floating/FloatIcon.d.ts.map +1 -0
  243. package/lib/typescript/src/ui/panel/DebugPanel.d.ts +9 -0
  244. package/lib/typescript/src/ui/panel/DebugPanel.d.ts.map +1 -0
  245. package/lib/typescript/src/ui/panel/FeatureTabBar.d.ts +13 -0
  246. package/lib/typescript/src/ui/panel/FeatureTabBar.d.ts.map +1 -0
  247. package/lib/typescript/src/ui/panel/FloatPanelView.d.ts +12 -0
  248. package/lib/typescript/src/ui/panel/FloatPanelView.d.ts.map +1 -0
  249. package/lib/typescript/src/ui/shared/CollapsibleSection.d.ts.map +1 -0
  250. package/lib/typescript/src/ui/shared/CopyButton.d.ts.map +1 -0
  251. package/lib/typescript/src/ui/shared/JsonView.d.ts.map +1 -0
  252. package/lib/typescript/src/ui/shared/LogListScreen.d.ts +21 -0
  253. package/lib/typescript/src/ui/shared/LogListScreen.d.ts.map +1 -0
  254. package/lib/typescript/src/ui/shared/useSlideDetailAnimation.d.ts.map +1 -0
  255. package/lib/typescript/src/ui/theme/colors.d.ts +21 -0
  256. package/lib/typescript/src/ui/theme/colors.d.ts.map +1 -0
  257. package/lib/typescript/src/ui/theme/layout.d.ts +2 -0
  258. package/lib/typescript/src/ui/theme/layout.d.ts.map +1 -0
  259. package/lib/typescript/src/utils/createChannelFeature.d.ts +27 -0
  260. package/lib/typescript/src/utils/createChannelFeature.d.ts.map +1 -0
  261. package/lib/typescript/src/utils/createObservableStore.d.ts +1 -0
  262. package/lib/typescript/src/utils/createObservableStore.d.ts.map +1 -1
  263. package/lib/typescript/src/utils/createPersistedObservableStore.d.ts +15 -0
  264. package/lib/typescript/src/utils/createPersistedObservableStore.d.ts.map +1 -0
  265. package/lib/typescript/src/utils/debugPreferences.d.ts +10 -0
  266. package/lib/typescript/src/utils/debugPreferences.d.ts.map +1 -0
  267. package/lib/typescript/src/utils/urlRewriterRegistry.d.ts +7 -0
  268. package/lib/typescript/src/utils/urlRewriterRegistry.d.ts.map +1 -0
  269. package/package.json +5 -1
  270. package/src/core/DebugToolkit.tsx +144 -142
  271. package/src/core/DebugToolkitProvider.tsx +44 -43
  272. package/src/core/initialize.ts +122 -0
  273. package/src/{components → features/clipboard}/ClipboardTab.tsx +10 -10
  274. package/src/features/clipboard/index.ts +15 -0
  275. package/src/features/console/ConsoleLogTab.tsx +95 -0
  276. package/src/features/console/index.ts +119 -0
  277. package/src/{components → features/environment}/EnvironmentTab.tsx +7 -7
  278. package/src/features/{EnvironmentFeature.ts → environment/index.ts} +27 -25
  279. package/src/{components → features/navigation}/NavigationLogTab.tsx +6 -5
  280. package/src/features/navigation/index.ts +44 -0
  281. package/src/{hooks → features/navigation}/useNavigationLogger.ts +3 -8
  282. package/src/features/network/NetworkLogTab.tsx +271 -0
  283. package/src/features/network/index.ts +113 -0
  284. package/src/features/network/networkInterceptor.ts +311 -0
  285. package/src/{components → features/thirdPartyLibs}/ThirdPartyLibsTab.tsx +6 -5
  286. package/src/features/{ThirdPartyLibsFeature.ts → thirdPartyLibs/index.ts} +5 -5
  287. package/src/features/track/TrackLogTab.tsx +110 -0
  288. package/src/features/track/index.ts +41 -0
  289. package/src/features/zustand/ZustandLogTab.tsx +203 -0
  290. package/src/features/{ZustandLogFeature.ts → zustand/index.ts} +19 -45
  291. package/src/index.ts +20 -24
  292. package/src/types/environment.ts +11 -0
  293. package/src/types/feature.ts +32 -0
  294. package/src/types/index.ts +29 -138
  295. package/src/types/logs.ts +54 -0
  296. package/src/types/navigation.ts +5 -0
  297. package/src/types/thirdPartyLibs.ts +13 -0
  298. package/src/ui/DebugView.tsx +80 -0
  299. package/src/ui/floating/FloatIcon.tsx +202 -0
  300. package/src/ui/panel/DebugPanel.tsx +215 -0
  301. package/src/ui/panel/FeatureTabBar.tsx +204 -0
  302. package/src/ui/panel/FloatPanelView.tsx +227 -0
  303. package/src/{components → ui}/shared/CollapsibleSection.tsx +1 -1
  304. package/src/{components → ui}/shared/CopyButton.tsx +1 -1
  305. package/src/ui/shared/LogListScreen.tsx +164 -0
  306. package/src/ui/theme/colors.ts +33 -0
  307. package/src/ui/theme/layout.ts +1 -0
  308. package/src/utils/createChannelFeature.ts +80 -0
  309. package/src/utils/createObservableStore.ts +6 -0
  310. package/src/utils/createPersistedObservableStore.ts +76 -0
  311. package/src/utils/debugPreferences.ts +48 -0
  312. package/src/utils/urlRewriterRegistry.ts +10 -0
  313. package/lib/commonjs/components/ClipboardTab.js.map +0 -1
  314. package/lib/commonjs/components/ConsoleLogTab.js +0 -295
  315. package/lib/commonjs/components/ConsoleLogTab.js.map +0 -1
  316. package/lib/commonjs/components/EnvironmentTab.js.map +0 -1
  317. package/lib/commonjs/components/FloatPanelView.js +0 -797
  318. package/lib/commonjs/components/FloatPanelView.js.map +0 -1
  319. package/lib/commonjs/components/NavigationLogTab.js.map +0 -1
  320. package/lib/commonjs/components/NetworkLogTab.js +0 -575
  321. package/lib/commonjs/components/NetworkLogTab.js.map +0 -1
  322. package/lib/commonjs/components/ThirdPartyLibsTab.js.map +0 -1
  323. package/lib/commonjs/components/TrackLogTab.js +0 -372
  324. package/lib/commonjs/components/TrackLogTab.js.map +0 -1
  325. package/lib/commonjs/components/ZustandLogTab.js +0 -451
  326. package/lib/commonjs/components/ZustandLogTab.js.map +0 -1
  327. package/lib/commonjs/components/shared/CollapsibleSection.js.map +0 -1
  328. package/lib/commonjs/components/shared/CopyButton.js.map +0 -1
  329. package/lib/commonjs/components/shared/JsonView.js.map +0 -1
  330. package/lib/commonjs/features/ClipboardFeature.js.map +0 -1
  331. package/lib/commonjs/features/ConsoleLogFeature.js +0 -98
  332. package/lib/commonjs/features/ConsoleLogFeature.js.map +0 -1
  333. package/lib/commonjs/features/EnvironmentFeature.js.map +0 -1
  334. package/lib/commonjs/features/NavigationLogFeature.js +0 -60
  335. package/lib/commonjs/features/NavigationLogFeature.js.map +0 -1
  336. package/lib/commonjs/features/NetworkFeature.js +0 -328
  337. package/lib/commonjs/features/NetworkFeature.js.map +0 -1
  338. package/lib/commonjs/features/ThirdPartyLibsFeature.js.map +0 -1
  339. package/lib/commonjs/features/TrackFeature.js +0 -55
  340. package/lib/commonjs/features/TrackFeature.js.map +0 -1
  341. package/lib/commonjs/features/ZustandLogFeature.js +0 -76
  342. package/lib/commonjs/features/ZustandLogFeature.js.map +0 -1
  343. package/lib/commonjs/hooks/useNavigationLogger.js.map +0 -1
  344. package/lib/commonjs/hooks/useSlideDetailAnimation.js.map +0 -1
  345. package/lib/commonjs/initialize.js +0 -161
  346. package/lib/commonjs/initialize.js.map +0 -1
  347. package/lib/commonjs/native/NativeDebugLibs.js.map +0 -1
  348. package/lib/commonjs/utils/constants.js +0 -135
  349. package/lib/commonjs/utils/constants.js.map +0 -1
  350. package/lib/module/components/ClipboardTab.js.map +0 -1
  351. package/lib/module/components/ConsoleLogTab.js +0 -290
  352. package/lib/module/components/ConsoleLogTab.js.map +0 -1
  353. package/lib/module/components/EnvironmentTab.js.map +0 -1
  354. package/lib/module/components/FloatPanelView.js +0 -791
  355. package/lib/module/components/FloatPanelView.js.map +0 -1
  356. package/lib/module/components/NavigationLogTab.js.map +0 -1
  357. package/lib/module/components/NetworkLogTab.js +0 -570
  358. package/lib/module/components/NetworkLogTab.js.map +0 -1
  359. package/lib/module/components/ThirdPartyLibsTab.js.map +0 -1
  360. package/lib/module/components/TrackLogTab.js +0 -367
  361. package/lib/module/components/TrackLogTab.js.map +0 -1
  362. package/lib/module/components/ZustandLogTab.js +0 -446
  363. package/lib/module/components/ZustandLogTab.js.map +0 -1
  364. package/lib/module/components/shared/CollapsibleSection.js.map +0 -1
  365. package/lib/module/components/shared/CopyButton.js.map +0 -1
  366. package/lib/module/components/shared/JsonView.js.map +0 -1
  367. package/lib/module/features/ClipboardFeature.js +0 -12
  368. package/lib/module/features/ClipboardFeature.js.map +0 -1
  369. package/lib/module/features/ConsoleLogFeature.js +0 -93
  370. package/lib/module/features/ConsoleLogFeature.js.map +0 -1
  371. package/lib/module/features/EnvironmentFeature.js.map +0 -1
  372. package/lib/module/features/NavigationLogFeature.js +0 -54
  373. package/lib/module/features/NavigationLogFeature.js.map +0 -1
  374. package/lib/module/features/NetworkFeature.js +0 -322
  375. package/lib/module/features/NetworkFeature.js.map +0 -1
  376. package/lib/module/features/ThirdPartyLibsFeature.js.map +0 -1
  377. package/lib/module/features/TrackFeature.js +0 -49
  378. package/lib/module/features/TrackFeature.js.map +0 -1
  379. package/lib/module/features/ZustandLogFeature.js +0 -69
  380. package/lib/module/features/ZustandLogFeature.js.map +0 -1
  381. package/lib/module/hooks/useNavigationLogger.js.map +0 -1
  382. package/lib/module/hooks/useSlideDetailAnimation.js.map +0 -1
  383. package/lib/module/initialize.js +0 -156
  384. package/lib/module/initialize.js.map +0 -1
  385. package/lib/module/native/NativeDebugLibs.js.map +0 -1
  386. package/lib/module/utils/constants.js +0 -130
  387. package/lib/module/utils/constants.js.map +0 -1
  388. package/lib/typescript/src/components/ClipboardTab.d.ts +0 -4
  389. package/lib/typescript/src/components/ClipboardTab.d.ts.map +0 -1
  390. package/lib/typescript/src/components/ConsoleLogTab.d.ts.map +0 -1
  391. package/lib/typescript/src/components/EnvironmentTab.d.ts.map +0 -1
  392. package/lib/typescript/src/components/FloatPanelView.d.ts +0 -64
  393. package/lib/typescript/src/components/FloatPanelView.d.ts.map +0 -1
  394. package/lib/typescript/src/components/NavigationLogTab.d.ts.map +0 -1
  395. package/lib/typescript/src/components/NetworkLogTab.d.ts.map +0 -1
  396. package/lib/typescript/src/components/ThirdPartyLibsTab.d.ts.map +0 -1
  397. package/lib/typescript/src/components/TrackLogTab.d.ts.map +0 -1
  398. package/lib/typescript/src/components/ZustandLogTab.d.ts.map +0 -1
  399. package/lib/typescript/src/components/shared/CollapsibleSection.d.ts.map +0 -1
  400. package/lib/typescript/src/components/shared/CopyButton.d.ts.map +0 -1
  401. package/lib/typescript/src/components/shared/JsonView.d.ts.map +0 -1
  402. package/lib/typescript/src/features/ClipboardFeature.d.ts +0 -3
  403. package/lib/typescript/src/features/ClipboardFeature.d.ts.map +0 -1
  404. package/lib/typescript/src/features/ConsoleLogFeature.d.ts +0 -7
  405. package/lib/typescript/src/features/ConsoleLogFeature.d.ts.map +0 -1
  406. package/lib/typescript/src/features/EnvironmentFeature.d.ts.map +0 -1
  407. package/lib/typescript/src/features/NavigationLogFeature.d.ts.map +0 -1
  408. package/lib/typescript/src/features/NetworkFeature.d.ts +0 -28
  409. package/lib/typescript/src/features/NetworkFeature.d.ts.map +0 -1
  410. package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts +0 -3
  411. package/lib/typescript/src/features/ThirdPartyLibsFeature.d.ts.map +0 -1
  412. package/lib/typescript/src/features/TrackFeature.d.ts.map +0 -1
  413. package/lib/typescript/src/features/ZustandLogFeature.d.ts.map +0 -1
  414. package/lib/typescript/src/hooks/useNavigationLogger.d.ts.map +0 -1
  415. package/lib/typescript/src/hooks/useSlideDetailAnimation.d.ts.map +0 -1
  416. package/lib/typescript/src/initialize.d.ts +0 -51
  417. package/lib/typescript/src/initialize.d.ts.map +0 -1
  418. package/lib/typescript/src/native/NativeDebugLibs.d.ts.map +0 -1
  419. package/lib/typescript/src/utils/constants.d.ts +0 -96
  420. package/lib/typescript/src/utils/constants.d.ts.map +0 -1
  421. package/src/components/ConsoleLogTab.tsx +0 -209
  422. package/src/components/FloatPanelView.tsx +0 -714
  423. package/src/components/NetworkLogTab.tsx +0 -411
  424. package/src/components/TrackLogTab.tsx +0 -245
  425. package/src/components/ZustandLogTab.tsx +0 -305
  426. package/src/features/ClipboardFeature.ts +0 -11
  427. package/src/features/ConsoleLogFeature.ts +0 -118
  428. package/src/features/NavigationLogFeature.ts +0 -74
  429. package/src/features/NetworkFeature.ts +0 -488
  430. package/src/features/TrackFeature.ts +0 -69
  431. package/src/initialize.ts +0 -214
  432. package/src/utils/constants.ts +0 -91
  433. /package/lib/commonjs/{components → ui}/shared/JsonView.js +0 -0
  434. /package/lib/commonjs/{hooks → ui/shared}/useSlideDetailAnimation.js +0 -0
  435. /package/lib/module/{components → ui}/shared/JsonView.js +0 -0
  436. /package/lib/module/{hooks → ui/shared}/useSlideDetailAnimation.js +0 -0
  437. /package/lib/typescript/src/{components → ui}/shared/CollapsibleSection.d.ts +0 -0
  438. /package/lib/typescript/src/{components → ui}/shared/CopyButton.d.ts +0 -0
  439. /package/lib/typescript/src/{components → ui}/shared/JsonView.d.ts +0 -0
  440. /package/lib/typescript/src/{hooks → ui/shared}/useSlideDetailAnimation.d.ts +0 -0
  441. /package/src/{native/NativeDebugLibs.ts → features/thirdPartyLibs/nativeDebugLibs.ts} +0 -0
  442. /package/src/{components → ui}/shared/JsonView.tsx +0 -0
  443. /package/src/{hooks → ui/shared}/useSlideDetailAnimation.ts +0 -0
@@ -1,791 +0,0 @@
1
- "use strict";
2
-
3
- import React, { Component } from 'react';
4
- import { View, Text, StyleSheet, Animated, PanResponder, Pressable, ScrollView, TouchableOpacity, Easing } from 'react-native';
5
- import { Layout, Colors } from '../utils/constants';
6
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
7
- export class FloatPanelView extends Component {
8
- tabScrollViewRef = /*#__PURE__*/React.createRef();
9
- unsubscribeFns = [];
10
- refreshTimeout = null;
11
- isDisposed = false;
12
- isSwitchingTab = false;
13
- underlineInitialized = false;
14
- tabScrollOffset = 0;
15
- tabViewportWidth = 0;
16
- tabContentWidth = 0;
17
- tabLayouts = [];
18
- constructor(props) {
19
- super(props);
20
- const initialPosition = {
21
- x: Layout.screenWidth - Layout.iconSize - 16,
22
- y: Layout.screenHeight / 2 - Layout.iconSize / 2
23
- };
24
- this.state = {
25
- isOpen: false,
26
- toFloat: true,
27
- pan: new Animated.ValueXY(initialPosition),
28
- scale: new Animated.Value(1),
29
- lastPosition: initialPosition,
30
- activeTab: 0,
31
- panelTranslateY: new Animated.Value(Layout.screenHeight),
32
- backdropOpacity: new Animated.Value(0),
33
- contentOpacity: new Animated.Value(1),
34
- contentTranslateX: new Animated.Value(0),
35
- underlineTranslateX: new Animated.Value(0),
36
- underlineWidth: 0
37
- };
38
- this.gestureResponder = PanResponder.create({
39
- onStartShouldSetPanResponder: () => true,
40
- onMoveShouldSetPanResponder: () => true,
41
- onPanResponderGrant: () => {
42
- this.setState({
43
- toFloat: true
44
- });
45
- Animated.spring(this.state.scale, {
46
- toValue: 0.9,
47
- friction: 5,
48
- useNativeDriver: true
49
- }).start();
50
- },
51
- onPanResponderMove: (_, gs) => {
52
- const {
53
- lastPosition
54
- } = this.state;
55
- const x = Math.max(0, Math.min(lastPosition.x + gs.dx, Layout.screenWidth - Layout.iconSize));
56
- const y = Math.max(0, Math.min(lastPosition.y + gs.dy, Layout.screenHeight - Layout.iconSize));
57
- this.state.pan.setValue({
58
- x,
59
- y
60
- });
61
- },
62
- onPanResponderRelease: (_, gs) => {
63
- if (Math.abs(gs.dx) < 5 && Math.abs(gs.dy) < 5) {
64
- Animated.spring(this.state.scale, {
65
- toValue: 1,
66
- friction: 5,
67
- useNativeDriver: true
68
- }).start();
69
- this.togglePanel();
70
- return;
71
- }
72
- Animated.spring(this.state.scale, {
73
- toValue: 1,
74
- friction: 5,
75
- useNativeDriver: true
76
- }).start();
77
- const {
78
- lastPosition
79
- } = this.state;
80
- const newPosition = {
81
- x: Math.max(0, Math.min(lastPosition.x + gs.dx, Layout.screenWidth - Layout.iconSize)),
82
- y: Math.max(0, Math.min(lastPosition.y + gs.dy, Layout.screenHeight - Layout.iconSize))
83
- };
84
- this.setState({
85
- lastPosition: newPosition,
86
- toFloat: true
87
- });
88
- },
89
- onPanResponderTerminate: (_, gs) => {
90
- const {
91
- lastPosition
92
- } = this.state;
93
- const newPosition = {
94
- x: Math.max(0, Math.min(lastPosition.x + gs.dx, Layout.screenWidth - Layout.iconSize)),
95
- y: Math.max(0, Math.min(lastPosition.y + gs.dy, Layout.screenHeight - Layout.iconSize))
96
- };
97
- this.setState({
98
- lastPosition: newPosition
99
- });
100
- }
101
- });
102
- this.panelResponder = PanResponder.create({
103
- onStartShouldSetPanResponder: () => true,
104
- onMoveShouldSetPanResponder: (_, gs) => gs.dy > 5,
105
- onPanResponderMove: (_, gs) => {
106
- if (gs.dy > 0) {
107
- this.state.panelTranslateY.setValue(gs.dy);
108
- this.state.backdropOpacity.setValue(Math.max(0, 1 - gs.dy / 200));
109
- }
110
- },
111
- onPanResponderRelease: (_, gs) => {
112
- if (gs.dy > 100) {
113
- this.closePanel();
114
- } else {
115
- Animated.spring(this.state.panelTranslateY, {
116
- toValue: 0,
117
- friction: 8,
118
- tension: 50,
119
- useNativeDriver: true
120
- }).start();
121
- Animated.timing(this.state.backdropOpacity, {
122
- toValue: 1,
123
- duration: 200,
124
- useNativeDriver: true
125
- }).start();
126
- }
127
- }
128
- });
129
-
130
- // Horizontal swipe for tab switching
131
- this.swipeResponder = PanResponder.create({
132
- onStartShouldSetPanResponder: () => false,
133
- onMoveShouldSetPanResponder: (_, gs) => {
134
- if (this.isSwitchingTab) return false;
135
- return Math.abs(gs.dx) > 25 && Math.abs(gs.dx) > Math.abs(gs.dy) * 2.5;
136
- },
137
- onPanResponderRelease: (_, gs) => {
138
- const tabs = this.getTabs();
139
- if (gs.dx < -40 && this.state.activeTab < tabs.length - 1) {
140
- this.switchTab(this.state.activeTab + 1);
141
- } else if (gs.dx > 40 && this.state.activeTab > 0) {
142
- this.switchTab(this.state.activeTab - 1);
143
- }
144
- },
145
- onPanResponderTerminationRequest: () => true
146
- });
147
- }
148
- componentDidMount() {
149
- this.isDisposed = false;
150
- this.subscribeToFeatures(this.props.features);
151
- }
152
- componentDidUpdate(prevProps) {
153
- if (prevProps.features !== this.props.features) {
154
- this.unsubscribeFromFeatures();
155
- this.subscribeToFeatures(this.props.features);
156
- if (this.state.activeTab >= this.props.features.length) {
157
- this.setState({
158
- activeTab: 0
159
- });
160
- }
161
- }
162
- }
163
- componentWillUnmount() {
164
- this.isDisposed = true;
165
- if (this.refreshTimeout) {
166
- clearTimeout(this.refreshTimeout);
167
- this.refreshTimeout = null;
168
- }
169
- this.unsubscribeFromFeatures();
170
- }
171
- scheduleRefresh() {
172
- if (this.isDisposed || this.refreshTimeout) return;
173
- this.refreshTimeout = setTimeout(() => {
174
- this.refreshTimeout = null;
175
- if (!this.isDisposed) this.forceUpdate();
176
- }, 0);
177
- }
178
- subscribeToFeatures(features) {
179
- this.unsubscribeFns = features.map(feature => feature.subscribe?.(() => this.scheduleRefresh())).filter(unsubscribe => typeof unsubscribe === 'function');
180
- }
181
- unsubscribeFromFeatures() {
182
- this.unsubscribeFns.forEach(unsubscribe => unsubscribe());
183
- this.unsubscribeFns = [];
184
- }
185
- togglePanel = () => {
186
- if (this.state.isOpen) this.closePanel();else this.openPanel();
187
- };
188
- openPanel = () => {
189
- this.resetTabMeasurements();
190
- this.setState({
191
- isOpen: true,
192
- toFloat: false,
193
- underlineWidth: 0
194
- }, () => {
195
- Animated.parallel([Animated.spring(this.state.panelTranslateY, {
196
- toValue: 0,
197
- friction: 8,
198
- tension: 65,
199
- useNativeDriver: true
200
- }), Animated.timing(this.state.backdropOpacity, {
201
- toValue: 1,
202
- duration: 250,
203
- useNativeDriver: true
204
- })]).start();
205
- });
206
- };
207
- closePanel = () => {
208
- Animated.parallel([Animated.spring(this.state.panelTranslateY, {
209
- toValue: Layout.screenHeight,
210
- friction: 8,
211
- tension: 65,
212
- useNativeDriver: true
213
- }), Animated.timing(this.state.backdropOpacity, {
214
- toValue: 0,
215
- duration: 200,
216
- useNativeDriver: true
217
- })]).start(() => {
218
- this.setState({
219
- isOpen: false,
220
- toFloat: true
221
- });
222
- });
223
- };
224
- resetTabMeasurements() {
225
- this.underlineInitialized = false;
226
- this.tabScrollOffset = 0;
227
- this.tabViewportWidth = 0;
228
- this.tabContentWidth = 0;
229
- this.tabLayouts = [];
230
- this.state.underlineTranslateX.setValue(0);
231
- }
232
- switchTab = index => {
233
- if (this.isSwitchingTab || index === this.state.activeTab) return;
234
- this.isSwitchingTab = true;
235
- const direction = index > this.state.activeTab ? 1 : -1;
236
-
237
- // Auto-scroll tab bar first, then animate underline
238
- const layout = this.tabLayouts[index];
239
- if (layout) {
240
- const targetScrollX = this.getTabScrollTarget(index);
241
- this.tabScrollOffset = targetScrollX;
242
- if (this.tabScrollViewRef.current) {
243
- this.tabScrollViewRef.current.scrollTo({
244
- x: targetScrollX,
245
- animated: true
246
- });
247
- }
248
- this.animateUnderline(index, targetScrollX);
249
- }
250
-
251
- // Animate content: slide out + fade out
252
- Animated.parallel([Animated.timing(this.state.contentOpacity, {
253
- toValue: 0,
254
- duration: 80,
255
- useNativeDriver: true
256
- }), Animated.timing(this.state.contentTranslateX, {
257
- toValue: -direction * 40,
258
- duration: 80,
259
- useNativeDriver: true
260
- })]).start(() => {
261
- this.setState({
262
- activeTab: index
263
- }, () => {
264
- // Reset translateX to opposite side instantly, then slide in + fade in
265
- this.state.contentTranslateX.setValue(direction * 40);
266
- Animated.parallel([Animated.timing(this.state.contentOpacity, {
267
- toValue: 1,
268
- duration: 150,
269
- useNativeDriver: true
270
- }), Animated.timing(this.state.contentTranslateX, {
271
- toValue: 0,
272
- duration: 200,
273
- easing: Easing.out(Easing.cubic),
274
- useNativeDriver: true
275
- })]).start(() => {
276
- this.isSwitchingTab = false;
277
- });
278
- });
279
- });
280
- };
281
- animateUnderline(index, scrollOffset) {
282
- const layout = this.tabLayouts[index];
283
- if (!layout) {
284
- return;
285
- }
286
- const offsetX = this.getClampedTabScrollOffset(scrollOffset ?? this.tabScrollOffset);
287
- this.setState({
288
- underlineWidth: layout.width
289
- });
290
- Animated.spring(this.state.underlineTranslateX, {
291
- toValue: layout.x - offsetX,
292
- friction: 7,
293
- tension: 50,
294
- useNativeDriver: true
295
- }).start();
296
- }
297
- getMaxTabScrollOffset() {
298
- return Math.max(0, this.tabContentWidth - this.tabViewportWidth);
299
- }
300
- getClampedTabScrollOffset(offset) {
301
- return Math.min(Math.max(0, offset), this.getMaxTabScrollOffset());
302
- }
303
- getTabScrollTarget(index) {
304
- const layout = this.tabLayouts[index];
305
- if (!layout) {
306
- return this.getClampedTabScrollOffset(this.tabScrollOffset);
307
- }
308
- return this.getClampedTabScrollOffset(layout.x - 60);
309
- }
310
- tryInitializeTabBar() {
311
- if (this.underlineInitialized || this.tabViewportWidth <= 0 || this.tabContentWidth <= 0) {
312
- return;
313
- }
314
- const layout = this.tabLayouts[this.state.activeTab];
315
- if (!layout) {
316
- return;
317
- }
318
- const targetScrollX = this.getTabScrollTarget(this.state.activeTab);
319
- this.tabScrollOffset = targetScrollX;
320
- if (this.tabScrollViewRef.current) {
321
- this.tabScrollViewRef.current.scrollTo({
322
- x: targetScrollX,
323
- animated: false
324
- });
325
- }
326
- this.state.underlineTranslateX.setValue(layout.x - targetScrollX);
327
- this.setState({
328
- underlineWidth: layout.width
329
- });
330
- this.underlineInitialized = true;
331
- }
332
- syncUnderlineToActiveTab() {
333
- const layout = this.tabLayouts[this.state.activeTab];
334
- if (!layout) {
335
- return;
336
- }
337
- const clampedOffset = this.getClampedTabScrollOffset(this.tabScrollOffset);
338
- if (clampedOffset !== this.tabScrollOffset) {
339
- this.tabScrollOffset = clampedOffset;
340
- }
341
- this.state.underlineTranslateX.setValue(layout.x - clampedOffset);
342
- if (this.state.underlineWidth !== layout.width) {
343
- this.setState({
344
- underlineWidth: layout.width
345
- });
346
- }
347
- }
348
- handleTabLayout = (index, event) => {
349
- const {
350
- x,
351
- width
352
- } = event.nativeEvent.layout;
353
- this.tabLayouts[index] = {
354
- x,
355
- width
356
- };
357
- if (index === this.state.activeTab) {
358
- this.tryInitializeTabBar();
359
- }
360
- };
361
- getTabs() {
362
- return this.props.features.map(f => ({
363
- label: f.label,
364
- id: f.name
365
- }));
366
- }
367
- renderFeatureContent() {
368
- const tabs = this.getTabs();
369
- if (tabs.length === 0) {
370
- return /*#__PURE__*/_jsx(Text, {
371
- style: styles.emptyText,
372
- children: "No debug features enabled"
373
- });
374
- }
375
- const featureId = tabs[this.state.activeTab]?.id;
376
- const feature = this.props.features.find(f => f.name === featureId);
377
- if (!feature) {
378
- return /*#__PURE__*/_jsx(Text, {
379
- style: styles.emptyText,
380
- children: "Feature not found"
381
- });
382
- }
383
- const data = feature.getData();
384
- const TabComponent = feature.renderContent;
385
- if (TabComponent) {
386
- return /*#__PURE__*/_jsx(TabComponent, {
387
- data: data,
388
- feature: feature
389
- });
390
- }
391
- return /*#__PURE__*/_jsx(View, {
392
- style: styles.genericContent,
393
- children: /*#__PURE__*/_jsx(Text, {
394
- style: styles.jsonContent,
395
- children: JSON.stringify(data, null, 2)
396
- })
397
- });
398
- }
399
- render() {
400
- const {
401
- isOpen,
402
- toFloat,
403
- pan,
404
- scale,
405
- panelTranslateY,
406
- backdropOpacity,
407
- activeTab,
408
- contentOpacity
409
- } = this.state;
410
- const tabs = this.getTabs();
411
- return /*#__PURE__*/_jsxs(View, {
412
- style: styles.container,
413
- pointerEvents: "box-none",
414
- children: [!isOpen && toFloat && /*#__PURE__*/_jsx(Animated.View, {
415
- ...this.gestureResponder.panHandlers,
416
- style: [styles.floatBtn, {
417
- transform: [{
418
- translateX: pan.x
419
- }, {
420
- translateY: pan.y
421
- }, {
422
- scale
423
- }]
424
- }],
425
- children: /*#__PURE__*/_jsxs(Pressable, {
426
- onPress: this.togglePanel,
427
- style: styles.floatBtnInner,
428
- children: [/*#__PURE__*/_jsxs(View, {
429
- style: styles.iconGrid,
430
- children: [/*#__PURE__*/_jsxs(View, {
431
- style: styles.iconRow,
432
- children: [/*#__PURE__*/_jsx(View, {
433
- style: [styles.iconCell, {
434
- backgroundColor: Colors.primary
435
- }]
436
- }), /*#__PURE__*/_jsx(View, {
437
- style: [styles.iconCell, {
438
- backgroundColor: Colors.success
439
- }]
440
- })]
441
- }), /*#__PURE__*/_jsxs(View, {
442
- style: styles.iconRow,
443
- children: [/*#__PURE__*/_jsx(View, {
444
- style: [styles.iconCell, {
445
- backgroundColor: Colors.warning
446
- }]
447
- }), /*#__PURE__*/_jsx(View, {
448
- style: [styles.iconCell, {
449
- backgroundColor: Colors.purple
450
- }]
451
- })]
452
- })]
453
- }), (() => {
454
- const envBadge = this.props.features.map(f => f.badge?.()).find(b => b != null);
455
- if (!envBadge) return null;
456
- return /*#__PURE__*/_jsx(View, {
457
- style: [styles.envBadge, {
458
- backgroundColor: envBadge.color
459
- }],
460
- children: /*#__PURE__*/_jsx(Text, {
461
- style: styles.envBadgeText,
462
- children: envBadge.label
463
- })
464
- });
465
- })()]
466
- })
467
- }), isOpen && /*#__PURE__*/_jsxs(View, {
468
- style: styles.panelContainer,
469
- children: [/*#__PURE__*/_jsx(Animated.View, {
470
- style: [styles.backdrop, {
471
- opacity: backdropOpacity
472
- }],
473
- children: /*#__PURE__*/_jsx(Pressable, {
474
- style: styles.backdropPressable,
475
- onPress: this.closePanel
476
- })
477
- }), /*#__PURE__*/_jsxs(Animated.View, {
478
- style: [styles.panel, {
479
- transform: [{
480
- translateY: panelTranslateY
481
- }]
482
- }],
483
- children: [/*#__PURE__*/_jsxs(View, {
484
- ...this.panelResponder.panHandlers,
485
- children: [/*#__PURE__*/_jsx(View, {
486
- style: styles.dragHandle,
487
- children: /*#__PURE__*/_jsx(View, {
488
- style: styles.dragIndicator
489
- })
490
- }), /*#__PURE__*/_jsxs(View, {
491
- style: styles.header,
492
- children: [/*#__PURE__*/_jsx(Text, {
493
- style: styles.headerTitle,
494
- children: "Debug Toolkit"
495
- }), /*#__PURE__*/_jsxs(View, {
496
- style: styles.headerButtons,
497
- children: [/*#__PURE__*/_jsx(TouchableOpacity, {
498
- onPress: () => {
499
- this.props.onClearAll();
500
- this.closePanel();
501
- },
502
- style: styles.clearAllButton,
503
- activeOpacity: 0.6,
504
- children: /*#__PURE__*/_jsx(Text, {
505
- style: styles.clearButtonText,
506
- children: "Clear"
507
- })
508
- }), /*#__PURE__*/_jsx(Pressable, {
509
- onPress: this.closePanel,
510
- style: styles.closeButton,
511
- children: /*#__PURE__*/_jsx(Text, {
512
- style: styles.closeButtonText,
513
- children: "\u2715"
514
- })
515
- })]
516
- })]
517
- })]
518
- }), /*#__PURE__*/_jsxs(View, {
519
- style: styles.panelContent,
520
- children: [/*#__PURE__*/_jsxs(View, {
521
- style: styles.tabBarContainer,
522
- children: [/*#__PURE__*/_jsx(ScrollView, {
523
- ref: this.tabScrollViewRef,
524
- horizontal: true,
525
- showsHorizontalScrollIndicator: false,
526
- contentContainerStyle: styles.tabsScrollContainer,
527
- onLayout: e => {
528
- this.tabViewportWidth = e.nativeEvent.layout.width;
529
- this.tryInitializeTabBar();
530
- },
531
- onContentSizeChange: width => {
532
- this.tabContentWidth = width;
533
- this.tryInitializeTabBar();
534
- },
535
- onScroll: e => {
536
- this.tabScrollOffset = this.getClampedTabScrollOffset(e.nativeEvent.contentOffset.x);
537
- // Keep underline aligned with active tab during manual scroll
538
- if (!this.isSwitchingTab) {
539
- this.syncUnderlineToActiveTab();
540
- }
541
- },
542
- scrollEventThrottle: 16,
543
- children: tabs.map((tab, index) => /*#__PURE__*/_jsx(TouchableOpacity, {
544
- style: styles.tab,
545
- onPress: () => this.switchTab(index),
546
- activeOpacity: 0.7,
547
- onLayout: e => this.handleTabLayout(index, e),
548
- children: /*#__PURE__*/_jsx(Text, {
549
- style: [styles.tabText, activeTab === index && styles.activeTabText],
550
- numberOfLines: 1,
551
- children: tab.label
552
- })
553
- }, tab.id))
554
- }), /*#__PURE__*/_jsx(Animated.View, {
555
- style: [styles.slidingUnderline, {
556
- width: this.state.underlineWidth,
557
- transform: [{
558
- translateX: this.state.underlineTranslateX
559
- }]
560
- }]
561
- })]
562
- }), /*#__PURE__*/_jsx(Animated.View, {
563
- style: [styles.contentContainer, {
564
- opacity: contentOpacity,
565
- transform: [{
566
- translateX: this.state.contentTranslateX
567
- }]
568
- }],
569
- ...this.swipeResponder.panHandlers,
570
- children: this.renderFeatureContent()
571
- })]
572
- })]
573
- })]
574
- })]
575
- });
576
- }
577
- }
578
- const styles = StyleSheet.create({
579
- container: {
580
- position: 'absolute',
581
- top: 0,
582
- left: 0,
583
- right: 0,
584
- bottom: 0,
585
- zIndex: 999
586
- },
587
- // Float button
588
- floatBtn: {
589
- position: 'absolute',
590
- width: Layout.iconSize,
591
- height: Layout.iconSize,
592
- borderRadius: Layout.iconSize / 2,
593
- backgroundColor: '#FFFFFF',
594
- elevation: 6,
595
- shadowColor: '#000',
596
- shadowOffset: {
597
- width: 0,
598
- height: 2
599
- },
600
- shadowOpacity: 0.12,
601
- shadowRadius: 8
602
- },
603
- floatBtnInner: {
604
- width: '100%',
605
- height: '100%',
606
- alignItems: 'center',
607
- justifyContent: 'center'
608
- },
609
- iconGrid: {
610
- width: 22,
611
- height: 22,
612
- justifyContent: 'space-between'
613
- },
614
- iconRow: {
615
- flexDirection: 'row',
616
- justifyContent: 'space-between'
617
- },
618
- iconCell: {
619
- width: 8,
620
- height: 8,
621
- borderRadius: 2.5
622
- },
623
- envBadge: {
624
- position: 'absolute',
625
- top: -4,
626
- right: -4,
627
- minWidth: 20,
628
- height: 18,
629
- borderRadius: 9,
630
- paddingHorizontal: 5,
631
- alignItems: 'center',
632
- justifyContent: 'center',
633
- borderWidth: 2,
634
- borderColor: '#FFF',
635
- elevation: 4
636
- },
637
- envBadgeText: {
638
- color: '#FFF',
639
- fontSize: 9,
640
- fontWeight: '700'
641
- },
642
- // Panel
643
- panelContainer: {
644
- position: 'absolute',
645
- top: 0,
646
- left: 0,
647
- right: 0,
648
- bottom: 0,
649
- justifyContent: 'flex-end'
650
- },
651
- backdrop: {
652
- position: 'absolute',
653
- top: 0,
654
- left: 0,
655
- right: 0,
656
- bottom: 0,
657
- backgroundColor: 'rgba(0,0,0,0.35)'
658
- },
659
- backdropPressable: {
660
- flex: 1
661
- },
662
- panel: {
663
- width: '100%',
664
- height: '90%',
665
- backgroundColor: Colors.background,
666
- borderTopLeftRadius: 28,
667
- borderTopRightRadius: 28,
668
- overflow: 'hidden',
669
- elevation: 24,
670
- shadowColor: '#000',
671
- shadowOffset: {
672
- width: 0,
673
- height: -4
674
- },
675
- shadowOpacity: 0.08,
676
- shadowRadius: 12
677
- },
678
- dragHandle: {
679
- width: '100%',
680
- height: 20,
681
- alignItems: 'center',
682
- justifyContent: 'center',
683
- backgroundColor: Colors.surface
684
- },
685
- dragIndicator: {
686
- width: 40,
687
- height: 4,
688
- borderRadius: 2,
689
- backgroundColor: '#D1D1D6'
690
- },
691
- panelContent: {
692
- flex: 1
693
- },
694
- contentContainer: {
695
- flex: 1
696
- },
697
- // Header
698
- header: {
699
- flexDirection: 'row',
700
- justifyContent: 'space-between',
701
- alignItems: 'center',
702
- paddingHorizontal: 20,
703
- paddingTop: 6,
704
- paddingBottom: 10,
705
- backgroundColor: Colors.surface
706
- },
707
- headerTitle: {
708
- fontSize: 17,
709
- fontWeight: '600',
710
- color: Colors.text
711
- },
712
- headerButtons: {
713
- flexDirection: 'row',
714
- alignItems: 'center',
715
- gap: 12
716
- },
717
- clearAllButton: {
718
- paddingHorizontal: 12,
719
- paddingVertical: 6,
720
- borderRadius: 8,
721
- backgroundColor: 'rgba(255,59,48,0.06)'
722
- },
723
- clearButtonText: {
724
- color: Colors.error,
725
- fontSize: 14,
726
- fontWeight: '500'
727
- },
728
- closeButton: {
729
- width: 30,
730
- height: 30,
731
- borderRadius: 15,
732
- backgroundColor: Colors.background,
733
- alignItems: 'center',
734
- justifyContent: 'center'
735
- },
736
- closeButtonText: {
737
- fontSize: 16,
738
- fontWeight: '400',
739
- color: Colors.textSecondary,
740
- lineHeight: 16
741
- },
742
- // Tab bar - iOS 17 sliding underline style
743
- tabBarContainer: {
744
- backgroundColor: Colors.surface,
745
- borderBottomWidth: StyleSheet.hairlineWidth,
746
- borderBottomColor: Colors.border
747
- },
748
- tabsScrollContainer: {
749
- paddingHorizontal: 20,
750
- flexDirection: 'row'
751
- },
752
- tab: {
753
- paddingVertical: 10,
754
- paddingHorizontal: 14,
755
- marginRight: 8
756
- },
757
- tabText: {
758
- fontSize: 14,
759
- fontWeight: '500',
760
- color: Colors.textLight
761
- },
762
- activeTabText: {
763
- color: Colors.primary,
764
- fontWeight: '600'
765
- },
766
- slidingUnderline: {
767
- position: 'absolute',
768
- bottom: 0,
769
- left: 0,
770
- height: 2.5,
771
- borderRadius: 1.25,
772
- backgroundColor: Colors.primary
773
- },
774
- // Misc
775
- emptyText: {
776
- padding: 20,
777
- textAlign: 'center',
778
- color: Colors.textLight,
779
- fontSize: 13
780
- },
781
- genericContent: {
782
- padding: 16,
783
- flex: 1
784
- },
785
- jsonContent: {
786
- fontFamily: 'monospace',
787
- fontSize: 12,
788
- color: Colors.text
789
- }
790
- });
791
- //# sourceMappingURL=FloatPanelView.js.map