2017-12-27 18:57:57 +00:00
|
|
|
import { ApolloClient } from 'apollo-client'
|
|
|
|
import { HttpLink } from 'apollo-link-http'
|
|
|
|
import { InMemoryCache } from 'apollo-cache-inmemory'
|
2017-11-04 14:05:16 +00:00
|
|
|
import fetch from 'isomorphic-unfetch'
|
2017-05-10 22:23:11 +00:00
|
|
|
|
|
|
|
let apolloClient = null
|
|
|
|
|
|
|
|
// Polyfill fetch() on the server (used by apollo-client)
|
|
|
|
if (!process.browser) {
|
|
|
|
global.fetch = fetch
|
|
|
|
}
|
|
|
|
|
2017-12-27 18:57:57 +00:00
|
|
|
function create(initialState) {
|
2017-05-10 22:23:11 +00:00
|
|
|
return new ApolloClient({
|
2017-12-27 18:57:57 +00:00
|
|
|
connectToDevTools: process.browser,
|
2017-05-10 22:23:11 +00:00
|
|
|
ssrMode: !process.browser, // Disables forceFetch on the server (so queries are only run once)
|
2017-12-27 18:57:57 +00:00
|
|
|
link: new HttpLink({
|
2017-05-10 22:23:11 +00:00
|
|
|
uri: 'https://api.graph.cool/simple/v1/cixmkt2ul01q00122mksg82pn', // Server URL (must be absolute)
|
2017-12-27 18:57:57 +00:00
|
|
|
credentials: 'same-origin' // Additional fetch() options like `credentials` or `headers`
|
|
|
|
}),
|
|
|
|
cache: new InMemoryCache().restore(initialState || {})
|
2017-05-10 22:23:11 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-27 18:57:57 +00:00
|
|
|
export default function initApollo(initialState) {
|
2017-05-10 22:23:11 +00:00
|
|
|
// 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) {
|
2017-12-27 18:57:57 +00:00
|
|
|
return create(initialState)
|
2017-05-10 22:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reuse client on the client-side
|
|
|
|
if (!apolloClient) {
|
2017-12-27 18:57:57 +00:00
|
|
|
apolloClient = create(initialState)
|
2017-05-10 22:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return apolloClient
|
|
|
|
}
|