aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Bug.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/Bug.js')
-rw-r--r--webui/src/Bug.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/webui/src/Bug.js b/webui/src/Bug.js
new file mode 100644
index 00000000..28558a13
--- /dev/null
+++ b/webui/src/Bug.js
@@ -0,0 +1,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);