123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @flow strict-local
- * @format
- */
- 'use strict';
- import LogBoxInspectorCodeFrame from './LogBoxInspectorCodeFrame';
- import * as React from 'react';
- import ScrollView from '../../Components/ScrollView/ScrollView';
- import StyleSheet from '../../StyleSheet/StyleSheet';
- import View from '../../Components/View/View';
- import * as LogBoxData from '../Data/LogBoxData';
- import Keyboard from '../../Components/Keyboard/Keyboard';
- import LogBoxInspectorFooter from './LogBoxInspectorFooter';
- import LogBoxInspectorMessageHeader from './LogBoxInspectorMessageHeader';
- import LogBoxInspectorReactFrames from './LogBoxInspectorReactFrames';
- import LogBoxInspectorStackFrames from './LogBoxInspectorStackFrames';
- import LogBoxInspectorHeader from './LogBoxInspectorHeader';
- import * as LogBoxStyle from './LogBoxStyle';
- import LogBoxLog, {type LogLevel} from '../Data/LogBoxLog';
- type Props = $ReadOnly<{|
- onDismiss: () => void,
- onChangeSelectedIndex: (index: number) => void,
- onMinimize: () => void,
- logs: $ReadOnlyArray<LogBoxLog>,
- selectedIndex: number,
- fatalType?: ?LogLevel,
- |}>;
- function LogBoxInspector(props: Props): React.Node {
- const {logs, selectedIndex} = props;
- let log = logs[selectedIndex];
- React.useEffect(() => {
- if (log) {
- LogBoxData.symbolicateLogNow(log);
- }
- }, [log]);
- React.useEffect(() => {
- // Optimistically symbolicate the last and next logs.
- if (logs.length > 1) {
- const selected = selectedIndex;
- const lastIndex = logs.length - 1;
- const prevIndex = selected - 1 < 0 ? lastIndex : selected - 1;
- const nextIndex = selected + 1 > lastIndex ? 0 : selected + 1;
- LogBoxData.symbolicateLogLazy(logs[prevIndex]);
- LogBoxData.symbolicateLogLazy(logs[nextIndex]);
- }
- }, [logs, selectedIndex]);
- React.useEffect(() => {
- Keyboard.dismiss();
- }, []);
- function _handleRetry() {
- LogBoxData.retrySymbolicateLogNow(log);
- }
- if (log == null) {
- return null;
- }
- return (
- <View style={styles.root}>
- <LogBoxInspectorHeader
- onSelectIndex={props.onChangeSelectedIndex}
- selectedIndex={selectedIndex}
- total={logs.length}
- level={log.level}
- />
- <LogBoxInspectorBody log={log} onRetry={_handleRetry} />
- <LogBoxInspectorFooter
- onDismiss={props.onDismiss}
- onMinimize={props.onMinimize}
- level={log.level}
- />
- </View>
- );
- }
- const headerTitleMap = {
- warn: 'Warning',
- error: 'Error',
- fatal: 'Exception',
- syntax: 'Syntax Error',
- component: 'Component Exception',
- };
- function LogBoxInspectorBody(props) {
- const [collapsed, setCollapsed] = React.useState(true);
- React.useEffect(() => {
- setCollapsed(true);
- }, [props.log]);
- const headerTitle =
- props.log.type ??
- headerTitleMap[props.log.isComponentError ? 'component' : props.log.level];
- if (collapsed) {
- return (
- <>
- <LogBoxInspectorMessageHeader
- collapsed={collapsed}
- onPress={() => setCollapsed(!collapsed)}
- message={props.log.message}
- level={props.log.level}
- title={headerTitle}
- />
- <ScrollView style={styles.scrollBody}>
- <LogBoxInspectorCodeFrame codeFrame={props.log.codeFrame} />
- <LogBoxInspectorReactFrames log={props.log} />
- <LogBoxInspectorStackFrames log={props.log} onRetry={props.onRetry} />
- </ScrollView>
- </>
- );
- }
- return (
- <ScrollView style={styles.scrollBody}>
- <LogBoxInspectorMessageHeader
- collapsed={collapsed}
- onPress={() => setCollapsed(!collapsed)}
- message={props.log.message}
- level={props.log.level}
- title={headerTitle}
- />
- <LogBoxInspectorCodeFrame codeFrame={props.log.codeFrame} />
- <LogBoxInspectorReactFrames log={props.log} />
- <LogBoxInspectorStackFrames log={props.log} onRetry={props.onRetry} />
- </ScrollView>
- );
- }
- const styles = StyleSheet.create({
- root: {
- flex: 1,
- backgroundColor: LogBoxStyle.getTextColor(),
- },
- scrollBody: {
- backgroundColor: LogBoxStyle.getBackgroundColor(0.9),
- flex: 1,
- },
- });
- export default LogBoxInspector;
|