80 lines
1.7 KiB
TypeScript
80 lines
1.7 KiB
TypeScript
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import useBoolean from "~/hooks/useBoolean";
|
|
import Initials from "./Initials";
|
|
|
|
export enum AvatarSize {
|
|
Small = 16,
|
|
Medium = 24,
|
|
Large = 32,
|
|
XLarge = 48,
|
|
}
|
|
|
|
export interface IAvatar {
|
|
avatarUrl: string | null;
|
|
color?: string;
|
|
initial?: string;
|
|
id?: string;
|
|
}
|
|
|
|
type Props = {
|
|
size: AvatarSize;
|
|
src?: string;
|
|
model?: IAvatar;
|
|
alt?: string;
|
|
showBorder?: boolean;
|
|
onClick?: React.MouseEventHandler<HTMLImageElement>;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
};
|
|
|
|
function Avatar(props: Props) {
|
|
const { showBorder, model, style, ...rest } = props;
|
|
const src = props.src || model?.avatarUrl;
|
|
const [error, handleError] = useBoolean(false);
|
|
|
|
return (
|
|
<Relative style={style}>
|
|
{src && !error ? (
|
|
<CircleImg
|
|
onError={handleError}
|
|
src={src}
|
|
$showBorder={showBorder}
|
|
{...rest}
|
|
/>
|
|
) : model ? (
|
|
<Initials color={model.color} $showBorder={showBorder} {...rest}>
|
|
{model.initial}
|
|
</Initials>
|
|
) : (
|
|
<Initials $showBorder={showBorder} {...rest} />
|
|
)}
|
|
</Relative>
|
|
);
|
|
}
|
|
|
|
Avatar.defaultProps = {
|
|
size: AvatarSize.Medium,
|
|
};
|
|
|
|
const Relative = styled.div`
|
|
position: relative;
|
|
user-select: none;
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
const CircleImg = styled.img<{ size: number; $showBorder?: boolean }>`
|
|
display: block;
|
|
width: ${(props) => props.size}px;
|
|
height: ${(props) => props.size}px;
|
|
border-radius: 50%;
|
|
border: ${(props) =>
|
|
props.$showBorder === false
|
|
? "none"
|
|
: `2px solid ${props.theme.background}`};
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
`;
|
|
|
|
export default Avatar;
|