-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app.js
31 lines (30 loc) · 887 Bytes
/
_app.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
import React from 'react'
import App from 'next/app'
import { Provider } from 'mobx-react';
import initializeStore from '../stores/';
export default class MyApp extends App {
static async getInitialProps(appContext) {
const mobxStore = initializeStore();
appContext.ctx.mobxStore = mobxStore;
const appProps = await App.getInitialProps(appContext);
appProps.pageProps.lang = 'en'
console.log(appProps)
return {
...appProps,
initialMobxState: mobxStore,
};
}
constructor(props) {
super(props);
const isServer = typeof window === 'undefined';
this.mobxStore = isServer ? props.initialMobxState : initializeStore(props.initialMobxState);
}
render() {
const { Component, pageProps } = this.props
return (
<Provider store={this.mobxStore}>
<Component {...pageProps} />
</Provider>
)
}
}