Show monitor when isVisible is true

This commit is contained in:
Patrick Burtchaell 2015-07-19 10:21:53 -05:00
parent 2a103c005a
commit daf029fca2
2 changed files with 49 additions and 38 deletions

View File

@ -17,7 +17,6 @@ export function getDefaultStyle(props) {
opacity: 0.92, opacity: 0.92,
background: 'black', background: 'black',
color: 'white', color: 'white',
padding: '1em',
left: left ? 0 : undefined, left: left ? 0 : undefined,
right: right ? 0 : undefined, right: right ? 0 : undefined,
top: top ? 0 : undefined, top: top ? 0 : undefined,

View File

@ -105,17 +105,26 @@ export default class LogMonitor {
); );
} }
if (this.props.monitorState.isVisible === true) {
return ( return (
<div style={{ <div style={{
fontFamily: 'monospace', fontFamily: 'monospace',
position: 'relative' position: 'relative',
padding: '1rem'
}}> }}>
<div>
<div style={{
paddingBottom: '.5rem'
}}>
<small>Press `ctl+h` to hide.</small>
</div>
<div> <div>
<a onClick={::this.handleReset} <a onClick={::this.handleReset}
style={{ textDecoration: 'underline', cursor: 'hand' }}> style={{ textDecoration: 'underline', cursor: 'hand' }}>
Reset <small>Reset</small>
</a> </a>
</div> </div>
</div>
{elements} {elements}
<div> <div>
{computedStates.length > 1 && {computedStates.length > 1 &&
@ -148,4 +157,7 @@ export default class LogMonitor {
</div> </div>
); );
} }
return false;
}
} }