aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/Timeline.js
blob: d77e0d4b554847d21fddb7b9cac54485a1202b96 (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
import { makeStyles } from '@material-ui/styles';
import React from 'react';
import LabelChange from './LabelChange';
import Message from './Message';
import SetStatus from './SetStatus';
import SetTitle from './SetTitle';

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

const componentMap = {
  CreateTimelineItem: Message,
  AddCommentTimelineItem: Message,
  LabelChangeTimelineItem: LabelChange,
  SetTitleTimelineItem: SetTitle,
  SetStatusTimelineItem: SetStatus,
};

function Timeline({ ops }) {
  const classes = useStyles();

  return (
    <div className={classes.main}>
      {ops.map((op, index) => {
        const Component = componentMap[op.__typename];

        if (!Component) {
          console.warn('unsupported operation type ' + op.__typename);
          return null;
        }

        return <Component key={index} op={op} />;
      })}
    </div>
  );
}

export default Timeline;