83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
import * as React from "react";
|
|
import styled from "styled-components";
|
|
import useBoolean from "~/hooks/useBoolean";
|
|
import Initials from "./Initials";
|
|
import placeholder from "./placeholder.png";
|
|
|
|
export interface IAvatar {
|
|
avatarUrl: string | null;
|
|
color: string;
|
|
initial: string;
|
|
id: string;
|
|
}
|
|
|
|
type Props = {
|
|
size: number;
|
|
src?: string;
|
|
icon?: React.ReactNode;
|
|
model?: IAvatar;
|
|
alt?: string;
|
|
showBorder?: boolean;
|
|
onClick?: React.MouseEventHandler<HTMLImageElement>;
|
|
className?: string;
|
|
};
|
|
|
|
function Avatar(props: Props) {
|
|
const { icon, showBorder, model, ...rest } = props;
|
|
const src = props.src || model?.avatarUrl;
|
|
const [error, handleError] = useBoolean(false);
|
|
|
|
return (
|
|
<Relative>
|
|
{src ? (
|
|
<CircleImg
|
|
onError={handleError}
|
|
src={error ? placeholder : src}
|
|
$showBorder={showBorder}
|
|
{...rest}
|
|
/>
|
|
) : model ? (
|
|
<Initials color={model.color} $showBorder={showBorder} {...rest}>
|
|
{model.initial}
|
|
</Initials>
|
|
) : (
|
|
<Initials $showBorder={showBorder} {...rest} />
|
|
)}
|
|
{icon && <IconWrapper>{icon}</IconWrapper>}
|
|
</Relative>
|
|
);
|
|
}
|
|
|
|
Avatar.defaultProps = {
|
|
size: 24,
|
|
};
|
|
|
|
const Relative = styled.div`
|
|
position: relative;
|
|
`;
|
|
|
|
const IconWrapper = styled.div`
|
|
display: flex;
|
|
position: absolute;
|
|
bottom: -2px;
|
|
right: -2px;
|
|
background: ${(props) => props.theme.primary};
|
|
border: 2px solid ${(props) => props.theme.background};
|
|
border-radius: 100%;
|
|
width: 20px;
|
|
height: 20px;
|
|
`;
|
|
|
|
const CircleImg = styled.img<{ size: number; $showBorder?: boolean }>`
|
|
display: block;
|
|
width: ${(props) => props.size}px;
|
|
height: ${(props) => props.size}px;
|
|
border-radius: 50%;
|
|
border: 2px solid
|
|
${(props) =>
|
|
props.$showBorder === false ? "transparent" : props.theme.background};
|
|
flex-shrink: 0;
|
|
`;
|
|
|
|
export default Avatar;
|