diff options
author | Michael Muré <batolettre@gmail.com> | 2020-01-24 00:46:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 00:46:44 +0100 |
commit | 9f7953161f3ef8a6081b7950b3cc274e34666116 (patch) | |
tree | 6f0c98fcfefc9b2d012cd10bff922ea47fb19652 /webui/src/CurrentIdentity.js | |
parent | ff33e62f65d0a4764358352492f46daccf961f93 (diff) | |
parent | 70354165ff1956dd0598ff69736fb0436612003c (diff) | |
download | git-bug-9f7953161f3ef8a6081b7950b3cc274e34666116.tar.gz |
Merge pull request #300 from ludovicm67/webui-display-current-identity
Webui: display current identity + improve app bar
Diffstat (limited to 'webui/src/CurrentIdentity.js')
-rw-r--r-- | webui/src/CurrentIdentity.js | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/webui/src/CurrentIdentity.js b/webui/src/CurrentIdentity.js new file mode 100644 index 00000000..451979fb --- /dev/null +++ b/webui/src/CurrentIdentity.js @@ -0,0 +1,45 @@ +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; |