mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
36 lines
912 B
TypeScript
36 lines
912 B
TypeScript
import "./Avatar.scss";
|
|
|
|
import React, { useState } from "react";
|
|
import { getClientInitials } from "../clients";
|
|
|
|
type AvatarProps = {
|
|
onClick: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
color: string;
|
|
border: string;
|
|
name: string;
|
|
src?: string;
|
|
};
|
|
|
|
export const Avatar = ({ color, border, onClick, name, src }: AvatarProps) => {
|
|
const shortName = getClientInitials(name);
|
|
const [error, setError] = useState(false);
|
|
const loadImg = !error && src;
|
|
const style = loadImg
|
|
? undefined
|
|
: { background: color, border: `1px solid ${border}` };
|
|
return (
|
|
<div className="Avatar" style={style} onClick={onClick}>
|
|
{loadImg ? (
|
|
<img
|
|
className="Avatar-img"
|
|
src={src}
|
|
alt={shortName}
|
|
referrerPolicy="no-referrer"
|
|
onError={() => setError(true)}
|
|
/>
|
|
) : (
|
|
shortName
|
|
)}
|
|
</div>
|
|
);
|
|
};
|