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
|
import { withStyles } from '@material-ui/core/styles';
import Paper from '@material-ui/core/Paper';
import gql from 'graphql-tag';
import React from 'react';
import Author from '../Author';
import { Avatar } from '../Author';
import Date from '../Date';
const styles = theme => ({
author: {
fontWeight: 'bold',
},
container: {
display: 'flex',
},
avatar: {
marginTop: 2,
},
bubble: {
flex: 1,
marginLeft: theme.spacing.unit,
},
header: {
...theme.typography.body2,
color: '#444',
padding: '0.5rem 1rem',
borderBottom: '1px solid #ddd',
display: 'flex',
},
title: {
flex: 1,
},
tag: {
...theme.typography.button,
color: '#888',
border: '#ddd solid 1px',
padding: '0 0.5rem',
fontSize: '0.75rem',
borderRadius: 2,
marginLeft: '0.5rem',
},
body: {
...theme.typography.body1,
padding: '1rem',
whiteSpace: 'pre-wrap',
},
});
const Message = ({ op, classes }) => (
<article className={classes.container}>
<Avatar author={op.author} className={classes.avatar} />
<Paper elevation={1} className={classes.bubble}>
<header className={classes.header}>
<div className={classes.title}>
<Author className={classes.author} author={op.author} />
<span> commented </span>
<Date date={op.createdAt} />
</div>
{op.edited && <div className={classes.tag}>Edited</div>}
</header>
<section className={classes.body}>{op.message}</section>
</Paper>
</article>
);
Message.createFragment = gql`
fragment Create on TimelineItem {
... on CreateTimelineItem {
createdAt
author {
name
email
displayName
avatarUrl
}
edited
message
}
}
`;
Message.commentFragment = gql`
fragment AddComment on TimelineItem {
... on AddCommentTimelineItem {
createdAt
author {
name
email
displayName
avatarUrl
}
edited
message
}
}
`;
export default withStyles(styles)(Message);
|