mirror of
https://github.com/facebook/react.git
synced 2026-02-26 18:58:05 +00:00
The old version of prettier we were using didn't support the Flow syntax to access properties in a type using `SomeType['prop']`. This updates `prettier` and `rollup-plugin-prettier` to the latest versions. I added the prettier config `arrowParens: "avoid"` to reduce the diff size as the default has changed in Prettier 2.0. The largest amount of changes comes from function expressions now having a space. This doesn't have an option to preserve the old behavior, so we have to update this.
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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 {useCallback} from 'react';
|
|
|
|
import styles from './Toggle.css';
|
|
import Tooltip from './Components/reach-ui/tooltip';
|
|
|
|
type Props = {
|
|
children: React$Node,
|
|
className?: string,
|
|
isChecked: boolean,
|
|
isDisabled?: boolean,
|
|
onChange: (isChecked: boolean) => void,
|
|
testName?: ?string,
|
|
title?: string,
|
|
...
|
|
};
|
|
|
|
export default function Toggle({
|
|
children,
|
|
className = '',
|
|
isDisabled = false,
|
|
isChecked,
|
|
onChange,
|
|
testName,
|
|
title,
|
|
}: Props): React.Node {
|
|
let defaultClassName;
|
|
if (isDisabled) {
|
|
defaultClassName = styles.ToggleDisabled;
|
|
} else if (isChecked) {
|
|
defaultClassName = styles.ToggleOn;
|
|
} else {
|
|
defaultClassName = styles.ToggleOff;
|
|
}
|
|
|
|
const handleClick = useCallback(
|
|
() => onChange(!isChecked),
|
|
[isChecked, onChange],
|
|
);
|
|
|
|
let toggle = (
|
|
<button
|
|
className={`${defaultClassName} ${className}`}
|
|
data-testname={testName}
|
|
disabled={isDisabled}
|
|
onClick={handleClick}>
|
|
<span className={styles.ToggleContent} tabIndex={-1}>
|
|
{children}
|
|
</span>
|
|
</button>
|
|
);
|
|
|
|
if (title) {
|
|
toggle = <Tooltip label={title}>{toggle}</Tooltip>;
|
|
}
|
|
|
|
return toggle;
|
|
}
|