2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2018-08-07 21:07:52 +08:00
|
|
|
import * as PropTypes from 'prop-types';
|
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';
|
2017-12-04 20:44:37 +08:00
|
|
|
import omit from 'omit.js';
|
2018-08-11 14:57:41 +08:00
|
|
|
import Wave from '../_util/wave';
|
2018-08-07 16:35:56 +08:00
|
|
|
import Icon from '../icon';
|
2018-12-05 19:12:18 +08:00
|
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
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;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
2017-11-21 14:53:25 +08:00
|
|
|
export default class Switch extends React.Component<SwitchProps, {}> {
|
2019-06-30 00:29:48 +08:00
|
|
|
static __ANT_SWITCH = true;
|
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
static propTypes = {
|
|
|
|
prefixCls: PropTypes.string,
|
2017-03-20 16:08:24 +08:00
|
|
|
// HACK: https://github.com/ant-design/ant-design/issues/5368
|
|
|
|
// size=default and size=large are the same
|
2018-12-22 21:21:42 +08:00
|
|
|
size: PropTypes.oneOf(['small', 'default', 'large']) as PropTypes.Requireable<
|
|
|
|
SwitchProps['size']
|
|
|
|
>,
|
2016-08-10 09:46:56 +08:00
|
|
|
className: PropTypes.string,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2017-11-21 14:53:25 +08:00
|
|
|
private rcSwitch: typeof RcSwitch;
|
2017-11-19 01:41:40 +08:00
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.rcSwitch.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
blur() {
|
|
|
|
this.rcSwitch.blur();
|
|
|
|
}
|
|
|
|
|
2017-11-21 14:53:25 +08:00
|
|
|
saveSwitch = (node: typeof RcSwitch) => {
|
2017-11-19 01:41:40 +08:00
|
|
|
this.rcSwitch = node;
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2017-11-19 01:41:40 +08:00
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
renderSwitch = ({ getPrefixCls }: ConfigConsumerProps) => {
|
2018-12-07 20:02:01 +08:00
|
|
|
const { prefixCls: customizePrefixCls, size, loading, className = '', disabled } = this.props;
|
2018-12-05 19:12:18 +08:00
|
|
|
const prefixCls = getPrefixCls('switch', customizePrefixCls);
|
2016-11-30 10:20:23 +08:00
|
|
|
const classes = classNames(className, {
|
2016-01-27 12:00:27 +08:00
|
|
|
[`${prefixCls}-small`]: size === 'small',
|
2017-12-02 15:57:02 +08:00
|
|
|
[`${prefixCls}-loading`]: loading,
|
2015-12-06 16:39:01 +08:00
|
|
|
});
|
2018-08-07 16:35:56 +08:00
|
|
|
const loadingIcon = loading ? (
|
2018-12-07 20:02:01 +08:00
|
|
|
<Icon type="loading" className={`${prefixCls}-loading-icon`} />
|
2018-08-07 16:35:56 +08:00
|
|
|
) : null;
|
2017-11-19 01:41:40 +08:00
|
|
|
return (
|
2018-08-11 14:57:41 +08:00
|
|
|
<Wave insertExtraNode>
|
|
|
|
<RcSwitch
|
|
|
|
{...omit(this.props, ['loading'])}
|
2018-12-05 19:12:18 +08:00
|
|
|
prefixCls={prefixCls}
|
2018-08-11 14:57:41 +08:00
|
|
|
className={classes}
|
2018-11-21 11:01:18 +08:00
|
|
|
disabled={disabled || loading}
|
2018-08-11 14:57:41 +08:00
|
|
|
ref={this.saveSwitch}
|
2018-08-20 14:00:51 +08:00
|
|
|
loadingIcon={loadingIcon}
|
2018-08-11 14:57:41 +08:00
|
|
|
/>
|
|
|
|
</Wave>
|
2017-11-19 01:41:40 +08:00
|
|
|
);
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-12-05 19:12:18 +08:00
|
|
|
|
|
|
|
render() {
|
2018-12-07 20:02:01 +08:00
|
|
|
return <ConfigConsumer>{this.renderSwitch}</ConfigConsumer>;
|
2018-12-05 19:12:18 +08:00
|
|
|
}
|
2016-03-21 09:22:14 +08:00
|
|
|
}
|