react-native-inapp-inspector 2.2.2 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/package.json +2 -1
- package/src/analytics.ts +35 -0
- package/src/bundle.ts +25 -0
- package/src/components/AnalyticsDetail.tsx +865 -0
- package/src/components/AnalyticsEventCard.tsx +441 -0
- package/src/components/AnalyticsGraph.tsx +583 -0
- package/src/components/AnimatedEntrance.tsx +64 -0
- package/src/components/AppHeaderLogo.tsx +109 -0
- package/src/components/BrandCircleIcon.tsx +144 -0
- package/src/components/BrandSquareIcon.tsx +144 -0
- package/src/components/CodeSnippet.tsx +725 -0
- package/src/components/ConsoleLogCard.tsx +628 -0
- package/src/components/CopyButton.tsx +87 -0
- package/src/components/DiffViewer.tsx +82 -0
- package/src/components/DomainHeader.tsx +237 -0
- package/src/components/EmptyState.tsx +73 -0
- package/src/components/EndOfListFooter.tsx +100 -0
- package/src/components/ErrorBoundary.tsx +688 -0
- package/src/components/HeadersSection.tsx +192 -0
- package/src/components/HighlightText.tsx +100 -0
- package/src/components/Inspector/AnalyticsFilterModal.tsx +1250 -0
- package/src/components/Inspector/AnalyticsTab.tsx +1336 -0
- package/src/components/Inspector/BundleTab.tsx +4731 -0
- package/src/components/Inspector/ConsoleTab.tsx +702 -0
- package/src/components/Inspector/CrashDetail.tsx +941 -0
- package/src/components/Inspector/CrashFilterModal.tsx +721 -0
- package/src/components/Inspector/CrashTab.tsx +871 -0
- package/src/components/Inspector/FabLauncher.tsx +80 -0
- package/src/components/Inspector/InspectorContext.tsx +28 -0
- package/src/components/Inspector/InspectorHeader.tsx +973 -0
- package/src/components/Inspector/LogDetail.tsx +1427 -0
- package/src/components/Inspector/MainScreen.tsx +258 -0
- package/src/components/Inspector/NavigationTracker.tsx +13 -0
- package/src/components/Inspector/NetworkDetail.tsx +794 -0
- package/src/components/Inspector/NetworkTab.tsx +1095 -0
- package/src/components/Inspector/NpmUpdateToast.tsx +392 -0
- package/src/components/Inspector/PerformanceTab.tsx +1894 -0
- package/src/components/Inspector/ReduxDetail.tsx +1651 -0
- package/src/components/Inspector/ReduxTab.tsx +954 -0
- package/src/components/Inspector/SettingsPanel.tsx +3181 -0
- package/src/components/Inspector/TabBar.tsx +187 -0
- package/src/components/Inspector/TelemetryConsentModal.tsx +392 -0
- package/src/components/Inspector/UpdateAvailableModal.tsx +545 -0
- package/src/components/JsonViewer.tsx +486 -0
- package/src/components/LogCard.tsx +491 -0
- package/src/components/LogSyntaxHighlighter.tsx +178 -0
- package/src/components/MetaAccordion.tsx +340 -0
- package/src/components/MiniBarChart.tsx +42 -0
- package/src/components/MiniLineChart.tsx +33 -0
- package/src/components/NetworkIcons.tsx +2118 -0
- package/src/components/SectionHeader.tsx +113 -0
- package/src/components/SegmentedTabs.tsx +83 -0
- package/src/components/Slider.tsx +300 -0
- package/src/components/SourcePageCard.tsx +148 -0
- package/src/components/Toast.tsx +131 -0
- package/src/components/TouchableScale.tsx +91 -0
- package/src/components/TreeNode.tsx +186 -0
- package/src/console.ts +24 -0
- package/src/constants/index.ts +38 -0
- package/src/constants/version.ts +3 -0
- package/src/crash.ts +32 -0
- package/src/customHooks/analyticsLogger.ts +336 -0
- package/src/customHooks/bundleAnalyzer.ts +1231 -0
- package/src/customHooks/consoleLogger.ts +497 -0
- package/src/customHooks/crashHandler.ts +944 -0
- package/src/customHooks/logFilters.ts +32 -0
- package/src/customHooks/networkLogger.ts +419 -0
- package/src/customHooks/performanceTracker.ts +1014 -0
- package/src/customHooks/reduxLogger.ts +406 -0
- package/src/customHooks/useAccordion.tsx +60 -0
- package/src/decorators/index.ts +184 -0
- package/src/helpers/gaAnalyticsRegistry.ts +204 -0
- package/src/helpers/index.ts +860 -0
- package/src/helpers/memoryManager.ts +138 -0
- package/src/helpers/searchQueryParser.ts +283 -0
- package/src/helpers/settingsStore.ts +171 -0
- package/src/helpers/telemetry.ts +505 -0
- package/src/helpers/toast.ts +17 -0
- package/src/i18n/index.ts +69 -0
- package/src/i18n/locales/en.json +1052 -0
- package/src/index.tsx +2336 -0
- package/src/native/NativeInspector.ts +397 -0
- package/src/native/NativeNetworkInspector.ts +24 -0
- package/src/network.ts +22 -0
- package/src/performance.ts +38 -0
- package/src/redux.ts +23 -0
- package/src/styles/AppColors.ts +408 -0
- package/src/styles/AppFonts.ts +8 -0
- package/src/styles/common.ts +209 -0
- package/src/styles/index.ts +1570 -0
- package/src/types/enums.ts +194 -0
- package/src/types/index.ts +34 -0
- package/src/types/interfaces.ts +515 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
import React, {useState} from 'react';
|
|
2
|
+
import {useTranslation} from '../i18n';
|
|
3
|
+
import {View, Pressable, Text, Animated} from 'react-native';
|
|
4
|
+
|
|
5
|
+
// Constants
|
|
6
|
+
import {DURATION_FAST_MS, DURATION_SLOW_MS} from '../constants';
|
|
7
|
+
|
|
8
|
+
// Custom Hooks
|
|
9
|
+
import useAccordion from '../customHooks/useAccordion';
|
|
10
|
+
|
|
11
|
+
// Helpers
|
|
12
|
+
import {getDurationColor, handleOpenExternalLink} from '../helpers';
|
|
13
|
+
|
|
14
|
+
// Types
|
|
15
|
+
import {MetaAccordionProps} from '../types';
|
|
16
|
+
|
|
17
|
+
// Assets
|
|
18
|
+
import {
|
|
19
|
+
ChevronIcon,
|
|
20
|
+
CalendarIcon,
|
|
21
|
+
StatusIcon,
|
|
22
|
+
ClockIcon,
|
|
23
|
+
SizeIcon,
|
|
24
|
+
TerminalIcon,
|
|
25
|
+
GlobeIcon,
|
|
26
|
+
} from './NetworkIcons';
|
|
27
|
+
|
|
28
|
+
// Components
|
|
29
|
+
import TouchableScale from './TouchableScale';
|
|
30
|
+
|
|
31
|
+
// Stylesheet
|
|
32
|
+
import {AppColors} from '../styles/AppColors';
|
|
33
|
+
import {AppFonts} from '../styles/AppFonts';
|
|
34
|
+
import styles from '../styles';
|
|
35
|
+
|
|
36
|
+
const MetaAccordion = ({
|
|
37
|
+
status,
|
|
38
|
+
statusColor,
|
|
39
|
+
duration,
|
|
40
|
+
size,
|
|
41
|
+
triggeredAt,
|
|
42
|
+
method,
|
|
43
|
+
contentType,
|
|
44
|
+
url,
|
|
45
|
+
}: MetaAccordionProps) => {
|
|
46
|
+
const {t} = useTranslation();
|
|
47
|
+
const [urlExpanded, setUrlExpanded] = useState(false);
|
|
48
|
+
const {toggleOpen, chevronStyle, bodyStyle} = useAccordion(true, 800, 390);
|
|
49
|
+
const isFailed = status === 0 || status == null;
|
|
50
|
+
|
|
51
|
+
const renderFormattedUrl = (rawUrl: string) => {
|
|
52
|
+
if (!rawUrl) return '—';
|
|
53
|
+
try {
|
|
54
|
+
const doubleSlashIndex = rawUrl.indexOf('//');
|
|
55
|
+
let temp = rawUrl;
|
|
56
|
+
let protocol = '';
|
|
57
|
+
if (doubleSlashIndex !== -1) {
|
|
58
|
+
protocol = rawUrl.substring(0, doubleSlashIndex + 2);
|
|
59
|
+
temp = rawUrl.substring(doubleSlashIndex + 2);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const slashIndex = temp.indexOf('/');
|
|
63
|
+
let host = temp;
|
|
64
|
+
let pathAndSearch = '';
|
|
65
|
+
if (slashIndex !== -1) {
|
|
66
|
+
host = temp.substring(0, slashIndex);
|
|
67
|
+
pathAndSearch = temp.substring(slashIndex);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
const queryIndex = pathAndSearch.indexOf('?');
|
|
71
|
+
let pathname = pathAndSearch;
|
|
72
|
+
let search = '';
|
|
73
|
+
if (queryIndex !== -1) {
|
|
74
|
+
pathname = pathAndSearch.substring(0, queryIndex);
|
|
75
|
+
search = pathAndSearch.substring(queryIndex);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return (
|
|
79
|
+
<Text style={{lineHeight: 16}}>
|
|
80
|
+
{protocol ? (
|
|
81
|
+
<Text style={{color: AppColors.slate400, fontFamily: AppFonts.interRegular}}>{protocol}</Text>
|
|
82
|
+
) : null}
|
|
83
|
+
<Text style={{color: AppColors.purple, fontFamily: AppFonts.interBold}}>{host}</Text>
|
|
84
|
+
<Text style={{color: AppColors.slate700, fontFamily: AppFonts.interMedium}}>{pathname}</Text>
|
|
85
|
+
{search ? (
|
|
86
|
+
<Text style={{color: AppColors.teal600, fontFamily: AppFonts.interRegular}}>{search}</Text>
|
|
87
|
+
) : null}
|
|
88
|
+
</Text>
|
|
89
|
+
);
|
|
90
|
+
} catch {
|
|
91
|
+
return rawUrl;
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
return (
|
|
96
|
+
<View style={styles.metaContainer}>
|
|
97
|
+
<Pressable onPress={toggleOpen} hitSlop={12}>
|
|
98
|
+
<View style={styles.metaHeader}>
|
|
99
|
+
<Text style={styles.metaTitle}>Metadata</Text>
|
|
100
|
+
<Animated.View style={chevronStyle}>
|
|
101
|
+
<ChevronIcon color={AppColors.grayTextWeak} size={14} />
|
|
102
|
+
</Animated.View>
|
|
103
|
+
</View>
|
|
104
|
+
</Pressable>
|
|
105
|
+
|
|
106
|
+
<Animated.View style={bodyStyle}>
|
|
107
|
+
<View style={styles.metaBody}>
|
|
108
|
+
<View style={styles.metaRow}>
|
|
109
|
+
<View style={styles.metaLabelRow}>
|
|
110
|
+
<CalendarIcon color={AppColors.grayTextWeak} size={14} />
|
|
111
|
+
<Text style={styles.metaLabel}>{t('network.triggeredAt')}</Text>
|
|
112
|
+
</View>
|
|
113
|
+
<Text
|
|
114
|
+
style={[
|
|
115
|
+
styles.metaValue,
|
|
116
|
+
{color: AppColors.purple, fontSize: 12},
|
|
117
|
+
]}>
|
|
118
|
+
{triggeredAt}
|
|
119
|
+
</Text>
|
|
120
|
+
</View>
|
|
121
|
+
<View style={styles.metaDivider} />
|
|
122
|
+
|
|
123
|
+
<View style={styles.metaRow}>
|
|
124
|
+
<View style={styles.metaLabelRow}>
|
|
125
|
+
<TerminalIcon color={AppColors.grayTextWeak} size={14} />
|
|
126
|
+
<Text style={styles.metaLabel}>{t('network.methodHeader')}</Text>
|
|
127
|
+
</View>
|
|
128
|
+
<View
|
|
129
|
+
style={[
|
|
130
|
+
styles.statusChip,
|
|
131
|
+
{
|
|
132
|
+
borderColor: `${AppColors.brandPurple}40`,
|
|
133
|
+
backgroundColor: `${AppColors.brandPurple}14`,
|
|
134
|
+
},
|
|
135
|
+
]}>
|
|
136
|
+
<Text
|
|
137
|
+
style={[
|
|
138
|
+
styles.statusText,
|
|
139
|
+
{color: AppColors.purple, fontFamily: AppFonts.interBold},
|
|
140
|
+
]}>
|
|
141
|
+
{method || 'GET'}
|
|
142
|
+
</Text>
|
|
143
|
+
</View>
|
|
144
|
+
</View>
|
|
145
|
+
<View style={styles.metaDivider} />
|
|
146
|
+
|
|
147
|
+
<View style={styles.metaRow}>
|
|
148
|
+
<View style={styles.metaLabelRow}>
|
|
149
|
+
<StatusIcon color={AppColors.grayTextWeak} />
|
|
150
|
+
<Text style={styles.metaLabel}>{t('network.statusHeader')}</Text>
|
|
151
|
+
</View>
|
|
152
|
+
<View
|
|
153
|
+
style={[
|
|
154
|
+
styles.statusChip,
|
|
155
|
+
{
|
|
156
|
+
borderColor: isFailed
|
|
157
|
+
? `${AppColors.errorColor}40`
|
|
158
|
+
: `${statusColor}40`,
|
|
159
|
+
backgroundColor: isFailed
|
|
160
|
+
? `${AppColors.errorColor}15`
|
|
161
|
+
: `${statusColor}15`,
|
|
162
|
+
},
|
|
163
|
+
]}>
|
|
164
|
+
<Text
|
|
165
|
+
style={[
|
|
166
|
+
styles.statusText,
|
|
167
|
+
{color: isFailed ? AppColors.errorColor : statusColor},
|
|
168
|
+
]}>
|
|
169
|
+
{isFailed ? t('network.failedNetworkError') : String(status)}
|
|
170
|
+
</Text>
|
|
171
|
+
</View>
|
|
172
|
+
</View>
|
|
173
|
+
<View style={styles.metaDivider} />
|
|
174
|
+
|
|
175
|
+
<View style={styles.metaRow}>
|
|
176
|
+
<View style={styles.metaLabelRow}>
|
|
177
|
+
<GlobeIcon color={AppColors.grayTextWeak} size={14} />
|
|
178
|
+
<Text style={styles.metaLabel}>{t('network.contentType')}</Text>
|
|
179
|
+
</View>
|
|
180
|
+
<Text style={styles.metaValue}>
|
|
181
|
+
{contentType || 'application/json'}
|
|
182
|
+
</Text>
|
|
183
|
+
</View>
|
|
184
|
+
<View style={styles.metaDivider} />
|
|
185
|
+
|
|
186
|
+
<View style={styles.metaRow}>
|
|
187
|
+
<View style={styles.metaLabelRow}>
|
|
188
|
+
<ClockIcon color={AppColors.grayTextWeak} size={14} />
|
|
189
|
+
<Text style={styles.metaLabel}>{t('network.durationHeader')}</Text>
|
|
190
|
+
</View>
|
|
191
|
+
<View style={styles.metaValueRow}>
|
|
192
|
+
{duration != null && !isFailed && (
|
|
193
|
+
<View
|
|
194
|
+
style={[
|
|
195
|
+
styles.perfBadge,
|
|
196
|
+
{
|
|
197
|
+
backgroundColor: `${getDurationColor(duration)}15`,
|
|
198
|
+
borderColor: `${getDurationColor(duration)}40`,
|
|
199
|
+
},
|
|
200
|
+
]}>
|
|
201
|
+
<Text
|
|
202
|
+
style={[
|
|
203
|
+
styles.perfBadgeText,
|
|
204
|
+
{color: getDurationColor(duration)},
|
|
205
|
+
]}>
|
|
206
|
+
{duration < DURATION_FAST_MS
|
|
207
|
+
? t('network.perf.fast')
|
|
208
|
+
: duration < DURATION_SLOW_MS
|
|
209
|
+
? t('network.perf.moderate')
|
|
210
|
+
: t('network.perf.slow')}
|
|
211
|
+
</Text>
|
|
212
|
+
</View>
|
|
213
|
+
)}
|
|
214
|
+
<Text style={styles.metaValue}>
|
|
215
|
+
{duration != null ? `${duration} ms` : '—'}
|
|
216
|
+
</Text>
|
|
217
|
+
</View>
|
|
218
|
+
</View>
|
|
219
|
+
|
|
220
|
+
{/* Visual Latency Timing Breakdown Waterfall */}
|
|
221
|
+
{duration != null && !isFailed && (
|
|
222
|
+
<View style={{paddingVertical: 8, gap: 6}}>
|
|
223
|
+
<View style={{flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center'}}>
|
|
224
|
+
<Text style={{fontFamily: AppFonts.interBold, fontSize: 11, color: AppColors.primaryBlack}}>
|
|
225
|
+
{t('network.timingWaterfall')}
|
|
226
|
+
</Text>
|
|
227
|
+
<Text style={{fontFamily: AppFonts.interMedium, fontSize: 10.5, color: getDurationColor(duration)}}>
|
|
228
|
+
{duration < DURATION_FAST_MS
|
|
229
|
+
? t('network.perf.fast')
|
|
230
|
+
: duration < DURATION_SLOW_MS
|
|
231
|
+
? t('network.perf.moderate')
|
|
232
|
+
: t('network.perf.slow')}
|
|
233
|
+
</Text>
|
|
234
|
+
</View>
|
|
235
|
+
|
|
236
|
+
<View
|
|
237
|
+
style={{
|
|
238
|
+
height: 6,
|
|
239
|
+
backgroundColor: AppColors.grayBorderSecondary,
|
|
240
|
+
borderRadius: 3,
|
|
241
|
+
overflow: 'hidden',
|
|
242
|
+
}}>
|
|
243
|
+
<View
|
|
244
|
+
style={{
|
|
245
|
+
height: '100%',
|
|
246
|
+
width: `${Math.min(100, Math.max(8, (duration / 1200) * 100))}%`,
|
|
247
|
+
backgroundColor: getDurationColor(duration),
|
|
248
|
+
borderRadius: 3,
|
|
249
|
+
}}
|
|
250
|
+
/>
|
|
251
|
+
</View>
|
|
252
|
+
|
|
253
|
+
<View style={{flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', marginTop: 1}}>
|
|
254
|
+
<Text style={{fontFamily: AppFonts.interRegular, fontSize: 9.5, color: AppColors.grayTextWeak}}>
|
|
255
|
+
0 ms
|
|
256
|
+
</Text>
|
|
257
|
+
<Text style={{fontFamily: AppFonts.interBold, fontSize: 10, color: getDurationColor(duration)}}>
|
|
258
|
+
{duration} ms
|
|
259
|
+
</Text>
|
|
260
|
+
<Text style={{fontFamily: AppFonts.interRegular, fontSize: 9.5, color: AppColors.grayTextWeak}}>
|
|
261
|
+
1,200+ ms
|
|
262
|
+
</Text>
|
|
263
|
+
</View>
|
|
264
|
+
</View>
|
|
265
|
+
)}
|
|
266
|
+
<View style={styles.metaDivider} />
|
|
267
|
+
|
|
268
|
+
<View style={styles.metaRow}>
|
|
269
|
+
<View style={styles.metaLabelRow}>
|
|
270
|
+
<SizeIcon color={AppColors.grayTextWeak} />
|
|
271
|
+
<Text style={styles.metaLabel}>{t('network.sizeHeader')}</Text>
|
|
272
|
+
</View>
|
|
273
|
+
<Text style={styles.metaValue}>{size}</Text>
|
|
274
|
+
</View>
|
|
275
|
+
<View style={styles.metaDivider} />
|
|
276
|
+
|
|
277
|
+
<View style={[styles.metaRow, {alignItems: 'flex-start', flexDirection: 'column', gap: 6}]}>
|
|
278
|
+
<View style={{flexDirection: 'row', justifyContent: 'space-between', width: '100%', alignItems: 'center'}}>
|
|
279
|
+
<View style={styles.metaLabelRow}>
|
|
280
|
+
<GlobeIcon color={AppColors.grayTextWeak} size={14} />
|
|
281
|
+
<Text style={styles.metaLabel}>{t('network.fullUrl')}</Text>
|
|
282
|
+
</View>
|
|
283
|
+
|
|
284
|
+
<View style={{flexDirection: 'row', alignItems: 'center', gap: 10}}>
|
|
285
|
+
{url && url.length > 50 && (
|
|
286
|
+
<TouchableScale onPress={() => setUrlExpanded(prev => !prev)} hitSlop={8}>
|
|
287
|
+
<Text style={{
|
|
288
|
+
fontFamily: AppFonts.interBold,
|
|
289
|
+
fontSize: 10.5,
|
|
290
|
+
color: AppColors.purple,
|
|
291
|
+
}}>
|
|
292
|
+
{urlExpanded ? t('network.showLess') : t('network.showMore')}
|
|
293
|
+
</Text>
|
|
294
|
+
</TouchableScale>
|
|
295
|
+
)}
|
|
296
|
+
|
|
297
|
+
{url && (
|
|
298
|
+
<TouchableScale onPress={() => handleOpenExternalLink(url)} hitSlop={8}>
|
|
299
|
+
<Text style={{
|
|
300
|
+
fontFamily: AppFonts.interBold,
|
|
301
|
+
fontSize: 10.5,
|
|
302
|
+
color: AppColors.purple,
|
|
303
|
+
textDecorationLine: 'underline',
|
|
304
|
+
}}>
|
|
305
|
+
{t('network.open')}
|
|
306
|
+
</Text>
|
|
307
|
+
</TouchableScale>
|
|
308
|
+
)}
|
|
309
|
+
</View>
|
|
310
|
+
</View>
|
|
311
|
+
|
|
312
|
+
<View style={{
|
|
313
|
+
backgroundColor: AppColors.slate50,
|
|
314
|
+
borderRadius: 8,
|
|
315
|
+
padding: 8,
|
|
316
|
+
borderWidth: 1.5,
|
|
317
|
+
borderColor: AppColors.slate200,
|
|
318
|
+
width: '100%',
|
|
319
|
+
marginTop: 2,
|
|
320
|
+
}}>
|
|
321
|
+
<Text
|
|
322
|
+
selectable={true}
|
|
323
|
+
numberOfLines={urlExpanded ? undefined : 2}
|
|
324
|
+
ellipsizeMode="tail"
|
|
325
|
+
style={{
|
|
326
|
+
fontSize: 11,
|
|
327
|
+
textAlign: 'left',
|
|
328
|
+
lineHeight: 16.5,
|
|
329
|
+
}}>
|
|
330
|
+
{renderFormattedUrl(url)}
|
|
331
|
+
</Text>
|
|
332
|
+
</View>
|
|
333
|
+
</View>
|
|
334
|
+
</View>
|
|
335
|
+
</Animated.View>
|
|
336
|
+
</View>
|
|
337
|
+
);
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
export default MetaAccordion;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, {Rect} from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
const MiniBarChart = ({
|
|
5
|
+
data,
|
|
6
|
+
color,
|
|
7
|
+
maxVal,
|
|
8
|
+
}: {
|
|
9
|
+
data: number[];
|
|
10
|
+
color: string;
|
|
11
|
+
maxVal?: number;
|
|
12
|
+
}) => {
|
|
13
|
+
if (!data || data.length === 0) return <Svg width={40} height={16} />;
|
|
14
|
+
const max = maxVal || Math.max(...data, 1);
|
|
15
|
+
const paddedData =
|
|
16
|
+
data.length < 10
|
|
17
|
+
? [...Array(10 - data.length).fill(0), ...data]
|
|
18
|
+
: data.slice(-10);
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<Svg width={40} height={16} viewBox="0 0 40 16">
|
|
22
|
+
{paddedData.map((val, i) => {
|
|
23
|
+
const h = Math.max((val / max) * 16, 2);
|
|
24
|
+
const opacity = val === 0 && maxVal === 1 ? 0.2 : 1;
|
|
25
|
+
return (
|
|
26
|
+
<Rect
|
|
27
|
+
key={i}
|
|
28
|
+
x={i * 4}
|
|
29
|
+
y={16 - h}
|
|
30
|
+
width={2.5}
|
|
31
|
+
height={h}
|
|
32
|
+
fill={color}
|
|
33
|
+
rx={1}
|
|
34
|
+
opacity={opacity}
|
|
35
|
+
/>
|
|
36
|
+
);
|
|
37
|
+
})}
|
|
38
|
+
</Svg>
|
|
39
|
+
);
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export default MiniBarChart;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, {Path} from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
const MiniLineChart = ({data, color}: {data: number[]; color: string}) => {
|
|
5
|
+
if (!data || data.length === 0) return <Svg width={40} height={16} />;
|
|
6
|
+
|
|
7
|
+
const paddedData =
|
|
8
|
+
data.length < 10
|
|
9
|
+
? [...Array(10 - data.length).fill(data[0] || 0), ...data]
|
|
10
|
+
: data.slice(-10);
|
|
11
|
+
const max = Math.max(...paddedData, 1);
|
|
12
|
+
const min = Math.min(...paddedData, 0);
|
|
13
|
+
const range = max - min || 1;
|
|
14
|
+
const dx = 40 / 9;
|
|
15
|
+
const points = paddedData
|
|
16
|
+
.map((d, i) => `${i * dx},${14 - ((d - min) / range) * 12}`)
|
|
17
|
+
.join(' L ');
|
|
18
|
+
|
|
19
|
+
return (
|
|
20
|
+
<Svg width={40} height={16} viewBox="0 0 40 16">
|
|
21
|
+
<Path
|
|
22
|
+
d={`M ${points}`}
|
|
23
|
+
fill="none"
|
|
24
|
+
stroke={color}
|
|
25
|
+
strokeWidth={1.5}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export default MiniLineChart;
|