aboutsummaryrefslogblamecommitdiffstats
path: root/webui/src/Bug.js
blob: 28558a1388056356725873d73683ef6dcb915791 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                          


                                                      

                                      





                                     


   
                                   
                                 
                            




                                               

  












                                       
import React from "react";
import gql from "graphql-tag";
import { withStyles } from "@material-ui/core/styles";

import Comment from "./Comment";
import BugSummary from "./BugSummary";

const styles = theme => ({
  main: {
    maxWidth: 600,
    margin: "auto",
    marginTop: theme.spacing.unit * 4
  }
});

const Bug = ({ bug, classes }) => (
  <main className={classes.main}>
    <BugSummary bug={bug} />

    {bug.comments.map((comment, index) => (
      <Comment key={index} comment={comment} />
    ))}
  </main>
);

Bug.fragment = gql`
  fragment Bug on Bug {
    ...BugSummary
    comments {
      ...Comment
    }
  }

  ${BugSummary.fragment}
  ${Comment.fragment}
`;

export default withStyles(styles)(Bug);