mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
149729e524
* feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
85 lines
2.4 KiB
TypeScript
Executable File
85 lines
2.4 KiB
TypeScript
Executable File
import * as React from 'react';
|
|
import * as PropTypes from 'prop-types';
|
|
import RcSwitch from 'rc-switch';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import { Loading } from '@ant-design/icons';
|
|
|
|
import Wave from '../_util/wave';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
|
|
export type SwitchSize = 'small' | 'default';
|
|
export type SwitchChangeEventHandler = (checked: boolean, event: MouseEvent) => void;
|
|
export type SwitchClickEventHandler = SwitchChangeEventHandler;
|
|
|
|
export interface SwitchProps {
|
|
prefixCls?: string;
|
|
size?: SwitchSize;
|
|
className?: string;
|
|
checked?: boolean;
|
|
defaultChecked?: boolean;
|
|
onChange?: SwitchChangeEventHandler;
|
|
onClick?: SwitchClickEventHandler;
|
|
checkedChildren?: React.ReactNode;
|
|
unCheckedChildren?: React.ReactNode;
|
|
disabled?: boolean;
|
|
loading?: boolean;
|
|
autoFocus?: boolean;
|
|
style?: React.CSSProperties;
|
|
title?: string;
|
|
}
|
|
|
|
export default class Switch extends React.Component<SwitchProps, {}> {
|
|
static __ANT_SWITCH = true;
|
|
|
|
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']) as PropTypes.Requireable<
|
|
SwitchProps['size']
|
|
>,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
private rcSwitch: typeof RcSwitch;
|
|
|
|
saveSwitch = (node: typeof RcSwitch) => {
|
|
this.rcSwitch = node;
|
|
};
|
|
|
|
focus() {
|
|
this.rcSwitch.focus();
|
|
}
|
|
|
|
blur() {
|
|
this.rcSwitch.blur();
|
|
}
|
|
|
|
renderSwitch = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const { prefixCls: customizePrefixCls, size, loading, className = '', disabled } = this.props;
|
|
const prefixCls = getPrefixCls('switch', customizePrefixCls);
|
|
const classes = classNames(className, {
|
|
[`${prefixCls}-small`]: size === 'small',
|
|
[`${prefixCls}-loading`]: loading,
|
|
});
|
|
const loadingIcon = loading ? <Loading className={`${prefixCls}-loading-icon`} /> : null;
|
|
return (
|
|
<Wave insertExtraNode>
|
|
<RcSwitch
|
|
{...omit(this.props, ['loading'])}
|
|
prefixCls={prefixCls}
|
|
className={classes}
|
|
disabled={disabled || loading}
|
|
ref={this.saveSwitch}
|
|
loadingIcon={loadingIcon}
|
|
/>
|
|
</Wave>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
return <ConfigConsumer>{this.renderSwitch}</ConfigConsumer>;
|
|
}
|
|
}
|