| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import React from 'react';
- import md5 from 'md5';
- import PropTypes from 'prop-types';
- import { userPageRoot } from '@commons/util/path-utils';
- import { UncontrolledTooltip } from 'reactstrap';
- const DEFAULT_IMAGE = '/images/icons/user.svg';
- // TODO UserComponent?
- export default class UserPicture extends React.Component {
- getUserPicture(user) {
- // gravatar
- if (user.isGravatarEnabled === true) {
- return this.generateGravatarSrc(user);
- }
- // uploaded image
- if (user.image != null) {
- return user.image;
- }
- if (user.imageAttachment != null) {
- return user.imageAttachment.filePathProxied;
- }
- return DEFAULT_IMAGE;
- }
- generateGravatarSrc(user) {
- const email = user.email || '';
- const hash = md5(email.trim().toLowerCase());
- return `https://gravatar.com/avatar/${hash}`;
- }
- getClassName() {
- const className = ['rounded-circle', 'picture'];
- // size
- if (this.props.size) {
- className.push(`picture-${this.props.size}`);
- }
- return className.join(' ');
- }
- renderForNull() {
- return (
- <img
- src={DEFAULT_IMAGE}
- alt="someone"
- className={this.getClassName()}
- />
- );
- }
- RootElmWithoutLink = (props) => {
- return <span {...props}>{props.children}</span>;
- }
- RootElmWithLink = (props) => {
- const { user } = this.props;
- const href = userPageRoot(user);
- return <a href={href} {...props}>{props.children}</a>;
- }
- withTooltip = (RootElm) => {
- const { user } = this.props;
- const id = `user-picture-${Math.random().toString(32).substring(2)}`;
- return props => (
- <>
- <RootElm id={id}>{props.children}</RootElm>
- <UncontrolledTooltip placement="bottom" target={id} delay={0} fade={false}>
- @{user.username}<br />
- {user.name}
- </UncontrolledTooltip>
- </>
- );
- }
- render() {
- const user = this.props.user;
- if (user == null) {
- return this.renderForNull();
- }
- const { noLink, noTooltip } = this.props;
- // determine RootElm
- let RootElm = noLink ? this.RootElmWithoutLink : this.RootElmWithLink;
- if (!noTooltip) {
- RootElm = this.withTooltip(RootElm);
- }
- return (
- <RootElm>
- <img
- src={this.getUserPicture(user)}
- alt={user.username}
- className={this.getClassName()}
- />
- </RootElm>
- );
- }
- }
- UserPicture.propTypes = {
- user: PropTypes.object,
- size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg', 'xl']),
- noLink: PropTypes.bool,
- noTooltip: PropTypes.bool,
- };
- UserPicture.defaultProps = {
- size: null,
- noLink: false,
- noTooltip: false,
- };
|