-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgatsby-browser.js
61 lines (53 loc) · 1.39 KB
/
gatsby-browser.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
// import React from 'react'
// import {Provider} from 'react-redux'
// import createStore from './src/createStore'
//
// const store = createStore()
//
// exports.wrapRootComponent = function wrapRootComponent({Root}) {
// return function wrapRootComponentComponent(props) {
// return (
// <Provider store={store}>
// <Root />
// </Provider>
// )
// }
// }
//
//
//
//
//
//
//
//
const React = require("react");
const { BrowserRouter } = require("react-router-dom");
const { Provider } = require("react-redux");
const Promise = require("promise-polyfill");
const createStore = require("./src/createStore").default();
exports.replaceComponentRenderer = ({ history }) => {
const store = createStore();
if (typeof Raven !== "undefined") {
Raven.config(
"https://[email protected]/1407848"
).install();
}
// for our IE11 users
if (!window.Promise) {
window.Promise = Promise;
}
const ConnectedRouterWrapper = ({ children }) => (
<Provider store={store}>
<BrowserRouter history={history}>{children}</BrowserRouter>
</Provider>
);
return ConnectedRouterWrapper;
};
exports.onRouteUpdate = function({ location }) {
// Don't track while developing.
if (process.env.NODE_ENV === `production` && typeof ga === `function`) {
ga(`set`, `page`, (location || {}).pathname);
ga(`send`, `pageview`);
}
};