2023-09-11 17:28:04 +08:00
|
|
|
import * as React from 'react';
|
2020-03-02 12:09:38 +08:00
|
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
2022-06-21 10:24:52 +08:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import RcSwitch from 'rc-switch';
|
2024-04-01 15:49:45 +08:00
|
|
|
import useMergedState from 'rc-util/lib/hooks/useMergedState';
|
2023-09-11 17:28:04 +08:00
|
|
|
|
2022-06-21 10:24:52 +08:00
|
|
|
import Wave from '../_util/wave';
|
2023-05-12 14:53:47 +08:00
|
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
import DisabledContext from '../config-provider/DisabledContext';
|
|
|
|
import useSize from '../config-provider/hooks/useSize';
|
2022-03-16 15:04:47 +08:00
|
|
|
import useStyle from './style';
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2019-06-27 12:26:09 +08:00
|
|
|
export type SwitchSize = 'small' | 'default';
|
2022-07-01 11:55:03 +08:00
|
|
|
export type SwitchChangeEventHandler = (
|
|
|
|
checked: boolean,
|
|
|
|
event: React.MouseEvent<HTMLButtonElement>,
|
|
|
|
) => void;
|
2019-06-27 12:26:09 +08:00
|
|
|
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;
|
2023-01-20 11:03:50 +08:00
|
|
|
rootClassName?: string;
|
2016-08-10 09:46:56 +08:00
|
|
|
checked?: boolean;
|
|
|
|
defaultChecked?: boolean;
|
2023-11-09 13:42:25 +08:00
|
|
|
/**
|
|
|
|
* Alias for `checked`.
|
|
|
|
* @since 5.12.0
|
|
|
|
*/
|
|
|
|
value?: boolean;
|
|
|
|
/**
|
|
|
|
* Alias for `defaultChecked`.
|
|
|
|
* @since 5.12.0
|
|
|
|
*/
|
|
|
|
defaultValue?: 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;
|
2021-09-19 20:23:04 +08:00
|
|
|
id?: string;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
2024-04-09 16:49:47 +08:00
|
|
|
const InternalSwitch = React.forwardRef<HTMLButtonElement, SwitchProps>((props, ref) => {
|
2023-06-30 11:29:39 +08:00
|
|
|
const {
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
size: customizeSize,
|
|
|
|
disabled: customDisabled,
|
|
|
|
loading,
|
|
|
|
className,
|
|
|
|
rootClassName,
|
|
|
|
style,
|
2023-11-09 13:42:25 +08:00
|
|
|
checked: checkedProp,
|
|
|
|
value,
|
|
|
|
defaultChecked: defaultCheckedProp,
|
|
|
|
defaultValue,
|
|
|
|
onChange,
|
2023-06-30 11:29:39 +08:00
|
|
|
...restProps
|
|
|
|
} = props;
|
|
|
|
|
2023-11-09 13:42:25 +08:00
|
|
|
const [checked, setChecked] = useMergedState<boolean>(false, {
|
|
|
|
value: checkedProp ?? value,
|
|
|
|
defaultValue: defaultCheckedProp ?? defaultValue,
|
|
|
|
});
|
2023-06-30 11:29:39 +08:00
|
|
|
|
|
|
|
const { getPrefixCls, direction, switch: SWITCH } = React.useContext(ConfigContext);
|
|
|
|
|
|
|
|
// ===================== Disabled =====================
|
|
|
|
const disabled = React.useContext(DisabledContext);
|
|
|
|
const mergedDisabled = (customDisabled ?? disabled) || loading;
|
|
|
|
|
|
|
|
const prefixCls = getPrefixCls('switch', customizePrefixCls);
|
|
|
|
|
|
|
|
const loadingIcon = (
|
|
|
|
<div className={`${prefixCls}-handle`}>
|
|
|
|
{loading && <LoadingOutlined className={`${prefixCls}-loading-icon`} />}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
// Style
|
2023-12-14 14:58:53 +08:00
|
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
|
2023-06-30 11:29:39 +08:00
|
|
|
|
|
|
|
const mergedSize = useSize(customizeSize);
|
|
|
|
|
|
|
|
const classes = classNames(
|
|
|
|
SWITCH?.className,
|
2020-05-28 09:55:23 +08:00
|
|
|
{
|
2023-06-30 11:29:39 +08:00
|
|
|
[`${prefixCls}-small`]: mergedSize === 'small',
|
|
|
|
[`${prefixCls}-loading`]: loading,
|
|
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
2020-05-28 09:55:23 +08:00
|
|
|
},
|
2023-06-30 11:29:39 +08:00
|
|
|
className,
|
|
|
|
rootClassName,
|
|
|
|
hashId,
|
2023-12-14 14:58:53 +08:00
|
|
|
cssVarCls,
|
2023-06-30 11:29:39 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
const mergedStyle: React.CSSProperties = { ...SWITCH?.style, ...style };
|
|
|
|
|
2023-11-09 13:42:25 +08:00
|
|
|
const changeHandler: SwitchChangeEventHandler = (...args) => {
|
|
|
|
setChecked(args[0]);
|
|
|
|
onChange?.(...args);
|
|
|
|
};
|
|
|
|
|
2023-11-16 14:18:32 +08:00
|
|
|
return wrapCSSVar(
|
2023-07-25 16:29:47 +08:00
|
|
|
<Wave component="Switch">
|
2024-04-01 15:49:45 +08:00
|
|
|
{/* @ts-ignore */}
|
2023-06-30 11:29:39 +08:00
|
|
|
<RcSwitch
|
|
|
|
{...restProps}
|
2023-11-09 13:42:25 +08:00
|
|
|
checked={checked}
|
2024-04-01 15:49:45 +08:00
|
|
|
onChange={changeHandler as any}
|
2023-06-30 11:29:39 +08:00
|
|
|
prefixCls={prefixCls}
|
|
|
|
className={classes}
|
|
|
|
style={mergedStyle}
|
|
|
|
disabled={mergedDisabled}
|
|
|
|
ref={ref}
|
|
|
|
loadingIcon={loadingIcon}
|
|
|
|
/>
|
|
|
|
</Wave>,
|
|
|
|
);
|
2024-04-09 16:49:47 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
type CompoundedComponent = typeof InternalSwitch & {
|
|
|
|
/** @internal */
|
|
|
|
__ANT_SWITCH: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
const Switch = InternalSwitch as CompoundedComponent;
|
2020-01-03 13:38:16 +08:00
|
|
|
|
2020-04-26 22:33:36 +08:00
|
|
|
Switch.__ANT_SWITCH = true;
|
2023-06-30 11:29:39 +08:00
|
|
|
|
2022-06-21 10:24:52 +08:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
Switch.displayName = 'Switch';
|
|
|
|
}
|
2018-12-05 19:12:18 +08:00
|
|
|
|
2020-04-26 22:33:36 +08:00
|
|
|
export default Switch;
|