mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
15bb1c5e79
- Replaces taskr-babel with taskr-typescript for the `next` package - Makes sure Node 8+ is used, no unneeded transpilation - Compile Next.js client side files through babel the same way pages are - Compile Next.js client side files to esmodules, not commonjs, so that tree shaking works. - Move error-debug.js out of next-server as it's only used/require in development - Drop ansi-html as dependency from next-server - Make next/link esmodule (for tree-shaking) - Make next/router esmodule (for tree-shaking) - add typescript compilation to next-server - Remove last remains of Flow - Move hoist-non-react-statics to next, out of next-server - Move htmlescape to next, out of next-server - Remove runtime-corejs2 from next-server
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
/* global location */
|
|
|
|
import Router from 'next/router'
|
|
import fetch from 'unfetch'
|
|
|
|
export default ({assetPrefix}) => {
|
|
Router.ready(() => {
|
|
Router.events.on('routeChangeComplete', ping)
|
|
})
|
|
|
|
async function ping () {
|
|
try {
|
|
const url = `${assetPrefix || ''}/_next/on-demand-entries-ping?page=${Router.pathname}`
|
|
const res = await fetch(url, {
|
|
credentials: 'same-origin'
|
|
})
|
|
const payload = await res.json()
|
|
if (payload.invalid) {
|
|
// Payload can be invalid even if the page is not exists.
|
|
// So, we need to make sure it's exists before reloading.
|
|
const pageRes = await fetch(location.href, {
|
|
credentials: 'same-origin'
|
|
})
|
|
if (pageRes.status === 200) {
|
|
location.reload()
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.error(`Error with on-demand-entries-ping: ${err.message}`)
|
|
}
|
|
}
|
|
|
|
let pingerTimeout
|
|
async function runPinger () {
|
|
// Will restart on the visibilitychange API below. For older browsers, this
|
|
// will always be true and will always run, but support is fairly prevalent
|
|
// at this point.
|
|
while (!document.hidden) {
|
|
await ping()
|
|
await new Promise((resolve) => {
|
|
pingerTimeout = setTimeout(resolve, 5000)
|
|
})
|
|
}
|
|
}
|
|
|
|
document.addEventListener('visibilitychange', () => {
|
|
if (!document.hidden) {
|
|
runPinger()
|
|
} else {
|
|
clearTimeout(pingerTimeout)
|
|
}
|
|
}, false)
|
|
|
|
setTimeout(() => {
|
|
runPinger()
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
}, 10000)
|
|
}
|