react-native-inapp-inspector 2.2.2 → 2.2.4

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 (159) hide show
  1. package/dist/commonjs/components/AnalyticsDetail.js +5 -1
  2. package/dist/commonjs/components/AnalyticsEventCard.js +2 -1
  3. package/dist/commonjs/components/DiffViewer.js +1 -1
  4. package/dist/commonjs/components/Inspector/BundleTab.js +22 -0
  5. package/dist/commonjs/components/Inspector/DeviceInfoTab.d.ts +3 -0
  6. package/dist/commonjs/components/Inspector/DeviceInfoTab.js +835 -0
  7. package/dist/commonjs/components/Inspector/InspectorHeader.js +12 -14
  8. package/dist/commonjs/components/Inspector/LogDetail.js +6 -3
  9. package/dist/commonjs/components/Inspector/MainScreen.js +7 -3
  10. package/dist/commonjs/components/Inspector/NetworkTab.js +92 -15
  11. package/dist/commonjs/components/Inspector/PerformanceTab.js +38 -12
  12. package/dist/commonjs/components/Inspector/SettingsPanel.js +440 -229
  13. package/dist/commonjs/components/Inspector/StorageTab.d.ts +3 -0
  14. package/dist/commonjs/components/Inspector/StorageTab.js +892 -0
  15. package/dist/commonjs/components/Inspector/TabBar.js +14 -0
  16. package/dist/commonjs/components/Inspector/TelemetryConsentModal.js +11 -2
  17. package/dist/commonjs/components/Inspector/UpdateAvailableModal.js +4 -1
  18. package/dist/commonjs/components/NetworkIcons.d.ts +6 -0
  19. package/dist/commonjs/components/NetworkIcons.js +30 -1
  20. package/dist/commonjs/constants/version.d.ts +1 -1
  21. package/dist/commonjs/constants/version.js +1 -1
  22. package/dist/commonjs/customHooks/bundleAnalyzer.js +44 -22
  23. package/dist/commonjs/customHooks/storageInspector.d.ts +67 -0
  24. package/dist/commonjs/customHooks/storageInspector.js +486 -0
  25. package/dist/commonjs/i18n/locales/en.json +8 -2
  26. package/dist/commonjs/index.d.ts +1 -0
  27. package/dist/commonjs/index.js +16 -1
  28. package/dist/commonjs/storage.d.ts +5 -0
  29. package/dist/commonjs/storage.js +18 -0
  30. package/dist/commonjs/types/enums.d.ts +5 -0
  31. package/dist/commonjs/types/enums.js +5 -0
  32. package/dist/esm/components/AnalyticsDetail.js +6 -2
  33. package/dist/esm/components/AnalyticsEventCard.js +2 -1
  34. package/dist/esm/components/DiffViewer.js +1 -1
  35. package/dist/esm/components/Inspector/BundleTab.js +22 -0
  36. package/dist/esm/components/Inspector/DeviceInfoTab.d.ts +3 -0
  37. package/dist/esm/components/Inspector/DeviceInfoTab.js +796 -0
  38. package/dist/esm/components/Inspector/InspectorHeader.js +13 -15
  39. package/dist/esm/components/Inspector/LogDetail.js +7 -4
  40. package/dist/esm/components/Inspector/MainScreen.js +7 -3
  41. package/dist/esm/components/Inspector/NetworkTab.js +93 -16
  42. package/dist/esm/components/Inspector/PerformanceTab.js +39 -13
  43. package/dist/esm/components/Inspector/SettingsPanel.js +441 -230
  44. package/dist/esm/components/Inspector/StorageTab.d.ts +3 -0
  45. package/dist/esm/components/Inspector/StorageTab.js +853 -0
  46. package/dist/esm/components/Inspector/TabBar.js +15 -1
  47. package/dist/esm/components/Inspector/TelemetryConsentModal.js +11 -2
  48. package/dist/esm/components/Inspector/UpdateAvailableModal.js +4 -1
  49. package/dist/esm/components/NetworkIcons.d.ts +6 -0
  50. package/dist/esm/components/NetworkIcons.js +23 -0
  51. package/dist/esm/constants/version.d.ts +1 -1
  52. package/dist/esm/constants/version.js +1 -1
  53. package/dist/esm/customHooks/bundleAnalyzer.js +44 -22
  54. package/dist/esm/customHooks/storageInspector.d.ts +67 -0
  55. package/dist/esm/customHooks/storageInspector.js +469 -0
  56. package/dist/esm/i18n/locales/en.json +8 -2
  57. package/dist/esm/index.d.ts +1 -0
  58. package/dist/esm/index.js +5 -0
  59. package/dist/esm/storage.d.ts +5 -0
  60. package/dist/esm/storage.js +5 -0
  61. package/dist/esm/types/enums.d.ts +5 -0
  62. package/dist/esm/types/enums.js +5 -0
  63. package/package.json +9 -1
  64. package/src/analytics.ts +35 -0
  65. package/src/bundle.ts +25 -0
  66. package/src/components/AnalyticsDetail.tsx +870 -0
  67. package/src/components/AnalyticsEventCard.tsx +442 -0
  68. package/src/components/AnalyticsGraph.tsx +583 -0
  69. package/src/components/AnimatedEntrance.tsx +64 -0
  70. package/src/components/AppHeaderLogo.tsx +109 -0
  71. package/src/components/BrandCircleIcon.tsx +144 -0
  72. package/src/components/BrandSquareIcon.tsx +144 -0
  73. package/src/components/CodeSnippet.tsx +725 -0
  74. package/src/components/ConsoleLogCard.tsx +628 -0
  75. package/src/components/CopyButton.tsx +87 -0
  76. package/src/components/DiffViewer.tsx +82 -0
  77. package/src/components/DomainHeader.tsx +237 -0
  78. package/src/components/EmptyState.tsx +73 -0
  79. package/src/components/EndOfListFooter.tsx +100 -0
  80. package/src/components/ErrorBoundary.tsx +688 -0
  81. package/src/components/HeadersSection.tsx +192 -0
  82. package/src/components/HighlightText.tsx +100 -0
  83. package/src/components/Inspector/AnalyticsFilterModal.tsx +1250 -0
  84. package/src/components/Inspector/AnalyticsTab.tsx +1336 -0
  85. package/src/components/Inspector/BundleTab.tsx +4760 -0
  86. package/src/components/Inspector/ConsoleTab.tsx +702 -0
  87. package/src/components/Inspector/CrashDetail.tsx +941 -0
  88. package/src/components/Inspector/CrashFilterModal.tsx +721 -0
  89. package/src/components/Inspector/CrashTab.tsx +871 -0
  90. package/src/components/Inspector/DeviceInfoTab.tsx +1204 -0
  91. package/src/components/Inspector/FabLauncher.tsx +80 -0
  92. package/src/components/Inspector/InspectorContext.tsx +28 -0
  93. package/src/components/Inspector/InspectorHeader.tsx +972 -0
  94. package/src/components/Inspector/LogDetail.tsx +1431 -0
  95. package/src/components/Inspector/MainScreen.tsx +262 -0
  96. package/src/components/Inspector/NavigationTracker.tsx +13 -0
  97. package/src/components/Inspector/NetworkDetail.tsx +794 -0
  98. package/src/components/Inspector/NetworkTab.tsx +1183 -0
  99. package/src/components/Inspector/NpmUpdateToast.tsx +392 -0
  100. package/src/components/Inspector/PerformanceTab.tsx +1928 -0
  101. package/src/components/Inspector/ReduxDetail.tsx +1651 -0
  102. package/src/components/Inspector/ReduxTab.tsx +954 -0
  103. package/src/components/Inspector/SettingsPanel.tsx +3447 -0
  104. package/src/components/Inspector/StorageTab.tsx +1048 -0
  105. package/src/components/Inspector/TabBar.tsx +207 -0
  106. package/src/components/Inspector/TelemetryConsentModal.tsx +416 -0
  107. package/src/components/Inspector/UpdateAvailableModal.tsx +557 -0
  108. package/src/components/JsonViewer.tsx +486 -0
  109. package/src/components/LogCard.tsx +491 -0
  110. package/src/components/LogSyntaxHighlighter.tsx +178 -0
  111. package/src/components/MetaAccordion.tsx +340 -0
  112. package/src/components/MiniBarChart.tsx +42 -0
  113. package/src/components/MiniLineChart.tsx +33 -0
  114. package/src/components/NetworkIcons.tsx +2221 -0
  115. package/src/components/SectionHeader.tsx +113 -0
  116. package/src/components/SegmentedTabs.tsx +83 -0
  117. package/src/components/Slider.tsx +300 -0
  118. package/src/components/SourcePageCard.tsx +148 -0
  119. package/src/components/Toast.tsx +131 -0
  120. package/src/components/TouchableScale.tsx +91 -0
  121. package/src/components/TreeNode.tsx +186 -0
  122. package/src/console.ts +24 -0
  123. package/src/constants/index.ts +38 -0
  124. package/src/constants/version.ts +3 -0
  125. package/src/crash.ts +32 -0
  126. package/src/customHooks/analyticsLogger.ts +336 -0
  127. package/src/customHooks/bundleAnalyzer.ts +1256 -0
  128. package/src/customHooks/consoleLogger.ts +497 -0
  129. package/src/customHooks/crashHandler.ts +944 -0
  130. package/src/customHooks/logFilters.ts +32 -0
  131. package/src/customHooks/networkLogger.ts +419 -0
  132. package/src/customHooks/performanceTracker.ts +1014 -0
  133. package/src/customHooks/reduxLogger.ts +406 -0
  134. package/src/customHooks/storageInspector.ts +509 -0
  135. package/src/customHooks/useAccordion.tsx +60 -0
  136. package/src/decorators/index.ts +184 -0
  137. package/src/helpers/gaAnalyticsRegistry.ts +204 -0
  138. package/src/helpers/index.ts +860 -0
  139. package/src/helpers/memoryManager.ts +138 -0
  140. package/src/helpers/searchQueryParser.ts +283 -0
  141. package/src/helpers/settingsStore.ts +171 -0
  142. package/src/helpers/telemetry.ts +505 -0
  143. package/src/helpers/toast.ts +17 -0
  144. package/src/i18n/index.ts +69 -0
  145. package/src/i18n/locales/en.json +1058 -0
  146. package/src/index.tsx +2356 -0
  147. package/src/native/NativeInspector.ts +397 -0
  148. package/src/native/NativeNetworkInspector.ts +24 -0
  149. package/src/network.ts +22 -0
  150. package/src/performance.ts +38 -0
  151. package/src/redux.ts +23 -0
  152. package/src/storage.ts +18 -0
  153. package/src/styles/AppColors.ts +408 -0
  154. package/src/styles/AppFonts.ts +8 -0
  155. package/src/styles/common.ts +209 -0
  156. package/src/styles/index.ts +1570 -0
  157. package/src/types/enums.ts +199 -0
  158. package/src/types/index.ts +34 -0
  159. package/src/types/interfaces.ts +515 -0
