aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/CurrentIdentity.js
blob: c8afc531559e7b4d2059ece0987a73845a1ddafb (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
40
41
42
43
44
45
46
47
48
49
50
51
import React from 'react';
import gql from 'graphql-tag';
import { Query } from 'react-apollo';
import Avatar from '@material-ui/core/Avatar';
import { makeStyles } from '@material-ui/styles';

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

const QUERY = gql`
  {
    defaultRepository {
      userIdentity {
        displayName
        avatarUrl
      }
    }
  }
`;

const CurrentIdentity = () => {
  const classes = useStyles();
  return (
    <Query query={QUERY}>
      {({ error, data }) => {
        if (
          error ||
          !data ||
          !data.defaultRepository ||
          !data.defaultRepository.userIdentity ||
          !data.defaultRepository.userIdentity.displayName
        )
          return <></>;
        const displayName =
          data.defaultRepository.userIdentity.displayName || '';
        const avatar = data.defaultRepository.userIdentity.avatarUrl;
        return (
          <>
            <Avatar src={avatar}>{displayName.charAt(0).toUpperCase()}</Avatar>
            <div className={classes.displayName}>{displayName}</div>
          </>
        );
      }}
    </Query>
  );
};

export default CurrentIdentity;