Skip to content

Instantly share code, notes, and snippets.

@janicduplessis
Last active August 29, 2016 04:10
Show Gist options
  • Save janicduplessis/9a6cb74708235fc3c261ae21aa4dd188 to your computer and use it in GitHub Desktop.
Save janicduplessis/9a6cb74708235fc3c261ae21aa4dd188 to your computer and use it in GitHub Desktop.
// @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