aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/Bug.js
blob: ff57dfa91c9b5766931f3224eebe38aabb3d5659 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { makeStyles } from '@material-ui/styles';
import Typography from '@material-ui/core/Typography/Typography';
import gql from 'graphql-tag';
import React from 'react';
import Author from '../Author';
import Date from '../Date';
import TimelineQuery from './TimelineQuery';
import Label from '../Label';

const useStyles = makeStyles(theme => ({
  main: {
    maxWidth: 800,
    margin: 'auto',
    marginTop: theme.spacing.unit * 4,
  },
  header: {
    marginLeft: theme.spacing.unit + 40,
  },
  title: {
    ...theme.typography.headline,
  },
  id: {
    ...theme.typography.subheading,
    marginLeft: theme.spacing.unit,
  },
  container: {
    display: 'flex',
    marginBottom: theme.spacing.unit,
  },
  timeline: {
    flex: 1,
    marginTop: theme.spacing.unit * 2,
    marginRight: theme.spacing.unit * 2,
  },
  sidebar: {
    marginTop: theme.spacing.unit * 2,
    flex: '0 0 200px',
  },
  labelList: {
    listStyle: 'none',
    padding: 0,
    margin: 0,
  },
  label: {
    marginTop: theme.spacing.unit,
    marginBottom: theme.spacing.unit,
    '& > *': {
      display: 'block',
    },
  },
}));

function Bug({ bug }) {
  const classes = useStyles();
  return (
    <main className={classes.main}>
      <div className={classes.header}>
        <span className={classes.title}>{bug.title}</span>
        <span className={classes.id}>{bug.humanId}</span>

        <Typography color={'textSecondary'}>
          <Author author={bug.author} />
          {' opened this bug '}
          <Date date={bug.createdAt} />
        </Typography>
      </div>

      <div className={classes.container}>
        <div className={classes.timeline}>
          <TimelineQuery id={bug.id} />
        </div>
        <div className={classes.sidebar}>
          <Typography variant={'subheading'}>Labels</Typography>
          <ul className={classes.labelList}>
            {bug.labels.map(l => (
              <li className={classes.label}>
                <Label label={l} key={l.name} />
              </li>
            ))}
          </ul>
        </div>
      </div>
    </main>
  );
}

Bug.fragment = gql`
  fragment Bug on Bug {
    id
    humanId
    status
    title
    labels {
      ...Label
    }
    createdAt
    ...authored
  }
  ${Label.fragment}
  ${Author.fragment}
`;

export default Bug;