blob: 7d6bccf336dd241fba1c04422d2d8ad6751550ab (
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
|
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,
},
});
const SetStatus = ({ op, classes }) => {
return (
<div className={classes.main}>
<Author author={op.author} bold />
<span> {op.status.toLowerCase()} this</span>
<Date date={op.date} />
</div>
);
};
SetStatus.fragment = gql`
fragment SetStatus on Operation {
... on SetStatusOperation {
date
author {
name
email
}
status
}
}
`;
export default withStyles(styles)(SetStatus);
|