aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/Timeline.tsx
blob: 60459a532505375c8d8a50a6b8e84dbc165beb39 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import React from 'react';

import { makeStyles } from '@material-ui/core/styles';

import { BugFragment } from './Bug.generated';
import LabelChange from './LabelChange';
import Message from './Message';
import SetStatus from './SetStatus';
import SetTitle from './SetTitle';
import { TimelineItemFragment } from './TimelineQuery.generated';

const useStyles = makeStyles((theme) => ({
  main: {
    '& > *:not(:last-child)': {
      marginBottom: theme.spacing(2),
    },
  },
}));

type Props = {
  ops: Array<TimelineItemFragment>;
  bug: BugFragment;
};

function Timeline({ bug, ops }: Props) {
  const classes = useStyles();

  return (
    <div className={classes.main}>
      {ops.map((op, index) => {
        switch (op.__typename) {
          case 'CreateTimelineItem':
            return <Message key={index} op={op} bug={bug} />;
          case 'AddCommentTimelineItem':
            return <Message key={index} op={op} bug={bug} />;
          case 'LabelChangeTimelineItem':
            return <LabelChange key={index} op={op} />;
          case 'SetTitleTimelineItem':
            return <SetTitle key={index} op={op} />;
          case 'SetStatusTimelineItem':
            return <SetStatus key={index} op={op} />;
        }

        console.warn('unsupported operation type ' + op.__typename);
        return null;
      })}
    </div>
  );
}

export default Timeline;