2018-12-10 15:50:35 +00:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
import { graphql } from 'react-relay'
|
|
|
|
import withData from '../lib/withData'
|
|
|
|
import BlogPosts from '../components/BlogPosts'
|
|
|
|
|
|
|
|
class Index extends Component {
|
|
|
|
static displayName = `Index`
|
|
|
|
|
|
|
|
static async getInitialProps (context) {
|
|
|
|
let { after, before, first, last } = context.query
|
|
|
|
|
|
|
|
if (last === undefined) {
|
|
|
|
first = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2019-01-31 09:38:20 +00:00
|
|
|
relayVariables: {
|
|
|
|
after,
|
|
|
|
before,
|
|
|
|
first: parseInt(first, 10),
|
|
|
|
last: parseInt(last, 10)
|
|
|
|
}
|
2018-12-10 15:50:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render (props) {
|
|
|
|
return (
|
|
|
|
<div>
|
2018-12-17 16:34:32 +00:00
|
|
|
<BlogPosts
|
|
|
|
viewer={this.props.viewer}
|
|
|
|
relayVariables={this.props.relayVariables}
|
|
|
|
/>
|
2018-12-10 15:50:35 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withData(Index, {
|
|
|
|
query: graphql`
|
2018-12-17 16:34:32 +00:00
|
|
|
query pages_indexQuery(
|
|
|
|
$after: String
|
|
|
|
$before: String
|
|
|
|
$first: Int
|
|
|
|
$last: Int
|
|
|
|
) {
|
2018-12-10 15:50:35 +00:00
|
|
|
viewer(after: $after, before: $before, first: $first, last: $last) {
|
|
|
|
...BlogPosts_viewer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
})
|