2022-03-21 10:59:42 +08:00
|
|
|
// deps-lint-skip-all
|
2022-04-06 21:49:30 +08:00
|
|
|
import { FullToken, genComponentStyleHook, GenerateStyle, resetComponent } from '../../_util/theme';
|
2022-03-21 10:59:42 +08:00
|
|
|
import {
|
|
|
|
genActiveStyle,
|
|
|
|
genBasicInputStyle,
|
|
|
|
genDisabledStyle,
|
|
|
|
genPlaceholderStyle,
|
2022-03-30 14:10:59 +08:00
|
|
|
genStatusStyle,
|
2022-03-21 10:59:42 +08:00
|
|
|
initInputToken,
|
|
|
|
InputToken,
|
|
|
|
} from '../../input/style';
|
2019-05-17 12:05:03 +08:00
|
|
|
|
2022-03-29 15:57:39 +08:00
|
|
|
export interface ComponentToken {
|
|
|
|
zIndexDropdown: number;
|
|
|
|
dropdownHeight: number;
|
|
|
|
controlItemWidth: number;
|
|
|
|
}
|
|
|
|
|
2022-04-06 21:49:30 +08:00
|
|
|
type MentionsToken = InputToken<FullToken<'Mentions'>>;
|
2022-02-16 21:14:05 +08:00
|
|
|
|
2022-03-21 10:59:42 +08:00
|
|
|
const genMentionsStyle: GenerateStyle<MentionsToken> = token => {
|
|
|
|
const {
|
2022-04-06 21:49:30 +08:00
|
|
|
componentCls,
|
2022-03-24 14:30:48 +08:00
|
|
|
colorTextDisabled,
|
|
|
|
controlItemBgHover,
|
2022-03-21 10:59:42 +08:00
|
|
|
controlPaddingHorizontal,
|
2022-03-24 14:30:48 +08:00
|
|
|
colorText,
|
|
|
|
motionDurationSlow,
|
2022-03-21 10:59:42 +08:00
|
|
|
lineHeight,
|
|
|
|
controlHeight,
|
|
|
|
inputPaddingHorizontal,
|
|
|
|
inputPaddingVertical,
|
|
|
|
fontSize,
|
2022-03-24 14:30:48 +08:00
|
|
|
colorBgComponent,
|
|
|
|
controlRadius,
|
2022-03-21 10:59:42 +08:00
|
|
|
boxShadow,
|
|
|
|
} = token;
|
|
|
|
|
2022-03-29 15:57:39 +08:00
|
|
|
const itemPaddingVertical = Math.round(
|
|
|
|
(token.controlHeight - token.fontSize * token.lineHeight) / 2,
|
|
|
|
);
|
|
|
|
|
2022-03-21 10:59:42 +08:00
|
|
|
return {
|
2022-04-06 21:49:30 +08:00
|
|
|
[`${componentCls}`]: {
|
2022-03-21 10:59:42 +08:00
|
|
|
...resetComponent(token),
|
|
|
|
...genBasicInputStyle(token),
|
|
|
|
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-block',
|
|
|
|
height: 'auto',
|
|
|
|
padding: 0,
|
|
|
|
overflow: 'hidden',
|
|
|
|
lineHeight,
|
|
|
|
whiteSpace: 'pre-wrap',
|
|
|
|
verticalAlign: 'bottom',
|
|
|
|
|
2022-03-30 14:10:59 +08:00
|
|
|
...genStatusStyle(token),
|
|
|
|
|
2022-03-21 10:59:42 +08:00
|
|
|
'&-disabled': {
|
|
|
|
'> textarea': {
|
|
|
|
...genDisabledStyle(token),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-focused': {
|
|
|
|
...genActiveStyle(token),
|
|
|
|
},
|
|
|
|
|
2022-04-06 21:49:30 +08:00
|
|
|
[`&-affix-wrapper ${componentCls}-suffix`]: {
|
2022-03-25 20:08:05 +08:00
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
insetInlineEnd: inputPaddingHorizontal,
|
|
|
|
bottom: 0,
|
|
|
|
zIndex: 1,
|
|
|
|
display: 'inline-flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
margin: 'auto',
|
|
|
|
},
|
|
|
|
|
2022-03-21 10:59:42 +08:00
|
|
|
// ================= Input Area =================
|
2022-04-06 21:49:30 +08:00
|
|
|
[`> textarea, ${componentCls}-measure`]: {
|
2022-03-21 10:59:42 +08:00
|
|
|
minHeight: controlHeight - 2,
|
|
|
|
margin: 0,
|
|
|
|
padding: `${inputPaddingVertical}px ${inputPaddingHorizontal}px`,
|
|
|
|
overflow: 'inherit',
|
|
|
|
overflowX: 'hidden',
|
|
|
|
overflowY: 'auto',
|
|
|
|
fontWeight: 'inherit',
|
|
|
|
fontSize: 'inherit',
|
|
|
|
fontFamily: 'inherit',
|
|
|
|
fontStyle: 'inherit',
|
|
|
|
fontVariant: 'inherit',
|
|
|
|
fontSizeAdjust: 'inherit',
|
|
|
|
fontStretch: 'inherit',
|
|
|
|
lineHeight: 'inherit',
|
|
|
|
direction: 'inherit',
|
|
|
|
letterSpacing: 'inherit',
|
|
|
|
whiteSpace: 'inherit',
|
|
|
|
textAlign: 'inherit',
|
|
|
|
verticalAlign: 'top',
|
|
|
|
wordWrap: 'break-word',
|
|
|
|
wordBreak: 'inherit',
|
|
|
|
tabSize: 'inherit',
|
|
|
|
},
|
|
|
|
|
|
|
|
'> textarea': {
|
|
|
|
width: '100%',
|
|
|
|
border: 'none',
|
|
|
|
outline: 'none',
|
|
|
|
resize: 'none',
|
2022-03-29 15:57:39 +08:00
|
|
|
...genPlaceholderStyle(token.colorPlaceholder),
|
2022-03-21 10:59:42 +08:00
|
|
|
},
|
|
|
|
|
2022-04-06 21:49:30 +08:00
|
|
|
[`${componentCls}-measure`]: {
|
2022-03-21 10:59:42 +08:00
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
insetInlineEnd: 0,
|
|
|
|
bottom: 0,
|
|
|
|
insetInlineStart: 0,
|
|
|
|
zIndex: -1,
|
|
|
|
color: 'transparent',
|
|
|
|
pointerEvents: 'none',
|
|
|
|
|
|
|
|
'> span': {
|
|
|
|
display: 'inline-block',
|
|
|
|
minHeight: '1em',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ================== Dropdown ==================
|
|
|
|
'&-dropdown': {
|
|
|
|
// Ref select dropdown style
|
|
|
|
...resetComponent(token),
|
|
|
|
|
|
|
|
position: 'absolute',
|
|
|
|
top: -9999,
|
|
|
|
insetInlineStart: -9999,
|
2022-03-29 15:57:39 +08:00
|
|
|
zIndex: token.zIndexDropdown,
|
2022-03-21 10:59:42 +08:00
|
|
|
boxSizing: 'border-box',
|
|
|
|
fontSize,
|
|
|
|
fontVariant: 'initial',
|
2022-03-24 14:30:48 +08:00
|
|
|
backgroundColor: colorBgComponent,
|
|
|
|
borderRadius: controlRadius,
|
2022-03-21 10:59:42 +08:00
|
|
|
outline: 'none',
|
|
|
|
boxShadow,
|
|
|
|
|
|
|
|
'&-hidden': {
|
|
|
|
display: 'none',
|
|
|
|
},
|
|
|
|
|
2022-04-06 21:49:30 +08:00
|
|
|
[`${componentCls}-dropdown-menu`]: {
|
2022-03-29 15:57:39 +08:00
|
|
|
maxHeight: token.dropdownHeight,
|
2022-03-21 10:59:42 +08:00
|
|
|
marginBottom: 0,
|
|
|
|
paddingInlineStart: 0, // Override default ul/ol
|
|
|
|
overflow: 'auto',
|
|
|
|
listStyle: 'none',
|
|
|
|
outline: 'none',
|
|
|
|
|
|
|
|
'&-item': {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'block',
|
2022-03-29 15:57:39 +08:00
|
|
|
minWidth: token.controlItemWidth,
|
|
|
|
padding: `${itemPaddingVertical}px ${controlPaddingHorizontal}px`,
|
2022-03-21 10:59:42 +08:00
|
|
|
overflow: 'hidden',
|
2022-03-24 14:30:48 +08:00
|
|
|
color: colorText,
|
2022-03-21 10:59:42 +08:00
|
|
|
fontWeight: 'normal',
|
|
|
|
lineHeight,
|
|
|
|
whiteSpace: 'nowrap',
|
|
|
|
textOverflow: 'ellipsis',
|
|
|
|
cursor: 'pointer',
|
2022-03-24 14:30:48 +08:00
|
|
|
transition: `background ${motionDurationSlow} ease`,
|
2022-03-21 10:59:42 +08:00
|
|
|
|
|
|
|
'&:hover': {
|
2022-03-24 14:30:48 +08:00
|
|
|
backgroundColor: controlItemBgHover,
|
2022-03-21 10:59:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&:first-child': {
|
2022-03-24 14:30:48 +08:00
|
|
|
borderStartStartRadius: controlRadius,
|
|
|
|
borderStartEndRadius: controlRadius,
|
2022-03-21 10:59:42 +08:00
|
|
|
borderEndStartRadius: 0,
|
|
|
|
borderEndEndRadius: 0,
|
|
|
|
},
|
|
|
|
|
|
|
|
'&:last-child': {
|
|
|
|
borderStartStartRadius: 0,
|
|
|
|
borderStartEndRadius: 0,
|
2022-03-24 14:30:48 +08:00
|
|
|
borderEndStartRadius: controlRadius,
|
|
|
|
borderEndEndRadius: controlRadius,
|
2022-03-21 10:59:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&-disabled': {
|
2022-03-24 14:30:48 +08:00
|
|
|
color: colorTextDisabled,
|
2022-03-21 10:59:42 +08:00
|
|
|
cursor: 'not-allowed',
|
|
|
|
|
|
|
|
'&:hover': {
|
2022-03-24 14:30:48 +08:00
|
|
|
color: colorTextDisabled,
|
|
|
|
backgroundColor: controlItemBgHover,
|
2022-03-21 10:59:42 +08:00
|
|
|
cursor: 'not-allowed',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-selected': {
|
2022-03-24 14:30:48 +08:00
|
|
|
color: colorText,
|
2022-03-29 15:57:39 +08:00
|
|
|
fontWeight: token.fontWeightStrong,
|
2022-03-24 14:30:48 +08:00
|
|
|
backgroundColor: controlItemBgHover,
|
2022-03-21 10:59:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&-active': {
|
2022-03-24 14:30:48 +08:00
|
|
|
backgroundColor: controlItemBgHover,
|
2022-03-21 10:59:42 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// ============================== Export ==============================
|
2022-04-06 21:49:30 +08:00
|
|
|
export default genComponentStyleHook(
|
|
|
|
'Mentions',
|
|
|
|
token => {
|
|
|
|
const mentionsToken = initInputToken<FullToken<'Mentions'>>(token);
|
|
|
|
return [genMentionsStyle(mentionsToken)];
|
|
|
|
},
|
|
|
|
token => ({
|
|
|
|
dropdownHeight: 250,
|
|
|
|
controlItemWidth: 100,
|
|
|
|
zIndexDropdown: token.zIndexPopup + 50,
|
|
|
|
}),
|
|
|
|
);
|