diff options
author | ludovicm67 <ludovicmuller1@gmail.com> | 2020-01-23 23:37:59 +0100 |
---|---|---|
committer | ludovicm67 <ludovicmuller1@gmail.com> | 2020-01-23 23:37:59 +0100 |
commit | def48e53f4ae206a10d0973439efdd7769e91100 (patch) | |
tree | 16ecb40f2cdcfba6e5ba0bda8a2e1d751a04a05e /webui/src/CurrentIdentity.js | |
parent | 8f6bc245038ce7197034877bf0fd5ddcb8d3e24d (diff) | |
download | git-bug-def48e53f4ae206a10d0973439efdd7769e91100.tar.gz |
webui: display current identity in the AppBar
Diffstat (limited to 'webui/src/CurrentIdentity.js')
-rw-r--r-- | webui/src/CurrentIdentity.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/webui/src/CurrentIdentity.js b/webui/src/CurrentIdentity.js new file mode 100644 index 00000000..c8afc531 --- /dev/null +++ b/webui/src/CurrentIdentity.js @@ -0,0 +1,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; |