54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
/**
|
|
* 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
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
import {useContext} from 'react';
|
|
import {SettingsContext} from './SettingsContext';
|
|
|
|
import styles from './SettingsShared.css';
|
|
|
|
export default function DebuggingSettings(_: {||}) {
|
|
const {
|
|
appendComponentStack,
|
|
breakOnConsoleErrors,
|
|
setAppendComponentStack,
|
|
setBreakOnConsoleErrors,
|
|
} = useContext(SettingsContext);
|
|
|
|
return (
|
|
<div className={styles.Settings}>
|
|
<div className={styles.Setting}>
|
|
<label>
|
|
<input
|
|
type="checkbox"
|
|
checked={appendComponentStack}
|
|
onChange={({currentTarget}) =>
|
|
setAppendComponentStack(currentTarget.checked)
|
|
}
|
|
/>{' '}
|
|
Append component stacks to console warnings and errors.
|
|
</label>
|
|
</div>
|
|
|
|
<div className={styles.Setting}>
|
|
<label>
|
|
<input
|
|
type="checkbox"
|
|
checked={breakOnConsoleErrors}
|
|
onChange={({currentTarget}) =>
|
|
setBreakOnConsoleErrors(currentTarget.checked)
|
|
}
|
|
/>{' '}
|
|
Break on warnings
|
|
</label>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|