aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/SetTitle.js
blob: b6bb8b70a6eaaed779bb4db4318c7c4c49a9098c (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
import { withStyles } from '@material-ui/core/styles'
import gql from 'graphql-tag'
import React from 'react'
import Author from '../Author'
import Date from '../Date'

const styles = theme => ({
  main: {
    ...theme.typography.body2
  },
  bold: {
    fontWeight: 'bold'
  }
})

const SetTitle = ({op, classes}) => {
  return (
    <div className={classes.main}>
      <Author author={op.author} bold />
      <span> changed the title from </span>
      <span className={classes.bold}>{op.was}</span>
      <span> to </span>
      <span className={classes.bold}>{op.title}</span>
      <Date date={op.date} />
    </div>
  )
}

SetTitle.fragment = gql`
  fragment SetTitle on Operation {
    ... on SetTitleOperation {
      date
      author {
        name
        email
      }
      title
      was
    }
  }
`

export default withStyles(styles)(SetTitle)