| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
- var _internal = require("../../theme/internal");
- var _style = require("../../style");
- const genBaseStyle = 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, fontSize, radius) => ({
- width: size,
- height: size,
- lineHeight: `${size - lineWidth * 2}px`,
- borderRadius: '50%',
- [`&${componentCls}-square`]: {
- borderRadius: radius
- },
- [`${componentCls}-string`]: {
- position: 'absolute',
- left: {
- _skip_check_: true,
- value: '50%'
- },
- transformOrigin: '0 center'
- },
- [`&${componentCls}-icon`]: {
- fontSize,
- [`> ${iconCls}`]: {
- margin: 0
- }
- }
- });
- return {
- [componentCls]: (0, _extends2.default)((0, _extends2.default)((0, _extends2.default)((0, _extends2.default)({}, (0, _style.resetComponent)(token)), {
- position: 'relative',
- display: 'inline-block',
- overflow: 'hidden',
- color: avatarColor,
- whiteSpace: 'nowrap',
- textAlign: 'center',
- verticalAlign: 'middle',
- background: avatarBg,
- border: `${lineWidth}px ${lineType} transparent`,
- [`&-image`]: {
- background: 'transparent'
- },
- [`${antCls}-image-img`]: {
- display: 'block'
- }
- }), avatarSizeStyle(containerSize, textFontSize, borderRadius)), {
- [`&-lg`]: (0, _extends2.default)({}, avatarSizeStyle(containerSizeLG, textFontSizeLG, borderRadiusLG)),
- [`&-sm`]: (0, _extends2.default)({}, avatarSizeStyle(containerSizeSM, textFontSizeSM, borderRadiusSM)),
- '> img': {
- display: 'block',
- width: '100%',
- height: '100%',
- objectFit: 'cover'
- }
- })
- };
- };
- const genGroupStyle = 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
- }
- }
- };
- };
- var _default = exports.default = (0, _internal.genComponentStyleHook)('Avatar', token => {
- const {
- colorTextLightSolid,
- colorTextPlaceholder
- } = token;
- const avatarToken = (0, _internal.mergeToken)(token, {
- avatarBg: colorTextPlaceholder,
- avatarColor: colorTextLightSolid
- });
- return [genBaseStyle(avatarToken), genGroupStyle(avatarToken)];
- }, 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
- };
- });
|