mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9f08e48d72
RE: https://github.com/zeit/next.js/issues/4587, this pull request improves the with-segment example. Previously, only SSR page loads were tracked. This pull request adds manual page view logging via `Router.events.on('routeChangeComplete')` in `Page.js`. There is also a minor bug fix on the textarea to remove a console error.
28 lines
558 B
JavaScript
28 lines
558 B
JavaScript
import React from 'react'
|
|
import Page from '../components/Page'
|
|
import App, { Container } from 'next/app'
|
|
|
|
export default class MyApp extends App {
|
|
static async getInitialProps ({ Component, router, ctx }) {
|
|
let pageProps = {}
|
|
|
|
if (Component.getInitialProps) {
|
|
pageProps = await Component.getInitialProps(ctx)
|
|
}
|
|
|
|
return { pageProps }
|
|
}
|
|
|
|
render () {
|
|
const { Component, pageProps } = this.props
|
|
|
|
return (
|
|
<Container>
|
|
<Page>
|
|
<Component {...pageProps} />
|
|
</Page>
|
|
</Container>
|
|
)
|
|
}
|
|
}
|