aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/bug/Timeline.js
blob: f59907112597f1abde3b7e418d19face5cadc7f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                      



                               



                       

                                        

               
                          
                 
    

            
                                        


                                    
                                 
                                  
                                      
                                                     
                                          
                                                     
                                           
                                                         
                                        
                                                      
                                         
                                                       

                    

                                                                         


            
      


   
                                            
import { withStyles } from '@material-ui/core/styles';
import React from 'react';
import LabelChange from './LabelChange';
import Message from './Message';
import SetStatus from './SetStatus';
import SetTitle from './SetTitle';

const styles = theme => ({
  main: {
    '& > *:not(:last-child)': {
      marginBottom: 10,
    },
  },
});

class Timeline extends React.Component {
  props: {
    ops: Array,
    fetchMore: any => any,
    classes: any,
  };

  render() {
    const { ops, classes } = this.props;

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

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

export default withStyles(styles)(Timeline);