blob: 76350ec5bec29723606da5a87045e4f861d1b5f3 (
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
|
import CircularProgress from '@material-ui/core/CircularProgress'
import { withStyles } from '@material-ui/core/styles'
import Table from '@material-ui/core/Table/Table'
import TableBody from '@material-ui/core/TableBody/TableBody'
import gql from 'graphql-tag'
import React from 'react'
import { Query } from 'react-apollo'
import BugSummary from './BugSummary'
const QUERY = gql`
{
defaultRepository {
bugs: allBugs(first: 10) {
edges {
cursor
node {
...BugSummary
}
}
}
}
}
${BugSummary.fragment}
`
const styles = theme => ({
main: {
maxWidth: 600,
margin: 'auto',
marginTop: theme.spacing.unit * 4
}
})
const List = withStyles(styles)(({bugs, classes}) => (
<main className={classes.main}>
<Table className={classes.table}>
<TableBody>
{bugs.edges.map(({ cursor, node }) => (
<BugSummary bug={node} key={cursor} />
))}
</TableBody>
</Table>
</main>
))
const ListPage = () => (
<Query query={QUERY}>
{({loading, error, data}) => {
if (loading) return <CircularProgress/>
if (error) return <p>Error.</p>
return <List bugs={data.defaultRepository.bugs}/>
}}
</Query>
)
export default ListPage
|