aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/Author.tsx
blob: 852cd2b706162b2e37fd1df06214111771d2e5c7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                               
                                                        
                          
 

                                                      




                                 
                                                 
                      
                                                        

   

                                  
                                                  
              

    
 
                                                        







                                                               
import MAvatar from '@material-ui/core/Avatar';
import Tooltip from '@material-ui/core/Tooltip/Tooltip';
import React from 'react';

import { AuthoredFragment } from './Author.generated';

type Props = AuthoredFragment & {
  className?: string;
  bold?: boolean;
};

const Author = ({ author, ...props }: Props) => {
  if (!author.email) {
    return <span {...props}>{author.displayName}</span>;
  }

  return (
    <Tooltip title={author.email}>
      <span {...props}>{author.displayName}</span>
    </Tooltip>
  );
};

export const Avatar = ({ author, ...props }: Props) => {
  if (author.avatarUrl) {
    return <MAvatar src={author.avatarUrl} {...props} />;
  }

  return <MAvatar {...props}>{author.displayName[0]}</MAvatar>;
};

export default Author;