diff options
Diffstat (limited to 'server/sonar-ui-common/components/ui/GenericAvatar.tsx')
-rw-r--r-- | server/sonar-ui-common/components/ui/GenericAvatar.tsx | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/server/sonar-ui-common/components/ui/GenericAvatar.tsx b/server/sonar-ui-common/components/ui/GenericAvatar.tsx new file mode 100644 index 00000000000..9221bdcd73d --- /dev/null +++ b/server/sonar-ui-common/components/ui/GenericAvatar.tsx @@ -0,0 +1,61 @@ +/* + * Sonar UI Common + * Copyright (C) 2019-2020 SonarSource SA + * mailto:info AT sonarsource DOT com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +import * as classNames from 'classnames'; +import * as React from 'react'; +import { getTextColor, stringToColor } from '../../helpers/colors'; + +interface Props { + className?: string; + name: string; + round?: boolean; + size: number; +} + +export default function GenericAvatar({ className, name, round, size }: Props) { + const color = stringToColor(name); + + let text = ''; + const words = name.split(/\s+/).filter((word) => word.length > 0); + if (words.length >= 2) { + text = words[0][0] + words[1][0]; + } else if (name.length > 0) { + text = name[0]; + } + + return ( + <div + className={classNames(className, 'rounded')} + style={{ + backgroundColor: color, + borderRadius: round ? '50%' : undefined, + color: getTextColor(color), + display: 'inline-block', + fontSize: Math.min(size / 2, 14), + fontWeight: 'normal', + height: size, + lineHeight: `${size}px`, + textAlign: 'center', + verticalAlign: 'top', + width: size, + }}> + {text.toUpperCase()} + </div> + ); +} |