import React from 'react'; import { Link as RouterLink } from 'react-router-dom'; import { Link, Paper, Typography } from '@material-ui/core'; import Avatar from '@material-ui/core/Avatar'; import CircularProgress from '@material-ui/core/CircularProgress'; import Grid from '@material-ui/core/Grid'; import { makeStyles } from '@material-ui/core/styles'; import InfoIcon from '@material-ui/icons/Info'; import MailOutlineIcon from '@material-ui/icons/MailOutline'; import { IdentityFragment } from '../../components/Identity/IdentityFragment.generated'; import { useGetUserStatisticQuery } from './GetUserStatistic.generated'; const useStyles = makeStyles((theme) => ({ main: { maxWidth: 1000, margin: 'auto', marginTop: theme.spacing(3), }, content: { padding: theme.spacing(0.5, 2, 2, 2), wordWrap: 'break-word', }, large: { minWidth: 200, minHeight: 200, margin: 'auto', maxWidth: '100%', maxHeight: '100%', }, heading: { marginTop: theme.spacing(3), }, header: { ...theme.typography.h4, wordBreak: 'break-word', }, infoIcon: { verticalAlign: 'bottom', }, })); type Props = { identity: IdentityFragment; }; const Identity = ({ identity }: Props) => { const classes = useStyles(); const user = identity; const { loading, error, data } = useGetUserStatisticQuery({ variables: { authorQuery: 'author:' + user?.humanId, participantQuery: 'participant:' + user?.humanId, actionQuery: 'actor:' + user?.humanId, }, }); if (loading) return ; if (error) return

Error: {error}

; const statistic = data?.repository; const authoredCount = statistic?.authored?.totalCount; const participatedCount = statistic?.participated?.totalCount; const actionCount = statistic?.actions?.totalCount; return (
{user?.displayName.charAt(0).toUpperCase()}

{user?.name}

Name: {user?.displayName ? user?.displayName : '---'} Id (truncated): {user?.humanId ? user?.humanId : '---'} {user?.email && ( {user?.email} )}

Statistics

Created {authoredCount} bugs. Participated to {participatedCount} bugs. Interacted with {actionCount} bugs.
); }; export default Identity;