-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.js
90 lines (77 loc) · 2.02 KB
/
setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import {compose, createStore, combineReducers, applyMiddleware} from 'redux';
import {routerReducer, routerMiddleware} from 'react-router-redux';
import createBrowserHistory from 'history/createBrowserHistory';
import {persistStore, autoRehydrate} from 'redux-persist';
import {reducer as formReducer} from 'redux-form';
import injectTapEventPlugin from 'react-tap-event-plugin';
import ApolloClient, {createNetworkInterface} from 'apollo-client';
// import ReactDeviseMaterialUI from 'react-devise-material-ui';
import {initReactDevise, addAuthorizationHeaderToRequest} from 'react-devise';
import reactDeviseReducers from 'react-devise/lib/reducers';
import {Alert, UnstyledList, ViewHeading} from '../shared';
import styled, {injectGlobal} from 'styled-components';
// eslint-disable-next-line no-unused-expressions
injectGlobal`
body {
fontFamily: Roboto, sans-serif;
margin: 0;
}
`;
injectTapEventPlugin();
const networkInterface = createNetworkInterface({
uri: '/graphql'
});
networkInterface.use([{
applyMiddleware: addAuthorizationHeaderToRequest
}]);
const apolloClient = new ApolloClient({
networkInterface: networkInterface
});
const history = createBrowserHistory();
let store;
const initStore = ({onRehydrationComplete}) => {
store = createStore(
combineReducers({
...reactDeviseReducers,
form: formReducer,
router: routerReducer,
apollo: apolloClient.reducer()
}),
{},
compose(
applyMiddleware(
routerMiddleware(history),
apolloClient.middleware()
),
autoRehydrate()
)
);
persistStore(store, {
blacklist: [
'form'
]
}, onRehydrationComplete);
return store;
};
const AuthAlert = styled(Alert)`
margin-top: 10px;
`;
initReactDevise({
viewPlugins: [
// ReactDeviseMaterialUI.plugin(),
{
Alert: AuthAlert,
AuthLinksList: UnstyledList,
Heading: ViewHeading
}
],
messages: {
loginFailed: 'Whoa there. Bad login!'
}
});
export {
initStore,
store,
history,
apolloClient
};