blob: 0c4100ec55aea08c8094d2e3646ce40721dbd449 (
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 React from 'react'
import Message from './Message'
const styles = theme => ({
main: {
'& > *:not(:last-child)': {
marginBottom: 10
}
}
})
class Timeline extends React.Component {
props: {
ops: Array,
fetchMore: (any) => any,
classes: any,
}
render() {
const {ops, classes} = this.props
return (
<div className={classes.main}>
{ ops.map((op, index) => {
switch (op.__typename) {
case 'CreateOperation':
return <Message key={index} message={op}/>
case 'AddCommentOperation':
return <Message key={index} message={op}/>
default:
console.log('unsupported operation type ' + op.__typename)
return null
}
})}
</div>
)
}
}
export default withStyles(styles)(Timeline)
|