aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/CurrentIdentity.js
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-02-04 22:03:21 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:37 +0100
commit022f510369688084af5bcf314a97fd332d7ee265 (patch)
tree0adf3ac82d487712f095a7692b51aaefb680be72 /webui/src/CurrentIdentity.js
parent6a502c145bd8f2e2e1a9c0b103c11f0433c60737 (diff)
downloadgit-bug-022f510369688084af5bcf314a97fd332d7ee265.tar.gz
webui: convert more things to typescript
Diffstat (limited to 'webui/src/CurrentIdentity.js')
-rw-r--r--webui/src/CurrentIdentity.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/webui/src/CurrentIdentity.js b/webui/src/CurrentIdentity.js
deleted file mode 100644
index 451979fb..00000000
--- a/webui/src/CurrentIdentity.js
+++ /dev/null
@@ -1,45 +0,0 @@
-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}>
- {({ loading, error, data }) => {
- if (error || loading || !data.defaultRepository.userIdentity)
- return null;
- const user = data.defaultRepository.userIdentity;
- return (
- <>
- <Avatar src={user.avatarUrl}>
- {user.displayName.charAt(0).toUpperCase()}
- </Avatar>
- <div className={classes.displayName}>{user.displayName}</div>
- </>
- );
- }}
- </Query>
- );
-};
-
-export default CurrentIdentity;