mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
369 lines
9.6 KiB
TypeScript
369 lines
9.6 KiB
TypeScript
// import '../../style/index.less';
|
|
// import './index.less';
|
|
|
|
// style dependencies
|
|
import '../../empty/style';
|
|
|
|
// deps-lint-skip-all
|
|
import { CSSObject, CSSInterpolation } from '@ant-design/cssinjs';
|
|
import {
|
|
DerivativeToken,
|
|
useStyleRegister,
|
|
useToken,
|
|
resetComponent,
|
|
resetIcon,
|
|
UseComponentStyleResult,
|
|
GenerateStyle,
|
|
} from '../../_util/theme';
|
|
import genSingleStyle from './single';
|
|
import genMultipleStyle from './multiple';
|
|
import genDropdownStyle from './dropdown';
|
|
|
|
export type SelectToken = DerivativeToken & {
|
|
rootPrefixCls: string;
|
|
antCls: string;
|
|
selectCls: string;
|
|
iconPrefixCls: string;
|
|
inputPaddingHorizontalBase: number;
|
|
zIndexDropdown: number;
|
|
};
|
|
|
|
// ============================= Selector =============================
|
|
const genSelectorStyle: GenerateStyle<SelectToken, CSSObject> = token => {
|
|
const { selectCls } = token;
|
|
|
|
return {
|
|
position: 'relative',
|
|
backgroundColor: token.colorBgComponent,
|
|
border: `${token.controlLineWidth}px ${token.controlLineType} ${token.colorBorder}`,
|
|
borderRadius: token.controlRadius,
|
|
transition: `all ${token.motionDurationSlow} ${token.motionEaseInOut}`,
|
|
|
|
input: {
|
|
cursor: 'pointer',
|
|
},
|
|
|
|
[`${selectCls}-show-search&`]: {
|
|
cursor: 'text',
|
|
|
|
input: {
|
|
cursor: 'auto',
|
|
},
|
|
},
|
|
|
|
[`${selectCls}-disabled&`]: {
|
|
color: token.colorTextDisabled,
|
|
background: token.colorBgComponentDisabled,
|
|
cursor: 'not-allowed',
|
|
|
|
[`${selectCls}-multiple&`]: {
|
|
background: token.colorBgComponentDisabled,
|
|
},
|
|
|
|
input: {
|
|
cursor: 'not-allowed',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Status ==============================
|
|
const genStatusStyle = (
|
|
rootSelectCls: string,
|
|
token: {
|
|
selectCls: string;
|
|
borderHoverColor: string;
|
|
outlineColor: string;
|
|
controlOutlineWidth: number;
|
|
controlLineWidth: number;
|
|
},
|
|
overwriteDefaultBorder: boolean = false,
|
|
): CSSObject => {
|
|
const { selectCls, borderHoverColor, outlineColor } = token;
|
|
|
|
const overwriteStyle: CSSObject = overwriteDefaultBorder
|
|
? {
|
|
[`${selectCls}-selector`]: {
|
|
borderColor: borderHoverColor,
|
|
},
|
|
}
|
|
: {};
|
|
|
|
return {
|
|
[rootSelectCls]: {
|
|
[`&:not(${selectCls}-disabled):not(${selectCls}-customize-input)`]: {
|
|
...overwriteStyle,
|
|
|
|
[`${selectCls}-focused& ${selectCls}-selector`]: {
|
|
borderColor: borderHoverColor,
|
|
boxShadow: `0 0 0 ${token.controlOutlineWidth}px ${outlineColor}`,
|
|
borderInlineEndWidth: `${token.controlLineWidth}px !important`,
|
|
outline: 0,
|
|
},
|
|
|
|
[`&:hover ${selectCls}-selector`]: {
|
|
borderColor: borderHoverColor,
|
|
borderInlineEndWidth: `${token.controlLineWidth}px !important`,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Styles ==============================
|
|
// /* Reset search input style */
|
|
const getSearchInputWithoutBorderStyle: GenerateStyle<SelectToken, CSSObject> = token => {
|
|
const { selectCls } = token;
|
|
|
|
return {
|
|
[`${selectCls}-selection-search-input`]: {
|
|
margin: 0,
|
|
padding: 0,
|
|
background: 'transparent',
|
|
border: 'none',
|
|
outline: 'none',
|
|
appearance: 'none',
|
|
|
|
'&::-webkit-search-cancel-button': {
|
|
display: 'none',
|
|
'-webkit-appearance': 'none',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// =============================== Base ===============================
|
|
const genBaseStyle: GenerateStyle<SelectToken> = token => {
|
|
const { selectCls, iconPrefixCls, inputPaddingHorizontalBase } = token;
|
|
|
|
return {
|
|
[selectCls]: {
|
|
...resetComponent(token),
|
|
position: 'relative',
|
|
display: 'inline-block',
|
|
cursor: 'pointer',
|
|
|
|
[`&:not(&-customize-input) ${selectCls}-selector`]: {
|
|
...genSelectorStyle(token),
|
|
...getSearchInputWithoutBorderStyle(token),
|
|
},
|
|
|
|
// [`&:not(&-disabled):hover ${selectCls}-selector`]: {
|
|
// ...genHoverStyle(token),
|
|
// },
|
|
|
|
// ======================== Selection ========================
|
|
[`${selectCls}-selection-item`]: {
|
|
flex: 1,
|
|
overflow: 'hidden',
|
|
fontWeight: 'normal',
|
|
whiteSpace: 'nowrap',
|
|
textOverflow: 'ellipsis',
|
|
},
|
|
|
|
// ======================= Placeholder =======================
|
|
[`${selectCls}-selection-placeholder`]: {
|
|
flex: 1,
|
|
overflow: 'hidden',
|
|
color: token.colorPlaceholder,
|
|
whiteSpace: 'nowrap',
|
|
textOverflow: 'ellipsis',
|
|
pointerEvents: 'none',
|
|
},
|
|
|
|
// ========================== Arrow ==========================
|
|
[`${selectCls}-arrow`]: {
|
|
...resetIcon(),
|
|
position: 'absolute',
|
|
top: '50%',
|
|
insetInlineStart: 'auto',
|
|
insetInlineEnd: inputPaddingHorizontalBase,
|
|
height: token.fontSizeSM,
|
|
marginTop: -token.fontSizeSM / 2,
|
|
color: token.colorTextDisabled,
|
|
fontSize: token.fontSizeSM,
|
|
lineHeight: 1,
|
|
textAlign: 'center',
|
|
pointerEvents: 'none',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
|
|
[`.${iconPrefixCls}`]: {
|
|
verticalAlign: 'top',
|
|
transition: `transform ${token.motionDurationSlow}`,
|
|
|
|
'> svg': {
|
|
verticalAlign: 'top',
|
|
},
|
|
|
|
[`&:not(${selectCls}-suffix)`]: {
|
|
pointerEvents: 'auto',
|
|
},
|
|
},
|
|
|
|
[`${selectCls}-disabled &`]: {
|
|
cursor: 'not-allowed',
|
|
},
|
|
|
|
'> *:not(:last-child)': {
|
|
marginInlineEnd: 8, // FIXME: magic
|
|
},
|
|
},
|
|
|
|
// ========================== Clear ==========================
|
|
[`${selectCls}-clear`]: {
|
|
position: 'absolute',
|
|
top: '50%',
|
|
insetInlineStart: 'auto',
|
|
insetInlineEnd: inputPaddingHorizontalBase,
|
|
zIndex: 1,
|
|
display: 'inline-block',
|
|
width: token.fontSizeSM,
|
|
height: token.fontSizeSM,
|
|
marginTop: -token.fontSizeSM / 2,
|
|
color: token.colorTextDisabled,
|
|
fontSize: token.fontSizeSM,
|
|
fontStyle: 'normal',
|
|
lineHeight: 1,
|
|
textAlign: 'center',
|
|
textTransform: 'none',
|
|
background: token.colorBgComponent,
|
|
cursor: 'pointer',
|
|
opacity: 0,
|
|
transition: `color ${token.motionDurationSlow} ease, opacity ${token.motionDurationSlow} ease`,
|
|
textRendering: 'auto',
|
|
|
|
'&:before': {
|
|
display: 'block',
|
|
},
|
|
|
|
'&:hover': {
|
|
color: token.colorTextSecondary,
|
|
},
|
|
},
|
|
|
|
'&:hover': {
|
|
[`${selectCls}-clear`]: {
|
|
opacity: 1,
|
|
},
|
|
},
|
|
},
|
|
|
|
// ========================= Feedback ==========================
|
|
[`${selectCls}-has-feedback`]: {
|
|
[`${selectCls}-clear`]: {
|
|
insetInlineEnd: inputPaddingHorizontalBase + token.fontSize + token.paddingXXS,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
// ============================== Styles ==============================
|
|
const genSelectStyle = (
|
|
rootPrefixCls: string,
|
|
prefixCls: string,
|
|
iconPrefixCls: string,
|
|
token: DerivativeToken,
|
|
hashId: string,
|
|
): CSSInterpolation => {
|
|
const antCls = `.${rootPrefixCls}`;
|
|
const selectCls = `.${prefixCls}`;
|
|
|
|
const inputPaddingHorizontalBase = token.controlPaddingHorizontal - 1;
|
|
|
|
const selectToken: SelectToken = {
|
|
...token,
|
|
rootPrefixCls,
|
|
antCls,
|
|
selectCls,
|
|
iconPrefixCls,
|
|
inputPaddingHorizontalBase,
|
|
zIndexDropdown: token.zIndexPopup + 50,
|
|
};
|
|
|
|
return [
|
|
{
|
|
[selectCls]: {
|
|
// ==================== BorderLess ====================
|
|
[`&-borderless ${selectCls}-selector`]: {
|
|
backgroundColor: `transparent !important`,
|
|
borderColor: `transparent !important`,
|
|
boxShadow: `none !important`,
|
|
},
|
|
|
|
// ==================== In Form ====================
|
|
'&&-in-form-item': {
|
|
width: '100%',
|
|
},
|
|
},
|
|
},
|
|
|
|
// =====================================================
|
|
// == LTR ==
|
|
// =====================================================
|
|
// Base
|
|
genBaseStyle(selectToken),
|
|
|
|
// Single
|
|
genSingleStyle(selectToken),
|
|
|
|
// Multiple
|
|
genMultipleStyle(selectToken),
|
|
|
|
// Dropdown
|
|
genDropdownStyle(selectToken, hashId),
|
|
|
|
// =====================================================
|
|
// == RTL ==
|
|
// =====================================================
|
|
{
|
|
[`${selectCls}-rtl`]: {
|
|
direction: 'rtl',
|
|
},
|
|
},
|
|
|
|
// =====================================================
|
|
// == Status ==
|
|
// =====================================================
|
|
genStatusStyle(selectCls, {
|
|
...selectToken,
|
|
borderHoverColor: token.colorPrimaryHover,
|
|
outlineColor: token.colorPrimaryOutline,
|
|
}),
|
|
genStatusStyle(
|
|
`${selectCls}-status-error`,
|
|
{
|
|
...selectToken,
|
|
borderHoverColor: token.colorErrorHover,
|
|
outlineColor: token.colorErrorOutline,
|
|
},
|
|
true,
|
|
),
|
|
genStatusStyle(
|
|
`${selectCls}-status-warning`,
|
|
{
|
|
...selectToken,
|
|
borderHoverColor: token.colorWarningHover,
|
|
outlineColor: token.colorWarningOutline,
|
|
},
|
|
true,
|
|
),
|
|
];
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default function useStyle(
|
|
rootPrefixCls: string,
|
|
prefixCls: string,
|
|
iconPrefixCls: string,
|
|
): UseComponentStyleResult {
|
|
const [theme, token, hashId] = useToken();
|
|
|
|
return [
|
|
useStyleRegister({ theme, token, hashId, path: [prefixCls] }, () => [
|
|
genSelectStyle(rootPrefixCls, prefixCls, iconPrefixCls, token, hashId),
|
|
]),
|
|
hashId,
|
|
];
|
|
}
|