/** * Copyright (c) 650 Industries. * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import { GestureResponderEvent, StyleSheet, Text, View } from 'react-native'; import { StackFrame } from 'stacktrace-parser'; import { LogBoxButton } from '../UI/LogBoxButton'; import * as LogBoxStyle from '../UI/LogBoxStyle'; import { CODE_FONT } from '../UI/constants'; import { getStackFormattedLocation } from '../formatProjectFilePath'; declare const process: any; type Props = { frame: StackFrame & { collapse?: boolean }; onPress?: (event: GestureResponderEvent) => void; }; export function LogBoxInspectorStackFrame(props: Props) { const { frame, onPress } = props; const location = getStackFormattedLocation(process.env.EXPO_PROJECT_ROOT, frame); return ( {frame.methodName} {location} ); } const styles = StyleSheet.create({ frameContainer: { flexDirection: 'row', paddingHorizontal: 15, }, frame: { flex: 1, paddingVertical: 4, paddingHorizontal: 10, borderRadius: 5, }, lineLocation: { flexDirection: 'row', }, name: { color: LogBoxStyle.getTextColor(1), fontSize: 14, includeFontPadding: false, lineHeight: 18, fontWeight: '400', fontFamily: CODE_FONT, }, location: { color: LogBoxStyle.getTextColor(0.8), fontSize: 12, fontWeight: '300', includeFontPadding: false, lineHeight: 16, paddingLeft: 10, }, dim: { color: LogBoxStyle.getTextColor(0.4), fontWeight: '300', }, line: { color: LogBoxStyle.getTextColor(0.8), fontSize: 12, fontWeight: '300', includeFontPadding: false, lineHeight: 16, }, });