@@ -0,0 +1,199 @@
1
+ // ─── Enums & Constants ─────────────────────────────────────────────────────────
2
+ // Universal TypeScript Enum Objects and Type Aliases.
3
+ // Allows both enum-style access (e.g. ActiveTab.Apis) and string literals ('apis').
4
+
5
+ export const ActiveTab = {
6
+ Apis: 'apis',
7
+ Analytics: 'analytics',
8
+ Logs: 'logs',
9
+ Redux: 'redux',
10
+ Bundle: 'bundle',
11
+ Performance: 'performance',
12
+ Crash: 'crash',
13
+ Device: 'device',
14
+ Storage: 'storage',
15
+ } as const;
16
+ export type ActiveTab = (typeof ActiveTab)[keyof typeof ActiveTab];
17
+
18
+ export const Method = {
19
+ All: 'ALL',
20
+ Get: 'GET',
21
+ Post: 'POST',
22
+ Put: 'PUT',
23
+ Patch: 'PATCH',
24
+ Delete: 'DELETE',
25
+ } as const;
26
+ export type Method = (typeof Method)[keyof typeof Method];
27
+
28
+ export const StatusFilter = {
29
+ All: 'ALL',
30
+ TwoXx: '2xx',
31
+ ThreeXx: '3xx',
32
+ FourXx: '4xx',
33
+ FiveXx: '5xx',
34
+ Failed: 'Failed',
35
+ } as const;
36
+ export type StatusFilter = (typeof StatusFilter)[keyof typeof StatusFilter] | string;
37
+
38
+ export const SortOrder = {
39
+ Newest: 'newest',
40
+ Oldest: 'oldest',
41
+ } as const;
42
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
43
+
44
+ export const LocalFilter = {
45
+ Success: 'success',
46
+ Failed: 'failed',
47
+ Loading: 'loading',
48
+ } as const;
49
+ export type LocalFilter = (typeof LocalFilter)[keyof typeof LocalFilter];
50
+
51
+ export const ModalAnimationType = {
52
+ Slide: 'slide',
53
+ Fade: 'fade',
54
+ None: 'none',
55
+ } as const;
56
+ export type ModalAnimationType =
57
+ (typeof ModalAnimationType)[keyof typeof ModalAnimationType];
58
+
59
+ export const SettingsPage = {
60
+ Main: 'main',
61
+ Apis: 'apis',
62
+ Logs: 'logs',
63
+ Analytics: 'analytics',
64
+ Redux: 'redux',
65
+ Bundle: 'bundle',
66
+ Performance: 'performance',
67
+ Crash: 'crash',
68
+ Device: 'device',
69
+ Storage: 'storage',
70
+ } as const;
71
+ export type SettingsPage =
72
+ | (typeof SettingsPage)[keyof typeof SettingsPage]
73
+ | null;
74
+
75
+ export const SettingsSubTab = {
76
+ Module: 'module',
77
+ Ui: 'ui',
78
+ Limits: 'limits',
79
+ } as const;
80
+ export type SettingsSubTab =
81
+ (typeof SettingsSubTab)[keyof typeof SettingsSubTab];
82
+
83
+ export const LogFilter = {
84
+ All: 'all',
85
+ Info: 'info',
86
+ Warn: 'warn',
87
+ Error: 'error',
88
+ UserLog: 'user-log',
89
+ Analytics: 'analytics',
90
+ } as const;
91
+ export type LogFilter = (typeof LogFilter)[keyof typeof LogFilter];
92
+
93
+ export const ConsoleLogType = {
94
+ Info: 'info',
95
+ Warn: 'warn',
96
+ Error: 'error',
97
+ } as const;
98
+ export type ConsoleLogType =
99
+ (typeof ConsoleLogType)[keyof typeof ConsoleLogType];
100
+
101
+ export const AnalyticsEventSource = {
102
+ Firebase: 'firebase',
103
+ Manual: 'manual',
104
+ } as const;
105
+ export type AnalyticsEventSource =
106
+ (typeof AnalyticsEventSource)[keyof typeof AnalyticsEventSource];
107
+
108
+ export const GAEventCategory = {
109
+ PageView: 'page_view',
110
+ Ecommerce: 'ecommerce',
111
+ System: 'system',
112
+ Custom: 'custom',
113
+ } as const;
114
+ export type GAEventCategory =
115
+ (typeof GAEventCategory)[keyof typeof GAEventCategory];
116
+
117
+ export const StackFrameType = {
118
+ App: 'app',
119
+ Dependency: 'dependency',
120
+ Runtime: 'runtime',
121
+ Native: 'native',
122
+ } as const;
123
+ export type StackFrameType =
124
+ (typeof StackFrameType)[keyof typeof StackFrameType];
125
+
126
+ export const DiffResultType = {
127
+ Added: 'added',
128
+ Removed: 'removed',
129
+ Changed: 'changed',
130
+ } as const;
131
+ export type DiffResultType =
132
+ (typeof DiffResultType)[keyof typeof DiffResultType];
133
+
134
+ export const BundleSubTab = {
135
+ Overview: 'overview',
136
+ Production: 'production',
137
+ Files: 'files',
138
+ Packages: 'packages',
139
+ Media: 'media',
140
+ Optimizer: 'optimizer',
141
+ } as const;
142
+ export type BundleSubTab = (typeof BundleSubTab)[keyof typeof BundleSubTab];
143
+
144
+ export const PerformanceSubTab = {
145
+ Overview: 'overview',
146
+ Renders: 'renders',
147
+ Interactions: 'interactions',
148
+ Memory: 'memory',
149
+ } as const;
150
+ export type PerformanceSubTab =
151
+ (typeof PerformanceSubTab)[keyof typeof PerformanceSubTab];
152
+
153
+ export const CrashType = {
154
+ Native: 'native',
155
+ Js: 'js',
156
+ Promise: 'promise',
157
+ Render: 'render',
158
+ Custom: 'custom',
159
+ } as const;
160
+ export type CrashType = (typeof CrashType)[keyof typeof CrashType];
161
+
162
+ export const CrashExportFormat = {
163
+ Text: 'text',
164
+ Markdown: 'markdown',
165
+ Json: 'json',
166
+ } as const;
167
+ export type CrashExportFormat =
168
+ (typeof CrashExportFormat)[keyof typeof CrashExportFormat];
169
+
170
+ export const CrashDetailSubTab = {
171
+ Stack: 'stack',
172
+ Diagnostics: 'diagnostics',
173
+ Breadcrumbs: 'breadcrumbs',
174
+ Raw: 'raw',
175
+ } as const;
176
+ export type CrashDetailSubTab =
177
+ (typeof CrashDetailSubTab)[keyof typeof CrashDetailSubTab];
178
+
179
+ export const CrashFilterType = {
180
+ All: 'all',
181
+ Fatal: 'fatal',
182
+ Js: 'js',
183
+ Promise: 'promise',
184
+ Render: 'render',
185
+ Native: 'native',
186
+ } as const;
187
+ export type CrashFilterType =
188
+ (typeof CrashFilterType)[keyof typeof CrashFilterType];
189
+
190
+ export const BreadcrumbType = {
191
+ Navigation: 'navigation',
192
+ Network: 'network',
193
+ Redux: 'redux',
194
+ Console: 'console',
195
+ User: 'user',
196
+ System: 'system',
197
+ } as const;
198
+ export type BreadcrumbType =
199
+ (typeof BreadcrumbType)[keyof typeof BreadcrumbType];
@@ -0,0 +1,34 @@
1
+ // All interfaces live in ./interfaces (re-exported here for convenience).
2
+ import type {NetworkLog} from './interfaces';
3
+ import type {LocalFilter} from './enums';
4
+ export * from './interfaces';
5
+ export * from './enums';
6
+
7
+ // ─── Data type aliases ────────────────────────────────────────────────────────
8
+
9
+ export type GroupedListItem =
10
+ | {
11
+ type: 'header';
12
+ id: string;
13
+ pageName: string;
14
+ color: string;
15
+ stats: {success: number; failed: number; loading: number};
16
+ timestamp: number;
17
+ activeFilters: Set<LocalFilter>;
18
+ isCollapsed: boolean;
19
+ isFirst: boolean;
20
+ }
21
+ | {
22
+ type: 'log';
23
+ id: number;
24
+ log: NetworkLog;
25
+ isLast: boolean;
26
+ color: string;
27
+ };
28
+
29
+ export type DiffResult = {
30
+ type: 'added' | 'removed' | 'changed';
31
+ path: string;
32
+ oldVal?: any;
33
+ newVal?: any;
34
+ };