mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
46b57a6eff
* [refactor] with-apollo-and-redux: 2.0.0 - This ports over `with-apollo` (w/ recent `withRouter` fix and addition for Post) along with implementing `apollo-cache-redux` #3463 - The `redux` side of things is lacking (it is the *same* as the original example) - Created a `routes.js` for use on Server and Client Side (to expand the PostList functionality) - SSR is maintained - Redid the "PostVote" a bit... sorry. 😬️ Possible todo(s): - Add in API and Clock Examples from `with-redux` to show Apollo and Redux working together a bit more - redux-saga (I personally use this, may be too opinionated for the base example though) Packages updated: - apollo-cache-redux - apollo-client-preset - graphql - graphql-anywhere - graphql-tag - isomorphic-unfetch - next-routes - prop-types - react - react-apollo - react-dom - redux * [refactor] fix linting issues When I run `yarn lint` explicitly these were caught, but not doing a build proper. Apologies on that! * [chore] 📦️ package.json: like other examples * [refactor] +apollo-cache-inmemory, -apollo-cache-redux Separation of Apollo and Redux. 😄️ We could stand to use a few actual examples of Redux, though this is a good starting block. Some other code cleanup as well.
100 lines
2.8 KiB
JavaScript
100 lines
2.8 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { ApolloProvider, getDataFromTree } from 'react-apollo'
|
|
import Head from 'next/head'
|
|
import initApollo from './initApollo'
|
|
import initRedux from './initRedux'
|
|
|
|
// Gets the display name of a JSX component for dev tools
|
|
function getComponentDisplayName(Component) {
|
|
return Component.displayName || Component.name || 'Unknown'
|
|
}
|
|
|
|
export default ComposedComponent => {
|
|
return class WithData extends React.Component {
|
|
static displayName = `WithData(${getComponentDisplayName(
|
|
ComposedComponent
|
|
)})`
|
|
static propTypes = {
|
|
stateApollo: PropTypes.object.isRequired
|
|
}
|
|
|
|
static async getInitialProps(ctx) {
|
|
// Initial stateApollo with apollo (empty)
|
|
let stateApollo = {
|
|
apollo: {
|
|
data: {}
|
|
}
|
|
}
|
|
// Initial stateRedux with apollo (empty)
|
|
let stateRedux = {}
|
|
|
|
// Evaluate the composed component's getInitialProps()
|
|
let composedInitialProps = {}
|
|
if (ComposedComponent.getInitialProps) {
|
|
composedInitialProps = await ComposedComponent.getInitialProps(ctx)
|
|
}
|
|
|
|
// Run all GraphQL queries in the component tree
|
|
// and extract the resulting data
|
|
if (!process.browser) {
|
|
const apollo = initApollo()
|
|
const redux = initRedux()
|
|
|
|
try {
|
|
// Run all GraphQL queries
|
|
await getDataFromTree(
|
|
<ApolloProvider client={apollo}>
|
|
<ComposedComponent {...composedInitialProps} />
|
|
</ApolloProvider>,
|
|
{
|
|
router: {
|
|
asPath: ctx.asPath,
|
|
pathname: ctx.pathname,
|
|
query: ctx.query
|
|
}
|
|
}
|
|
)
|
|
} catch (error) {
|
|
// Prevent Apollo Client GraphQL errors from crashing SSR.
|
|
// Handle them in components via the data.error prop:
|
|
// http://dev.apollodata.com/react/api-queries.html#graphql-query-data-error
|
|
}
|
|
// getDataFromTree does not call componentWillUnmount
|
|
// head side effect therefore need to be cleared manually
|
|
Head.rewind()
|
|
|
|
// Extract query data from the Redux store
|
|
stateRedux = redux.getState()
|
|
|
|
// Extract query data from the Apollo store
|
|
stateApollo = {
|
|
apollo: {
|
|
data: apollo.cache.extract()
|
|
}
|
|
}
|
|
}
|
|
|
|
return {
|
|
stateApollo,
|
|
stateRedux,
|
|
...composedInitialProps
|
|
}
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props)
|
|
this.apollo = initApollo(props.stateApollo.apollo.data)
|
|
this.redux = initRedux(props.stateRedux)
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ApolloProvider client={this.apollo}>
|
|
<ComposedComponent {...this.props} />
|
|
</ApolloProvider>
|
|
)
|
|
}
|
|
}
|
|
}
|