mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
c2036e1326
* Add minimal apollo example * Update apollo example README * Update apollo example demo link in README * Fix button styles * Fix show more button * Alias demo url * Include the data field on the Apollo store when hydrating * Revert * Include the data field on the Apollo store when hydrating per tpreusse's suggestion. * Add example to faq section in README * Sort by newest; Add active state to buttons * Make optimization suggestions * Use process.browser; inline props * Pass wrapped component's initial props into component heirarchy if they exist * Remove unnecessary sorting of array * Update Apollo example * Remove trailing comma * Update reduxRootKey * Remove unnecessary babelrc * Update with-apollo example - Remove use of deprecated 'reduxRootKey' option - Add loading indicator inside pagination button * Fix with-apollo example pagination; Pass initialState to ApolloClient * Split apollo example into two (one with and without Redux integration) * Rename createClient private function to _initClient * Set initialState default parameter inside initClient function * Remove redux dep from with-apollo example
111 lines
2.8 KiB
JavaScript
111 lines
2.8 KiB
JavaScript
import { gql, graphql } from 'react-apollo'
|
|
import PostUpvoter from './PostUpvoter'
|
|
|
|
const POSTS_PER_PAGE = 10
|
|
|
|
function PostList ({ data: { allPosts, loading, _allPostsMeta }, loadMorePosts }) {
|
|
if (allPosts && allPosts.length) {
|
|
const areMorePosts = allPosts.length < _allPostsMeta.count
|
|
return (
|
|
<section>
|
|
<ul>
|
|
{allPosts.map((post, index) =>
|
|
<li key={post.id}>
|
|
<div>
|
|
<span>{index + 1}. </span>
|
|
<a href={post.url}>{post.title}</a>
|
|
<PostUpvoter id={post.id} votes={post.votes} />
|
|
</div>
|
|
</li>
|
|
)}
|
|
</ul>
|
|
{areMorePosts ? <button onClick={() => loadMorePosts()}> {loading ? 'Loading...' : 'Show More'} </button> : ''}
|
|
<style jsx>{`
|
|
section {
|
|
padding-bottom: 20px;
|
|
}
|
|
li {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
div {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
a {
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
text-decoration: none;
|
|
padding-bottom: 0;
|
|
border: 0;
|
|
}
|
|
span {
|
|
font-size: 14px;
|
|
margin-right: 5px;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
button:before {
|
|
align-self: center;
|
|
border-style: solid;
|
|
border-width: 6px 4px 0 4px;
|
|
border-color: #ffffff transparent transparent transparent;
|
|
content: "";
|
|
height: 0;
|
|
margin-right: 5px;
|
|
width: 0;
|
|
}
|
|
`}</style>
|
|
</section>
|
|
)
|
|
}
|
|
return <div>Loading</div>
|
|
}
|
|
|
|
const allPosts = gql`
|
|
query allPosts($first: Int!, $skip: Int!) {
|
|
allPosts(orderBy: createdAt_DESC, first: $first, skip: $skip) {
|
|
id
|
|
title
|
|
votes
|
|
url
|
|
createdAt
|
|
},
|
|
_allPostsMeta {
|
|
count
|
|
}
|
|
}
|
|
`
|
|
|
|
// The `graphql` wrapper executes a GraphQL query and makes the results
|
|
// available on the `data` prop of the wrapped component (PostList)
|
|
export default graphql(allPosts, {
|
|
options: {
|
|
variables: {
|
|
skip: 0,
|
|
first: POSTS_PER_PAGE
|
|
}
|
|
},
|
|
props: ({ data }) => ({
|
|
data,
|
|
loadMorePosts: () => {
|
|
return data.fetchMore({
|
|
variables: {
|
|
skip: data.allPosts.length
|
|
},
|
|
updateQuery: (previousResult, { fetchMoreResult }) => {
|
|
if (!fetchMoreResult) {
|
|
return previousResult
|
|
}
|
|
return Object.assign({}, previousResult, {
|
|
// Append the new posts results to the old one
|
|
allPosts: [...previousResult.allPosts, ...fetchMoreResult.allPosts]
|
|
})
|
|
}
|
|
})
|
|
}
|
|
})
|
|
})(PostList)
|