बस WiredPrairie के उत्तर पर थोड़ा विस्तार करने के लिए, एक छोटा घटक जिसे खोला और बंद किया जा सकता है।
की तरह इस्तेमाल किया जा सकता है:
<Pretty data={this.state.data}/>
export default React.createClass({
style: {
backgroundColor: '#1f4662',
color: '#fff',
fontSize: '12px',
},
headerStyle: {
backgroundColor: '#193549',
padding: '5px 10px',
fontFamily: 'monospace',
color: '#ffc600',
},
preStyle: {
display: 'block',
padding: '10px 30px',
margin: '0',
overflow: 'scroll',
},
getInitialState() {
return {
show: true,
};
},
toggle() {
this.setState({
show: !this.state.show,
});
},
render() {
return (
<div style={this.style}>
<div style={this.headerStyle} onClick={ this.toggle }>
<strong>Pretty Debug</strong>
</div>
{( this.state.show ?
<pre style={this.preStyle}>
{JSON.stringify(this.props.data, null, 2) }
</pre> : false )}
</div>
);
}
});
अपडेट करें
एक और आधुनिक दृष्टिकोण (अब जो createClass बाहर के रास्ते पर है)
import styles from './DebugPrint.css'
import autoBind from 'react-autobind'
import classNames from 'classnames'
import React from 'react'
export default class DebugPrint extends React.PureComponent {
constructor(props) {
super(props)
autoBind(this)
this.state = {
show: false,
}
}
toggle() {
this.setState({
show: !this.state.show,
});
}
render() {
return (
<div style={styles.root}>
<div style={styles.header} onClick={this.toggle}>
<strong>Debug</strong>
</div>
{this.state.show
? (
<pre style={styles.pre}>
{JSON.stringify(this.props.data, null, 2) }
</pre>
)
: null
}
</div>
)
}
}
और आपकी स्टाइल फाइल
.root {backgroundColor: '# 1f4662'; रंग: '# फाफ'; fontSize: '12px'; }
.याडर {बैकग्राउंडर: '# 193549'; गद्दी: '5px 10px'; fontFamily: 'मोनोस्पेस'; रंग: '# ffc600'; }
.pre {प्रदर्शन: 'ब्लॉक'; गद्दी: '10px 30px'; मार्जिन: '0'; अतिप्रवाह: 'स्क्रॉल'; }
JSON.stringify(json, null, "\t")
?