mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
5ebb943c84
* [example] with-apollo-and-redux-saga - Using Apollo to get GraphQL Data? Dope. - Using Redux Saga to do other stuff outside of that? Cool. - Nary the two shall meet? Most likely. 😀️ This is a breakout of #3463 where we were combining Apollo and Redux. This may not be an example that gets a PR. Why? Well, the examples are meant to pick and choose and combine yourself. At least I believe, and this is basically a combination of two examples (`with-apollo` and `with-redux-saga`) with some reworking. **pages/**: `index`: withReduxSaga() `about`: () `blog/index`: withReduxSaga(withApollo()) `blog/entry`: withApollo() * [refactor] fix lint (again), remove superfluous calls * [fix] package.json: with-apollo-and-redux-saga Updated the `name` and made sure `es6-promise` was in dependencies * [refactor] remove semi-colons in clock/sagas * [refactor] remove old migration code
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
import React from 'react'
|
|
import { withRouter } from 'next/router'
|
|
import { graphql } from 'react-apollo'
|
|
import gql from 'graphql-tag'
|
|
import ErrorMessage from './ErrorMessage'
|
|
import PostVoteUp from './PostVoteUp'
|
|
import PostVoteDown from './PostVoteDown'
|
|
import PostVoteCount from './PostVoteCount'
|
|
|
|
function Post ({ id, data: { error, Post } }) {
|
|
if (error) return <ErrorMessage message='Error loading blog post.' />
|
|
if (Post) {
|
|
return (
|
|
<section>
|
|
<div key={Post.id}>
|
|
<h1>{Post.title}</h1>
|
|
<p>ID: {Post.id}<br />URL: {Post.url}</p>
|
|
<span>
|
|
<PostVoteUp id={Post.id} votes={Post.votes} />
|
|
<PostVoteCount votes={Post.votes} />
|
|
<PostVoteDown id={Post.id} votes={Post.votes} />
|
|
</span>
|
|
</div>
|
|
<style jsx>{`
|
|
span {
|
|
display: flex;
|
|
font-size: 14px;
|
|
margin-right: 5px;
|
|
}
|
|
`}</style>
|
|
</section>
|
|
)
|
|
}
|
|
return <div>Loading</div>
|
|
}
|
|
|
|
const post = gql`
|
|
query post($id: ID!) {
|
|
Post(id: $id) {
|
|
id
|
|
title
|
|
votes
|
|
url
|
|
createdAt
|
|
}
|
|
}
|
|
`
|
|
|
|
// The `graphql` wrapper executes a GraphQL query and makes the results
|
|
// available on the `data` prop of the wrapped component (PostList)
|
|
const ComponentWithMutation = graphql(post, {
|
|
options: ({ router: { query } }) => ({
|
|
variables: {
|
|
id: query.id
|
|
}
|
|
}),
|
|
props: ({ data }) => ({
|
|
data
|
|
})
|
|
})(Post)
|
|
|
|
export default withRouter(ComponentWithMutation)
|