mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 19:44:13 +00:00
d0219a0301
Summary: Replaces the existing `YellowBox` with a modern one. Here are the notable changes: - Sort warnings by recency (with most recent on top). - Group warnings by format string if present. - Present stack traces similar to RedBox. - Show status of loading source maps. - Support inspecting each occurrence of a warning. - Fixed a bunch of edge cases and race conditions. Reviewed By: TheSavior Differential Revision: D8345180 fbshipit-source-id: b9e10d526b262c3985bbea639ba2ea0e7cad5081
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* 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';
|
|
|
|
const React = require('React');
|
|
const SafeAreaView = require('SafeAreaView');
|
|
const StyleSheet = require('StyleSheet');
|
|
const Text = require('Text');
|
|
const View = require('View');
|
|
const YellowBoxPressable = require('YellowBoxPressable');
|
|
const YellowBoxStyle = require('YellowBoxStyle');
|
|
|
|
type Props = $ReadOnly<{|
|
|
onDismiss: () => void,
|
|
onMinimize: () => void,
|
|
|}>;
|
|
|
|
const YellowBoxInspectorFooter = (props: Props): React.Node => (
|
|
<View style={styles.root}>
|
|
<YellowBoxPressable
|
|
backgroundColor={{
|
|
default: 'transparent',
|
|
pressed: YellowBoxStyle.getHighlightColor(1),
|
|
}}
|
|
onPress={props.onMinimize}
|
|
style={styles.button}>
|
|
<View style={styles.content}>
|
|
<Text style={styles.label}>Minimize</Text>
|
|
</View>
|
|
<SafeAreaView />
|
|
</YellowBoxPressable>
|
|
<YellowBoxPressable
|
|
backgroundColor={{
|
|
default: 'transparent',
|
|
pressed: YellowBoxStyle.getHighlightColor(1),
|
|
}}
|
|
onPress={props.onDismiss}
|
|
style={styles.button}>
|
|
<View style={styles.content}>
|
|
<Text style={styles.label}>Dismiss</Text>
|
|
</View>
|
|
<SafeAreaView />
|
|
</YellowBoxPressable>
|
|
</View>
|
|
);
|
|
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
backgroundColor: YellowBoxStyle.getBackgroundColor(0.95),
|
|
flexDirection: 'row',
|
|
},
|
|
button: {
|
|
flex: 1,
|
|
},
|
|
content: {
|
|
alignItems: 'center',
|
|
height: 48,
|
|
justifyContent: 'center',
|
|
},
|
|
label: {
|
|
color: YellowBoxStyle.getTextColor(1),
|
|
fontSize: 14,
|
|
includeFontPadding: false,
|
|
lineHeight: 18,
|
|
},
|
|
});
|
|
|
|
module.exports = YellowBoxInspectorFooter;
|