2022-05-09 22:20:07 +08:00
|
|
|
import type { CSSObject } from '@ant-design/cssinjs';
|
2022-06-02 17:18:52 +08:00
|
|
|
import { TinyColor } from '@ctrl/tinycolor';
|
2022-06-27 14:25:59 +08:00
|
|
|
import type { FullToken, GenerateStyle } from '../../theme';
|
2022-07-11 15:35:58 +08:00
|
|
|
import { genComponentStyleHook, mergeToken } from '../../theme';
|
|
|
|
import { resetComponent } from '../../style';
|
2022-04-08 14:36:26 +08:00
|
|
|
|
|
|
|
interface SwitchToken extends FullToken<'Switch'> {
|
2022-03-16 15:04:47 +08:00
|
|
|
switchMinWidth: number;
|
|
|
|
switchHeight: number;
|
|
|
|
switchDuration: string;
|
|
|
|
switchColor: string;
|
|
|
|
switchDisabledOpacity: number;
|
|
|
|
switchInnerMarginMin: number;
|
|
|
|
switchInnerMarginMax: number;
|
|
|
|
switchPadding: number;
|
|
|
|
switchPinSize: number;
|
|
|
|
switchBg: string;
|
|
|
|
switchMinWidthSM: number;
|
|
|
|
switchHeightSM: number;
|
|
|
|
switchInnerMarginMinSM: number;
|
|
|
|
switchInnerMarginMaxSM: number;
|
|
|
|
switchPinSizeSM: number;
|
2022-06-02 17:18:52 +08:00
|
|
|
switchHandleShadow: string;
|
|
|
|
switchLoadingIconSize: number;
|
|
|
|
switchLoadingIconColor: string;
|
|
|
|
switchHandleActiveInset: string;
|
2022-03-16 15:04:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const genSwitchSmallStyle: GenerateStyle<SwitchToken, CSSObject> = token => ({
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-small`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
minWidth: token.switchMinWidthSM,
|
|
|
|
height: token.switchHeightSM,
|
|
|
|
lineHeight: `${token.switchHeightSM}px`,
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`${token.componentCls}-inner`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
marginInlineStart: token.switchInnerMarginMaxSM,
|
|
|
|
marginInlineEnd: token.switchInnerMarginMinSM,
|
|
|
|
fontSize: token.fontSizeSM,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`${token.componentCls}-handle`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
width: token.switchPinSizeSM,
|
|
|
|
height: token.switchPinSizeSM,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`${token.componentCls}-loading-icon`]: {
|
2022-06-02 17:18:52 +08:00
|
|
|
top: (token.switchPinSizeSM - token.switchLoadingIconSize) / 2,
|
|
|
|
fontSize: token.switchLoadingIconSize,
|
2022-03-16 15:04:47 +08:00
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked`]: {
|
|
|
|
[`${token.componentCls}-inner`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
marginInlineStart: token.switchInnerMarginMinSM,
|
|
|
|
marginInlineEnd: token.switchInnerMarginMaxSM,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`${token.componentCls}-handle`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
insetInlineStart: `calc(100% - ${token.switchPinSizeSM + token.switchPadding}px)`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const genSwitchLoadingStyle: GenerateStyle<SwitchToken, CSSObject> = token => ({
|
2022-04-08 14:36:26 +08:00
|
|
|
[`${token.componentCls}-loading-icon${token.iconCls}`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
position: 'relative',
|
|
|
|
top: (token.switchPinSize - token.fontSize) / 2,
|
2022-06-02 17:18:52 +08:00
|
|
|
color: token.switchLoadingIconColor,
|
2022-03-16 15:04:47 +08:00
|
|
|
verticalAlign: 'top',
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked ${token.componentCls}-loading-icon`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
color: token.switchColor,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const genSwitchHandleStyle: GenerateStyle<SwitchToken, CSSObject> = token => {
|
2022-04-08 14:36:26 +08:00
|
|
|
const switchHandleCls = `${token.componentCls}-handle`;
|
2022-03-16 15:04:47 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
[switchHandleCls]: {
|
|
|
|
position: 'absolute',
|
|
|
|
top: token.switchPadding,
|
|
|
|
insetInlineStart: token.switchPadding,
|
|
|
|
width: token.switchPinSize,
|
|
|
|
height: token.switchPinSize,
|
|
|
|
transition: `all ${token.switchDuration} ease-in-out`,
|
|
|
|
|
|
|
|
'&::before': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
insetInlineEnd: 0,
|
|
|
|
bottom: 0,
|
|
|
|
insetInlineStart: 0,
|
|
|
|
backgroundColor: token.switchBg,
|
|
|
|
borderRadius: token.switchPinSize / 2,
|
2022-06-02 17:18:52 +08:00
|
|
|
boxShadow: token.switchHandleShadow,
|
2022-03-16 15:04:47 +08:00
|
|
|
transition: `all ${token.switchDuration} ease-in-out`,
|
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked ${switchHandleCls}`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
insetInlineStart: `calc(100% - ${token.switchPinSize + token.switchPadding}px)`,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&:not(${token.componentCls}-disabled):active`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
[`${switchHandleCls}::before`]: {
|
2022-06-02 17:18:52 +08:00
|
|
|
insetInlineEnd: token.switchHandleActiveInset,
|
2022-03-16 15:04:47 +08:00
|
|
|
insetInlineStart: 0,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked ${switchHandleCls}::before`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
insetInlineEnd: 0,
|
2022-06-02 17:18:52 +08:00
|
|
|
insetInlineStart: token.switchHandleActiveInset,
|
2022-03-16 15:04:47 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const genSwitchInnerStyle: GenerateStyle<SwitchToken, CSSObject> = token => {
|
2022-04-08 14:36:26 +08:00
|
|
|
const switchInnerCls = `${token.componentCls}-inner`;
|
2022-03-16 15:04:47 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
[switchInnerCls]: {
|
|
|
|
display: 'block',
|
|
|
|
marginInlineEnd: token.switchInnerMarginMin,
|
|
|
|
marginInlineStart: token.switchInnerMarginMax,
|
2022-03-22 13:26:29 +08:00
|
|
|
color: token.colorTextLightSolid,
|
2022-03-16 15:04:47 +08:00
|
|
|
fontSize: token.fontSizeSM,
|
|
|
|
transition: `margin-inline-end ${token.switchDuration}, margin-inline-start ${token.switchDuration}`,
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked ${switchInnerCls}`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
marginInlineEnd: token.switchInnerMarginMax,
|
|
|
|
marginInlineStart: token.switchInnerMarginMin,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const genSwitchStyle = (token: SwitchToken): CSSObject => {
|
2022-04-08 14:36:26 +08:00
|
|
|
const { componentCls } = token;
|
2022-03-16 15:04:47 +08:00
|
|
|
|
|
|
|
return {
|
2022-04-08 14:36:26 +08:00
|
|
|
[componentCls]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
...resetComponent(token),
|
|
|
|
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-block',
|
|
|
|
boxSizing: 'border-box',
|
|
|
|
minWidth: token.switchMinWidth,
|
|
|
|
height: token.switchHeight,
|
|
|
|
lineHeight: `${token.switchHeight}px`,
|
|
|
|
verticalAlign: 'middle',
|
2022-09-07 12:00:00 +08:00
|
|
|
background: token.colorTextQuaternary,
|
2022-03-16 15:04:47 +08:00
|
|
|
border: '0',
|
|
|
|
borderRadius: 100,
|
|
|
|
cursor: 'pointer',
|
2022-09-07 14:08:14 +08:00
|
|
|
transition: `all ${token.motionDurationFast}`,
|
2022-03-16 15:04:47 +08:00
|
|
|
userSelect: 'none',
|
|
|
|
|
2022-09-07 12:00:00 +08:00
|
|
|
'&:hover': {
|
|
|
|
background: token.colorTextTertiary,
|
|
|
|
},
|
|
|
|
|
2022-03-24 14:30:48 +08:00
|
|
|
'&:focus-visible': {
|
2022-03-16 15:04:47 +08:00
|
|
|
outline: 0,
|
2022-06-29 21:24:29 +08:00
|
|
|
boxShadow: `0 0 0 ${token.controlOutlineWidth}px ${token.controlTmpOutline}`,
|
2022-03-16 15:04:47 +08:00
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked:focus-visible`]: {
|
2022-07-21 17:00:42 +08:00
|
|
|
boxShadow: `0 0 0 ${token.controlOutlineWidth}px ${token.controlOutline}`,
|
2022-03-16 15:04:47 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&:focus:hover': {
|
|
|
|
boxShadow: 'none',
|
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-checked`]: {
|
2022-04-20 11:30:55 +08:00
|
|
|
background: token.switchColor,
|
2022-09-07 12:00:00 +08:00
|
|
|
|
|
|
|
'&:hover': {
|
|
|
|
background: token.colorPrimaryHover,
|
|
|
|
},
|
2022-03-16 15:04:47 +08:00
|
|
|
},
|
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-loading, &${token.componentCls}-disabled`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
cursor: 'not-allowed',
|
|
|
|
opacity: token.switchDisabledOpacity,
|
|
|
|
|
|
|
|
'*': {
|
|
|
|
boxShadow: 'none',
|
|
|
|
cursor: 'not-allowed',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// inner style
|
|
|
|
...genSwitchInnerStyle(token),
|
|
|
|
|
|
|
|
// handle style
|
|
|
|
...genSwitchHandleStyle(token),
|
|
|
|
|
|
|
|
// loading style
|
|
|
|
...genSwitchLoadingStyle(token),
|
|
|
|
|
|
|
|
// small style
|
|
|
|
...genSwitchSmallStyle(token),
|
|
|
|
|
|
|
|
// rtl style
|
2022-04-08 14:36:26 +08:00
|
|
|
[`&${token.componentCls}-rtl`]: {
|
2022-03-16 15:04:47 +08:00
|
|
|
direction: 'rtl',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// ============================== Export ==============================
|
2022-04-08 14:36:26 +08:00
|
|
|
export default genComponentStyleHook('Switch', token => {
|
2022-06-02 17:18:52 +08:00
|
|
|
const switchHeight = token.fontSize * token.lineHeight;
|
|
|
|
const switchHeightSM = token.controlHeight / 2;
|
|
|
|
const switchPadding = token.paddingXXS / 2;
|
|
|
|
const switchPinSize = switchHeight - switchPadding * 2;
|
|
|
|
const switchPinSizeSM = switchHeightSM - switchPadding * 2;
|
2022-03-16 15:04:47 +08:00
|
|
|
|
2022-04-11 16:04:00 +08:00
|
|
|
const switchToken = mergeToken<SwitchToken>(token, {
|
2022-06-02 17:18:52 +08:00
|
|
|
switchMinWidth: switchPinSize * 2 + switchPadding * 4,
|
2022-03-16 15:04:47 +08:00
|
|
|
switchHeight,
|
2022-06-02 17:18:52 +08:00
|
|
|
switchDuration: token.motionDurationMid,
|
2022-03-22 09:37:37 +08:00
|
|
|
switchColor: token.colorPrimary,
|
2022-06-17 18:47:47 +08:00
|
|
|
switchDisabledOpacity: token.opacityLoading,
|
2022-06-02 17:18:52 +08:00
|
|
|
switchInnerMarginMin: switchPinSize / 2,
|
|
|
|
switchInnerMarginMax: switchPinSize + switchPadding + token.paddingXXS,
|
|
|
|
switchPadding,
|
|
|
|
switchPinSize,
|
2022-06-28 20:33:01 +08:00
|
|
|
switchBg: token.colorBgContainer,
|
2022-06-02 17:18:52 +08:00
|
|
|
switchMinWidthSM: switchPinSizeSM * 2 + switchPadding * 2,
|
2022-03-16 15:04:47 +08:00
|
|
|
switchHeightSM,
|
2022-06-02 17:18:52 +08:00
|
|
|
switchInnerMarginMinSM: switchPinSizeSM / 2,
|
|
|
|
switchInnerMarginMaxSM: switchPinSizeSM + switchPadding + token.paddingXXS,
|
|
|
|
switchPinSizeSM,
|
|
|
|
switchHandleShadow: `0 2px 4px 0 ${new TinyColor('#00230b').setAlpha(0.2).toRgbString()}`,
|
|
|
|
switchLoadingIconSize: token.fontSizeIcon * 0.75,
|
2022-06-17 18:47:47 +08:00
|
|
|
switchLoadingIconColor: `rgba(0, 0, 0, ${token.opacityLoading})`,
|
2022-06-02 17:18:52 +08:00
|
|
|
switchHandleActiveInset: '-30%',
|
2022-04-11 16:04:00 +08:00
|
|
|
});
|
2022-03-16 15:04:47 +08:00
|
|
|
|
2022-04-08 14:36:26 +08:00
|
|
|
return [genSwitchStyle(switchToken)];
|
|
|
|
});
|