You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/packages/design/components/Avatar/index.tsx

107 lines
2.7 KiB
TypeScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React, { ForwardRefExoticComponent, useMemo } from 'react';
import { Avatar as AntdAvatar, Badge } from 'antd';
import _head from 'lodash/head';
import _upperCase from 'lodash/upperCase';
import _isNil from 'lodash/isNil';
import _isEmpty from 'lodash/isEmpty';
import _isNumber from 'lodash/isNumber';
import _omit from 'lodash/omit';
import type { AvatarProps as AntdAvatarProps } from 'antd/lib/avatar';
import { getTextColorHex, px2rem } from './utils';
import { isValidStr } from '../utils';
import { imageUrlParser } from '../Image';
export { getTextColorHex };
export interface AvatarProps extends AntdAvatarProps {
name?: string;
isOnline?: boolean;
}
const _Avatar: React.FC<AvatarProps> = React.memo((_props) => {
const { isOnline, ...props } = _props;
const src = isValidStr(props.src) ? imageUrlParser(props.src) : undefined;
const name = useMemo(() => _upperCase(_head(props.name)), [props.name]);
const color = useMemo(
() =>
// 如果src为空 且 icon为空 则给个固定颜色
_isEmpty(src) && _isNil(props.icon)
? getTextColorHex(props.name)
: undefined,
[src, props.icon, props.name]
);
const style = useMemo(() => {
const _style: React.CSSProperties = {
userSelect: 'none',
...props.style,
backgroundColor: color,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
};
if (_isNumber(props.size)) {
// 为了支持rem统一管理宽度将size转换为样式宽度(size类型上不支持rem单位)
if (!_style.width) {
_style.width = px2rem(props.size);
}
if (!_style.height) {
_style.height = px2rem(props.size);
}
if (typeof _style.fontSize === 'undefined') {
// 如果props.size是数字且没有指定文字大小
// 则自动增加fontSize大小
_style.fontSize = px2rem(props.size * 0.4);
}
}
return _style;
}, [props.style, props.size, color]);
const inner = (
<AntdAvatar
draggable={false}
{..._omit(props, ['size'])}
src={src}
style={style}
>
{name}
</AntdAvatar>
);
if (typeof isOnline === 'boolean') {
const style = {
bottom: 0,
top: 'auto',
};
if (isOnline === true) {
return (
<Badge dot={true} color="green" style={style}>
{inner}
</Badge>
);
} else {
return (
<Badge dot={true} color="#999" style={style}>
{inner}
</Badge>
);
}
}
return inner;
});
_Avatar.displayName = 'Avatar';
type CompoundedComponent = ForwardRefExoticComponent<AvatarProps> & {
Group: typeof AntdAvatar.Group;
};
export const Avatar: CompoundedComponent = _Avatar as any;
Avatar.Group = AntdAvatar.Group;