blob: d66c665b83b2f019fcbe8c58df781d3fd7e63ad3 (
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
24
25
26
27
28
29
30
31
32
|
import React from 'react';
import CircularProgress from '@material-ui/core/CircularProgress';
import { BugFragment } from './Bug.generated';
import Timeline from './Timeline';
import { useTimelineQuery } from './TimelineQuery.generated';
type Props = {
bug: BugFragment;
};
const TimelineQuery = ({ bug }: Props) => {
const { loading, error, data } = useTimelineQuery({
variables: {
id: bug.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} bug={bug} />;
};
export default TimelineQuery;
|