mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4a0278b5c0
* Apollo + Authentication + graph.cool example * Fix linting errors
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import { ApolloClient, createNetworkInterface } from 'react-apollo'
|
|
import fetch from 'isomorphic-fetch'
|
|
|
|
let apolloClient = null
|
|
|
|
// Polyfill fetch() on the server (used by apollo-client)
|
|
if (!process.browser) {
|
|
global.fetch = fetch
|
|
}
|
|
|
|
function create (initialState, { getToken }) {
|
|
const networkInterface = createNetworkInterface({
|
|
uri: 'https://api.graph.cool/simple/v1/cj3h80ffbllm20162alevpcby'
|
|
})
|
|
|
|
networkInterface.use([{
|
|
applyMiddleware (req, next) {
|
|
if (!req.options.headers) {
|
|
req.options.headers = {} // Create the header object if needed.
|
|
}
|
|
const token = getToken()
|
|
req.options.headers.authorization = token ? `Bearer ${token}` : null
|
|
next()
|
|
}
|
|
}])
|
|
|
|
return new ApolloClient({
|
|
initialState,
|
|
ssrMode: !process.browser, // Disables forceFetch on the server (so queries are only run once)
|
|
networkInterface
|
|
})
|
|
}
|
|
|
|
export default function initApollo (initialState, options) {
|
|
// Make sure to create a new client for every server-side request so that data
|
|
// isn't shared between connections (which would be bad)
|
|
if (!process.browser) {
|
|
return create(initialState, options)
|
|
}
|
|
|
|
// Reuse client on the client-side
|
|
if (!apolloClient) {
|
|
apolloClient = create(initialState, options)
|
|
}
|
|
|
|
return apolloClient
|
|
}
|