You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import RcSwitch from 'rc-switch';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
|
|
export interface SwitchProps {
|
|
prefixCls?: string;
|
|
size?: 'small' | 'default';
|
|
className?: string;
|
|
checked?: boolean;
|
|
defaultChecked?: boolean;
|
|
onChange?: (checked: boolean) => any;
|
|
checkedChildren?: React.ReactNode;
|
|
unCheckedChildren?: React.ReactNode;
|
|
disabled?: boolean;
|
|
loading?: boolean;
|
|
}
|
|
|
|
export default class Switch extends React.Component<SwitchProps, {}> {
|
|
static defaultProps = {
|
|
prefixCls: 'ant-switch',
|
|
};
|
|
|
|
static propTypes = {
|
|
prefixCls: PropTypes.string,
|
|
// HACK: https://github.com/ant-design/ant-design/issues/5368
|
|
// size=default and size=large are the same
|
|
size: PropTypes.oneOf(['small', 'default', 'large']),
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
private rcSwitch: typeof RcSwitch;
|
|
|
|
focus() {
|
|
this.rcSwitch.focus();
|
|
}
|
|
|
|
blur() {
|
|
this.rcSwitch.blur();
|
|
}
|
|
|
|
saveSwitch = (node: typeof RcSwitch) => {
|
|
this.rcSwitch = node;
|
|
}
|
|
|
|
render() {
|
|
const { prefixCls, size, loading, className = '' } = this.props;
|
|
const classes = classNames(className, {
|
|
[`${prefixCls}-small`]: size === 'small',
|
|
[`${prefixCls}-loading`]: loading,
|
|
});
|
|
return (
|
|
<RcSwitch
|
|
{...omit(this.props, ['loading'])}
|
|
className={classes}
|
|
ref={this.saveSwitch}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|