Last active
August 29, 2016 04:10
-
-
Save janicduplessis/9a6cb74708235fc3c261ae21aa4dd188 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import Relay from 'react-relay'; | |
import Storage from './utils/Storage'; | |
const TOKEN_KEY = 'TW_USER_TOKEN'; | |
let _token = Storage.getItem(TOKEN_KEY, null); | |
export const updateToken = (token: string) => { | |
_token = token; | |
Storage.setItem(TOKEN_KEY, token); | |
}; | |
export class RelayNetworkLayer extends Relay.DefaultNetworkLayer { | |
constructor() { | |
const graphqlURL = 'http://localhost:8888/dev/graphql'; | |
super(graphqlURL, { | |
get headers() { | |
if (_token) { | |
return { Authorization: `JWT ${_token}` }; | |
} | |
return undefined; | |
}, | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment