aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/pages/bug/BugQuery.tsx
blob: 5d459c429a737fc812fe7615c629c2684ade06ca (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                                                       
 

                                                                  

                                                    
                        
                                                      

                                  
             


                                                         


                                                   
                                           
                                                      
                                          
                                           


                        
import React from 'react';
import { RouteComponentProps } from 'react-router-dom';

import CircularProgress from '@material-ui/core/CircularProgress';

import NotFoundPage from '../notfound/NotFoundPage';

import Bug from './Bug';
import { useGetBugQuery } from './BugQuery.generated';

type Props = RouteComponentProps<{
  id: string;
}>;

const BugQuery: React.FC<Props> = ({ match }: Props) => {
  const { loading, error, data } = useGetBugQuery({
    variables: { id: match.params.id },
  });
  if (loading) return <CircularProgress />;
  if (!data?.repository?.bug) return <NotFoundPage />;
  if (error) return <p>Error: {error}</p>;
  return <Bug bug={data.repository.bug} />;
};

export default BugQuery;