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';
|
2015-07-08 19:47:45 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface SwitchProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
size?: 'small' | 'default';
|
|
|
|
className?: string;
|
|
|
|
checked?: boolean;
|
|
|
|
defaultChecked?: boolean;
|
|
|
|
onChange?: (checked: boolean) => any;
|
|
|
|
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;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
2017-11-21 14:53:25 +08:00
|
|
|
export default class Switch extends React.Component<SwitchProps, {}> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-switch',
|
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
|
|
|
|
size: PropTypes.oneOf(['small', 'default', 'large']),
|
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;
|
|
|
|
}
|
|
|
|
|
2015-07-08 19:47:45 +08:00
|
|
|
render() {
|
2018-11-21 11:01:18 +08:00
|
|
|
const { prefixCls, size, loading, className = '', disabled } = this.props;
|
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 ? (
|
|
|
|
<Icon
|
2018-09-03 17:11:20 +08:00
|
|
|
type="loading"
|
2018-08-07 16:35:56 +08:00
|
|
|
className={`${prefixCls}-loading-icon`}
|
|
|
|
/>
|
|
|
|
) : 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'])}
|
|
|
|
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
|
|
|
);
|
2015-07-08 19:47:45 +08:00
|
|
|
}
|
2016-03-21 09:22:14 +08:00
|
|
|
}
|