aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/TimelineQuery.js
blob: 0c9305b1f497f1cdb3990b6cedb891760be983ce (plain) (tree)
1
2
3
4
5
6
                                                                  
                          
                                  
 
                                                             
 
















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

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

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

  if (loading) return <CircularProgress />;
  if (error) return <p>Error: {error}</p>;
  return (
    <Timeline
      ops={data.defaultRepository.bug.timeline.nodes}
      fetchMore={fetchMore}
    />
  );
};

export default TimelineQuery;