mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 13:37:52 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
204 lines
4.6 KiB
TypeScript
204 lines
4.6 KiB
TypeScript
import { unit } from '@ant-design/cssinjs';
|
|
import type { CSSObject } from '@ant-design/cssinjs';
|
|
|
|
import { resetComponent } from '../../style';
|
|
import type { FullToken, GenerateStyle, GetDefaultToken } from '../../theme/internal';
|
|
import { genStyleHooks, mergeToken } from '../../theme/internal';
|
|
|
|
export interface ComponentToken {
|
|
/**
|
|
* @desc 头像尺寸
|
|
* @descEN Size of Avatar
|
|
*/
|
|
containerSize: number;
|
|
/**
|
|
* @desc 大号头像尺寸
|
|
* @descEN Size of large Avatar
|
|
*/
|
|
containerSizeLG: number;
|
|
/**
|
|
* @desc 小号头像尺寸
|
|
* @descEN Size of small Avatar
|
|
*/
|
|
containerSizeSM: number;
|
|
/**
|
|
* @desc 头像文字大小
|
|
* @descEN Font size of Avatar
|
|
*/
|
|
textFontSize: number;
|
|
/**
|
|
* @desc 大号头像文字大小
|
|
* @descEN Font size of large Avatar
|
|
*/
|
|
textFontSizeLG: number;
|
|
/**
|
|
* @desc 小号头像文字大小
|
|
* @descEN Font size of small Avatar
|
|
*/
|
|
textFontSizeSM: number;
|
|
/**
|
|
* @desc 头像组间距
|
|
* @descEN Spacing between avatars in a group
|
|
*/
|
|
groupSpace: number;
|
|
/**
|
|
* @desc 头像组重叠宽度
|
|
* @descEN Overlapping of avatars in a group
|
|
*/
|
|
groupOverlapping: number;
|
|
/**
|
|
* @desc 头像组边框颜色
|
|
* @descEN Border color of avatars in a group
|
|
*/
|
|
groupBorderColor: string;
|
|
}
|
|
|
|
type AvatarToken = FullToken<'Avatar'> & {
|
|
avatarBgColor: string;
|
|
avatarBg: string;
|
|
avatarColor: string;
|
|
};
|
|
|
|
const genBaseStyle: GenerateStyle<AvatarToken> = (token) => {
|
|
const {
|
|
antCls,
|
|
componentCls,
|
|
iconCls,
|
|
avatarBg,
|
|
avatarColor,
|
|
containerSize,
|
|
containerSizeLG,
|
|
containerSizeSM,
|
|
textFontSize,
|
|
textFontSizeLG,
|
|
textFontSizeSM,
|
|
borderRadius,
|
|
borderRadiusLG,
|
|
borderRadiusSM,
|
|
lineWidth,
|
|
lineType,
|
|
} = token;
|
|
|
|
// Avatar size style
|
|
const avatarSizeStyle = (size: number, fontSize: number, radius: number): CSSObject => ({
|
|
width: size,
|
|
height: size,
|
|
borderRadius: '50%',
|
|
|
|
[`&${componentCls}-square`]: {
|
|
borderRadius: radius,
|
|
},
|
|
|
|
[`&${componentCls}-icon`]: {
|
|
fontSize,
|
|
[`> ${iconCls}`]: {
|
|
margin: 0,
|
|
},
|
|
},
|
|
});
|
|
|
|
return {
|
|
[componentCls]: {
|
|
...resetComponent(token),
|
|
position: 'relative',
|
|
display: 'inline-flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
overflow: 'hidden',
|
|
color: avatarColor,
|
|
whiteSpace: 'nowrap',
|
|
textAlign: 'center',
|
|
verticalAlign: 'middle',
|
|
background: avatarBg,
|
|
border: `${unit(lineWidth)} ${lineType} transparent`,
|
|
|
|
[`&-image`]: {
|
|
background: 'transparent',
|
|
},
|
|
|
|
[`${antCls}-image-img`]: {
|
|
display: 'block',
|
|
},
|
|
|
|
...avatarSizeStyle(containerSize, textFontSize, borderRadius),
|
|
|
|
[`&-lg`]: {
|
|
...avatarSizeStyle(containerSizeLG, textFontSizeLG, borderRadiusLG),
|
|
},
|
|
|
|
[`&-sm`]: {
|
|
...avatarSizeStyle(containerSizeSM, textFontSizeSM, borderRadiusSM),
|
|
},
|
|
|
|
'> img': {
|
|
display: 'block',
|
|
width: '100%',
|
|
height: '100%',
|
|
objectFit: 'cover',
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
const genGroupStyle: GenerateStyle<AvatarToken> = (token) => {
|
|
const { componentCls, groupBorderColor, groupOverlapping, groupSpace } = token;
|
|
|
|
return {
|
|
[`${componentCls}-group`]: {
|
|
display: 'inline-flex',
|
|
|
|
[`${componentCls}`]: {
|
|
borderColor: groupBorderColor,
|
|
},
|
|
|
|
[`> *:not(:first-child)`]: {
|
|
marginInlineStart: groupOverlapping,
|
|
},
|
|
},
|
|
[`${componentCls}-group-popover`]: {
|
|
[`${componentCls} + ${componentCls}`]: {
|
|
marginInlineStart: groupSpace,
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export const prepareComponentToken: GetDefaultToken<'Avatar'> = (token) => {
|
|
const {
|
|
controlHeight,
|
|
controlHeightLG,
|
|
controlHeightSM,
|
|
fontSize,
|
|
fontSizeLG,
|
|
fontSizeXL,
|
|
fontSizeHeading3,
|
|
marginXS,
|
|
marginXXS,
|
|
colorBorderBg,
|
|
} = token;
|
|
return {
|
|
containerSize: controlHeight,
|
|
containerSizeLG: controlHeightLG,
|
|
containerSizeSM: controlHeightSM,
|
|
textFontSize: Math.round((fontSizeLG + fontSizeXL) / 2),
|
|
textFontSizeLG: fontSizeHeading3,
|
|
textFontSizeSM: fontSize,
|
|
groupSpace: marginXXS,
|
|
groupOverlapping: -marginXS,
|
|
groupBorderColor: colorBorderBg,
|
|
};
|
|
};
|
|
|
|
export default genStyleHooks(
|
|
'Avatar',
|
|
(token) => {
|
|
const { colorTextLightSolid, colorTextPlaceholder } = token;
|
|
const avatarToken = mergeToken<AvatarToken>(token, {
|
|
avatarBg: colorTextPlaceholder,
|
|
avatarColor: colorTextLightSolid,
|
|
});
|
|
return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)];
|
|
},
|
|
prepareComponentToken,
|
|
);
|