blob: d18f8c6b42087f6493ab130f97e9c0d6eab8632c (
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
|
import * as React from 'react';
import { useParams } from 'react-router-dom';
import CircularProgress from '@material-ui/core/CircularProgress';
import { useGetUserByIdQuery } from '../../components/Identity/UserIdentity.generated';
import Identity from './Identity';
const UserQuery: React.FC = () => {
const params = useParams<'id'>();
if (params.id === undefined) throw new Error('missing route parameters');
const { loading, error, data } = useGetUserByIdQuery({
variables: { userId: params.id },
});
if (loading) return <CircularProgress />;
if (error) return <p>Error: {error}</p>;
if (!data?.repository?.identity) return <p>404.</p>;
return <Identity identity={data.repository.identity} />;
};
export default UserQuery;
|