1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/lib/app.js

71 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-10-05 23:52:50 +00:00
import React, { Component, PropTypes } from 'react'
2016-10-14 15:05:08 +00:00
import { AppContainer } from 'react-hot-loader'
import shallowEquals from './shallow-equals'
2016-10-05 23:52:50 +00:00
const ErrorDebug = process.env.NODE_ENV === 'production'
? null : require('./error-debug').default
2016-10-05 23:52:50 +00:00
export default class App extends Component {
static childContextTypes = {
headManager: PropTypes.object
}
getChildContext () {
const { headManager } = this.props
return { headManager }
2016-10-05 23:52:50 +00:00
}
render () {
const { Component, props, hash, err, router } = this.props
const url = createUrl(router)
const containerProps = { Component, props, hash, router, url }
2016-10-05 23:52:50 +00:00
return <div>
<Container {...containerProps} />
{ErrorDebug && err ? <ErrorDebug error={err} /> : null}
</div>
2016-10-05 23:52:50 +00:00
}
}
2016-10-05 23:52:50 +00:00
class Container extends Component {
componentDidMount () {
this.scrollToHash()
}
componentDidUpdate () {
this.scrollToHash()
}
scrollToHash () {
const { hash } = this.props
const el = document.getElementById(hash)
if (el) {
// If we call scrollIntoView() in here without a setTimeout
// it won't scroll properly.
setTimeout(() => el.scrollIntoView(), 0)
}
}
shouldComponentUpdate (nextProps) {
// need this check not to rerender component which has already thrown an error
return !shallowEquals(this.props, nextProps)
2016-10-05 23:52:50 +00:00
}
render () {
const { Component, props, url } = this.props
2016-10-14 15:05:08 +00:00
// includes AppContainer which bypasses shouldComponentUpdate method
// https://github.com/gaearon/react-hot-loader/issues/442
return <AppContainer errorReporter={ErrorDebug}>
<Component {...props} url={url} />
2016-10-14 15:05:08 +00:00
</AppContainer>
2016-10-05 23:52:50 +00:00
}
}
function createUrl (router) {
return {
2016-10-05 23:52:50 +00:00
query: router.query,
pathname: router.pathname
2016-10-05 23:52:50 +00:00
}
}