aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/TimelineQuery.tsx
blob: 9c4cf183c508be5ef0df61eb3d420463efde55d7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                                  
                          
 
                                  
                                                             
 





                                                     







                                           






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

import Timeline from './Timeline';
import { useTimelineQuery } from './TimelineQuery.generated';

type Props = {
  id: string;
};

const TimelineQuery = ({ id }: Props) => {
  const { loading, error, data } = useTimelineQuery({
    variables: {
      id,
      first: 100,
    },
  });

  if (loading) return <CircularProgress />;
  if (error) return <p>Error: {error}</p>;

  const nodes = data?.repository?.bug?.timeline.nodes;
  if (!nodes) {
    return null;
  }

  return <Timeline ops={nodes} />;
};

export default TimelineQuery;