2017-01-31 03:26:17 +00:00
|
|
|
import evalScript from '../lib/eval-script'
|
2017-04-01 21:03:40 +00:00
|
|
|
import ReactReconciler from 'react-dom/lib/ReactReconciler'
|
2017-01-31 03:26:17 +00:00
|
|
|
|
|
|
|
const { __NEXT_DATA__: { errorComponent } } = window
|
|
|
|
const ErrorComponent = evalScript(errorComponent).default
|
2016-10-14 15:05:08 +00:00
|
|
|
|
2017-01-06 15:23:54 +00:00
|
|
|
require('react-hot-loader/patch')
|
|
|
|
|
2017-01-12 01:58:20 +00:00
|
|
|
const next = window.next = require('./')
|
|
|
|
|
2017-04-01 21:03:40 +00:00
|
|
|
const emitter = next.default()
|
|
|
|
|
|
|
|
// This is a patch to catch most of the errors throw inside React components.
|
|
|
|
const originalMountComponent = ReactReconciler.mountComponent
|
|
|
|
ReactReconciler.mountComponent = function (...args) {
|
|
|
|
try {
|
|
|
|
return originalMountComponent(...args)
|
|
|
|
} catch (err) {
|
|
|
|
next.renderError(err)
|
|
|
|
err.abort = true
|
|
|
|
throw err
|
|
|
|
}
|
2017-01-12 01:58:20 +00:00
|
|
|
}
|
2017-01-31 03:26:17 +00:00
|
|
|
|
|
|
|
let lastScroll
|
|
|
|
|
|
|
|
emitter.on('before-reactdom-render', ({ Component }) => {
|
|
|
|
// Remember scroll when ErrorComponent is being rendered to later restore it
|
|
|
|
if (!lastScroll && Component === ErrorComponent) {
|
|
|
|
const { pageXOffset, pageYOffset } = window
|
|
|
|
lastScroll = {
|
|
|
|
x: pageXOffset,
|
|
|
|
y: pageYOffset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
emitter.on('after-reactdom-render', ({ Component }) => {
|
|
|
|
if (lastScroll && Component !== ErrorComponent) {
|
|
|
|
// Restore scroll after ErrorComponent was replaced with a page component by HMR
|
|
|
|
const { x, y } = lastScroll
|
|
|
|
window.scroll(x, y)
|
|
|
|
lastScroll = null
|
|
|
|
}
|
|
|
|
})
|