aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/BugPage.js
blob: ec0872eb76252a40ba8bf10bbabadfd82aa27ff1 (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
import React from "react";
import { Query } from "react-apollo";
import gql from "graphql-tag";

import CircularProgress from "@material-ui/core/CircularProgress";

import Bug from "./Bug";

const QUERY = gql`
  query GetBug($id: BugID!) {
    bug(id: $id) {
      ...Bug
    }
  }

  ${Bug.fragment}
`;

const BugPage = ({ match }) => (
  <Query query={QUERY} variables={{ id: match.params.id }}>
    {({ loading, error, data }) => {
      if (loading) return <CircularProgress />;
      if (error) return <p>Error.</p>;
      return <Bug bug={data.bug} />;
    }}
  </Query>
);

export default BugPage;