mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
dec85fe6c4
* Introduce script tag based page loading system. * Call ensurePage only in the dev mode. * Implement router using the page-loader. * Fix a typo and remove unwanted code. * Fix some issues related to rendering. * Fix production tests. * Fix ondemand test cases. * Fix unit tests. * Get rid of eval completely. * Remove all the inline code. * Remove the json-pages plugin. * Rename NEXT_PAGE_LOADER into __NEXT_PAGE_LOADER__ * Rename NEXT_LOADED_PAGES into __NEXT_LOADED_PAGES__ * Remove some unwanted code. * Load everything async. * Remove lib/eval-script.js We no longer need it. * Move webpack idle wait code to the page-loader. Because that's the place to do it. * Remove pageNotFound key from the error. * Remove unused error field 'buildError' * Add much better logic to normalize routes. * Get rid of mitt. * Introduce a better way to register pages. * Came back to the mitt() based page-loader. * Add link rel=preload support. * Add assetPrefix support to add support for CDNs. * Add assetPrefix support for preload links. * Update readme.md
36 lines
763 B
JavaScript
36 lines
763 B
JavaScript
/* global location */
|
|
|
|
import Router from '../lib/router'
|
|
import fetch from 'unfetch'
|
|
|
|
export default () => {
|
|
Router.ready(() => {
|
|
Router.router.events.on('routeChangeComplete', ping)
|
|
})
|
|
|
|
async function ping () {
|
|
try {
|
|
const url = `/_next/on-demand-entries-ping?page=${Router.pathname}`
|
|
const res = await fetch(url)
|
|
const payload = await res.json()
|
|
if (payload.invalid) {
|
|
location.reload()
|
|
}
|
|
} catch (err) {
|
|
console.error(`Error with on-demand-entries-ping: ${err.message}`)
|
|
}
|
|
}
|
|
|
|
async function runPinger () {
|
|
while (true) {
|
|
await new Promise((resolve) => setTimeout(resolve, 5000))
|
|
await ping()
|
|
}
|
|
}
|
|
|
|
runPinger()
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
}
|