aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Bug.js
blob: 28558a1388056356725873d73683ef6dcb915791 (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
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);