aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/Timeline.js
diff options
context:
space:
mode:
authorludovicm67 <ludovicmuller1@gmail.com>2020-02-12 23:09:45 +0100
committerludovicm67 <ludovicmuller1@gmail.com>2020-02-12 23:09:45 +0100
commitd0a6da286a28e79ae3bb75af41219c4cc4df20b0 (patch)
treec02a2641c78331a45af4623613136f4cdc51af17 /webui/src/bug/Timeline.js
parentc2d18b3a9bec9933d2845ce3cfc6dd5b4f3ff348 (diff)
downloadgit-bug-d0a6da286a28e79ae3bb75af41219c4cc4df20b0.tar.gz
webui: finish TypeScript conversion
Diffstat (limited to 'webui/src/bug/Timeline.js')
-rw-r--r--webui/src/bug/Timeline.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/webui/src/bug/Timeline.js b/webui/src/bug/Timeline.js
deleted file mode 100644
index aeef7d2b..00000000
--- a/webui/src/bug/Timeline.js
+++ /dev/null
@@ -1,44 +0,0 @@
-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(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;