2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2016-08-10 09:46:56 +08:00
|
|
|
import RcSwitch from 'rc-switch';
|
2015-12-06 16:39:01 +08:00
|
|
|
import classNames from 'classnames';
|
2020-03-02 12:09:38 +08:00
|
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
2019-08-13 14:07:17 +08:00
|
|
|
|
2018-08-11 14:57:41 +08:00
|
|
|
import Wave from '../_util/wave';
|
2020-04-26 22:33:36 +08:00
|
|
|
import { ConfigContext } from '../config-provider';
|
2020-01-03 13:38:16 +08:00
|
|
|
import SizeContext from '../config-provider/SizeContext';
|
2020-05-14 15:57:04 +08:00
|
|
|
import devWarning from '../_util/devWarning';
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2019-06-27 12:26:09 +08:00
|
|
|
export type SwitchSize = 'small' | 'default';
|
|
|
|
export type SwitchChangeEventHandler = (checked: boolean, event: MouseEvent) => void;
|
|
|
|
export type SwitchClickEventHandler = SwitchChangeEventHandler;
|
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface SwitchProps {
|
|
|
|
prefixCls?: string;
|
2019-06-27 12:26:09 +08:00
|
|
|
size?: SwitchSize;
|
2016-08-10 09:46:56 +08:00
|
|
|
className?: string;
|
|
|
|
checked?: boolean;
|
|
|
|
defaultChecked?: boolean;
|
2019-06-27 12:26:09 +08:00
|
|
|
onChange?: SwitchChangeEventHandler;
|
2019-07-06 22:16:17 +08:00
|
|
|
onClick?: SwitchClickEventHandler;
|
2016-08-10 09:46:56 +08:00
|
|
|
checkedChildren?: React.ReactNode;
|
|
|
|
unCheckedChildren?: React.ReactNode;
|
2016-10-18 11:55:00 +08:00
|
|
|
disabled?: boolean;
|
2017-12-02 15:57:02 +08:00
|
|
|
loading?: boolean;
|
2018-10-02 04:58:00 +08:00
|
|
|
autoFocus?: boolean;
|
2018-11-24 17:19:39 +08:00
|
|
|
style?: React.CSSProperties;
|
2019-05-03 21:55:18 +08:00
|
|
|
title?: string;
|
2021-05-24 16:24:00 +08:00
|
|
|
tabIndex?: number;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
2020-04-26 22:33:36 +08:00
|
|
|
interface CompoundedComponent
|
|
|
|
extends React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLElement>> {
|
|
|
|
__ANT_SWITCH: boolean;
|
|
|
|
}
|
2019-08-27 18:29:20 +08:00
|
|
|
|
2020-05-28 09:55:23 +08:00
|
|
|
const Switch = React.forwardRef<unknown, SwitchProps>(
|
|
|
|
(
|
|
|
|
{
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
size: customizeSize,
|
|
|
|
loading,
|
|
|
|
className = '',
|
|
|
|
disabled,
|
|
|
|
...props
|
|
|
|
},
|
|
|
|
ref,
|
|
|
|
) => {
|
|
|
|
devWarning(
|
|
|
|
'checked' in props || !('value' in props),
|
|
|
|
'Switch',
|
|
|
|
'`value` is not a valid prop, do you mean `checked`?',
|
|
|
|
);
|
2017-11-19 01:41:40 +08:00
|
|
|
|
2020-05-28 09:55:23 +08:00
|
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
|
|
const size = React.useContext(SizeContext);
|
|
|
|
const prefixCls = getPrefixCls('switch', customizePrefixCls);
|
|
|
|
const loadingIcon = (
|
|
|
|
<div className={`${prefixCls}-handle`}>
|
|
|
|
{loading && <LoadingOutlined className={`${prefixCls}-loading-icon`} />}
|
|
|
|
</div>
|
|
|
|
);
|
2019-08-05 18:38:10 +08:00
|
|
|
|
2020-09-06 13:07:39 +08:00
|
|
|
const classes = classNames(
|
|
|
|
{
|
|
|
|
[`${prefixCls}-small`]: (customizeSize || size) === 'small',
|
|
|
|
[`${prefixCls}-loading`]: loading,
|
|
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
|
|
},
|
|
|
|
className,
|
|
|
|
);
|
2017-11-19 01:41:40 +08:00
|
|
|
|
2020-05-28 09:55:23 +08:00
|
|
|
return (
|
|
|
|
<Wave insertExtraNode>
|
|
|
|
<RcSwitch
|
|
|
|
{...props}
|
|
|
|
prefixCls={prefixCls}
|
|
|
|
className={classes}
|
|
|
|
disabled={disabled || loading}
|
|
|
|
ref={ref}
|
|
|
|
loadingIcon={loadingIcon}
|
|
|
|
/>
|
|
|
|
</Wave>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
) as CompoundedComponent;
|
2020-01-03 13:38:16 +08:00
|
|
|
|
2020-04-26 22:33:36 +08:00
|
|
|
Switch.__ANT_SWITCH = true;
|
2020-05-28 09:55:23 +08:00
|
|
|
Switch.displayName = 'Switch';
|
2018-12-05 19:12:18 +08:00
|
|
|
|
2020-04-26 22:33:36 +08:00
|
|
|
export default Switch;
|