aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/layout/CurrentIdentity.tsx
blob: 550601799993cededd3028496fb1c965351127d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from 'react';

import Avatar from '@material-ui/core/Avatar';
import { makeStyles } from '@material-ui/core/styles';

import CurrentIdentityContext from './CurrentIdentityContext';

const useStyles = makeStyles(theme => ({
  displayName: {
    marginLeft: theme.spacing(2),
  },
}));

const CurrentIdentity = () => {
  const classes = useStyles();

  return (
    <CurrentIdentityContext.Consumer>
      {context => {
        if (!context) return null;
        const { loading, error, data } = context as any;

        if (error || loading || !data?.repository?.userIdentity) return null;

        const user = data.repository.userIdentity;
        return (
          <>
            <Avatar src={user.avatarUrl ? user.avatarUrl : undefined}>
              {user.displayName.charAt(0).toUpperCase()}
            </Avatar>
            <div className={classes.displayName}>{user.displayName}</div>
          </>
        );
      }}
    </CurrentIdentityContext.Consumer>
  );
};

export default CurrentIdentity;