aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/TimelineQuery.js
blob: 886edab2911ffad769c0f011a0ce5b395637c5b4 (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.repository.bug.timeline.nodes} fetchMore={fetchMore} />
  );
};

export default TimelineQuery;