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/router/router.js

338 lines
7.9 KiB
JavaScript
Raw Normal View History

/* global __NEXT_DATA__ */
2016-12-24 17:29:23 +00:00
import { parse, format } from 'url'
import evalScript from '../eval-script'
import shallowEquals from '../shallow-equals'
import { EventEmitter } from 'events'
import { reloadIfPrefetched } from '../prefetch'
import { loadGetInitialProps } from '../utils'
2016-10-05 23:52:50 +00:00
export default class Router extends EventEmitter {
constructor (pathname, query, { Component, ErrorComponent, err } = {}) {
super()
2016-10-08 05:12:51 +00:00
// represents the current component key
this.route = toRoute(pathname)
2016-10-05 23:52:50 +00:00
// set up the component cache (by route keys)
this.components = { [this.route]: { Component, err } }
2016-10-05 23:52:50 +00:00
this.ErrorComponent = ErrorComponent
this.pathname = pathname
this.query = query
2016-10-08 05:12:51 +00:00
this.subscriptions = new Set()
2016-10-08 05:12:51 +00:00
this.componentLoadCancel = null
2016-10-05 23:52:50 +00:00
this.onPopState = this.onPopState.bind(this)
2016-10-08 05:12:51 +00:00
if (typeof window !== 'undefined') {
2016-12-24 17:29:23 +00:00
// in order for `e.state` to work on the `onpopstate` event
// we have to register the initial route upon initialization
this.replace(format({ pathname, query }), getURL())
2016-10-08 10:16:22 +00:00
window.addEventListener('popstate', this.onPopState)
}
2016-10-05 23:52:50 +00:00
}
async onPopState (e) {
if (!e.state) {
// We get state as undefined for two reasons.
// 1. With older safari (< 8) and older chrome (< 34)
// 2. When the URL changed with #
//
// In the both cases, we don't need to proceed and change the route.
// (as it's already changed)
// But we can simply replace the state with the new changes.
// Actually, for (1) we don't need to nothing. But it's hard to detect that event.
// So, doing the following for (1) does no harm.
const { pathname, query } = this
this.replace(format({ pathname, query }), getURL())
return
}
2016-10-05 23:52:50 +00:00
this.abortComponentLoad()
2016-10-08 05:12:51 +00:00
const { url, as } = e.state
2016-12-28 05:27:52 +00:00
const { pathname, query } = parse(url, true)
if (!this.urlIsNew(pathname, query)) {
this.emit('routeChangeStart', as)
this.emit('routeChangeComplete', as)
return
}
2016-12-28 05:27:52 +00:00
const route = toRoute(pathname)
2016-10-08 05:12:51 +00:00
this.emit('routeChangeStart', as)
const {
data,
props,
error
} = await this.getRouteInfo(route, pathname, query)
if (error && error.cancelled) {
this.emit('routeChangeError', error, as)
return
}
this.route = route
this.set(pathname, query, { ...data, props })
if (error) {
this.emit('routeChangeError', error, as)
} else {
this.emit('routeChangeComplete', as)
}
2016-10-05 23:52:50 +00:00
}
2016-10-17 14:35:31 +00:00
update (route, Component) {
const data = this.components[route] || {}
const newData = { ...data, Component }
this.components[route] = newData
2016-10-05 23:52:50 +00:00
2016-10-08 05:12:51 +00:00
if (route === this.route) {
2016-10-17 14:35:31 +00:00
this.notify(newData)
2016-10-08 05:12:51 +00:00
}
2016-10-05 23:52:50 +00:00
}
2016-10-24 07:22:15 +00:00
async reload (route) {
delete this.components[route]
await reloadIfPrefetched(route)
2016-10-24 07:22:15 +00:00
if (route !== this.route) return
const url = window.location.href
const { pathname, query } = parse(url, true)
this.emit('routeChangeStart', url)
const {
data,
props,
error
} = await this.getRouteInfo(route, pathname, query)
if (error && error.cancelled) {
this.emit('routeChangeError', error, url)
return
2016-10-24 07:22:15 +00:00
}
this.notify({ ...data, props })
if (error) {
this.emit('routeChangeError', error, url)
throw error
}
this.emit('routeChangeComplete', url)
2016-10-24 07:22:15 +00:00
}
2016-10-05 23:52:50 +00:00
back () {
window.history.back()
2016-10-05 23:52:50 +00:00
}
2016-12-28 05:27:52 +00:00
push (url, as = url) {
return this.change('pushState', url, as)
2016-10-05 23:52:50 +00:00
}
2016-12-28 05:27:52 +00:00
replace (url, as = url) {
return this.change('replaceState', url, as)
2016-10-05 23:52:50 +00:00
}
2016-12-28 05:27:52 +00:00
async change (method, url, as) {
this.abortComponentLoad()
2016-12-28 05:27:52 +00:00
const { pathname, query } = parse(url, true)
if (!this.urlIsNew(pathname, query)) {
this.emit('routeChangeStart', as)
changeState()
this.emit('routeChangeComplete', as)
return true
}
2016-12-28 05:27:52 +00:00
const route = toRoute(pathname)
2016-10-08 05:12:51 +00:00
this.emit('routeChangeStart', as)
const {
data, props, error
} = await this.getRouteInfo(route, pathname, query)
if (error && error.cancelled) {
this.emit('routeChangeError', error, as)
return false
2016-10-05 23:52:50 +00:00
}
changeState()
2016-10-08 05:12:51 +00:00
this.route = route
2016-12-28 05:27:52 +00:00
this.set(pathname, query, { ...data, props })
if (error) {
this.emit('routeChangeError', error, as)
throw error
}
this.emit('routeChangeComplete', as)
2016-10-08 05:12:51 +00:00
return true
function changeState () {
if (method !== 'pushState' || getURL() !== as) {
window.history[method]({ url, as }, null, as)
}
}
2016-10-05 23:52:50 +00:00
}
async getRouteInfo (route, pathname, query) {
const routeInfo = {}
try {
const { Component, err, xhr } = routeInfo.data = await this.fetchComponent(route)
const ctx = { err, xhr, pathname, query }
routeInfo.props = await this.getInitialProps(Component, ctx)
} catch (err) {
if (err.cancelled) {
return { error: err }
}
const Component = this.ErrorComponent
routeInfo.data = { Component, err }
const ctx = { err, pathname, query }
routeInfo.props = await this.getInitialProps(Component, ctx)
routeInfo.error = err
console.error(err)
}
return routeInfo
}
2016-12-28 05:27:52 +00:00
set (pathname, query, data) {
this.pathname = pathname
this.query = query
this.notify(data)
2016-10-05 23:52:50 +00:00
}
2016-12-28 05:27:52 +00:00
urlIsNew (pathname, query) {
2016-10-05 23:52:50 +00:00
return this.pathname !== pathname || !shallowEquals(query, this.query)
}
async fetchComponent (route) {
2016-10-08 05:12:51 +00:00
let data = this.components[route]
2016-10-09 11:01:06 +00:00
if (!data) {
let cancel
data = await new Promise((resolve, reject) => {
this.componentLoadCancel = cancel = () => {
if (xhr.abort) {
xhr.abort()
const error = new Error('Fetching componenet cancelled')
error.cancelled = true
reject(error)
}
2016-10-09 11:01:06 +00:00
}
const url = `/_next/${__NEXT_DATA__.buildId}/pages${route}`
const xhr = loadComponent(url, (err, data) => {
2016-10-09 11:01:06 +00:00
if (err) return reject(err)
resolve({ ...data, xhr })
2016-10-09 11:01:06 +00:00
})
2016-10-05 23:52:50 +00:00
})
2016-10-09 11:01:06 +00:00
if (cancel === this.componentLoadCancel) {
this.componentLoadCancel = null
}
2016-10-05 23:52:50 +00:00
2016-10-09 11:01:06 +00:00
this.components[route] = data
2016-10-08 05:12:51 +00:00
}
return data
}
2016-10-09 09:25:38 +00:00
async getInitialProps (Component, ctx) {
2016-10-08 05:12:51 +00:00
let cancelled = false
const cancel = () => { cancelled = true }
2016-10-05 23:52:50 +00:00
this.componentLoadCancel = cancel
2016-10-08 05:12:51 +00:00
const props = await loadGetInitialProps(Component, ctx)
2016-10-08 05:12:51 +00:00
if (cancel === this.componentLoadCancel) {
this.componentLoadCancel = null
}
if (cancelled) {
const err = new Error('Loading initial props cancelled')
2016-10-08 05:12:51 +00:00
err.cancelled = true
throw err
}
return props
2016-10-05 23:52:50 +00:00
}
abortComponentLoad () {
if (this.componentLoadCancel) {
this.componentLoadCancel()
this.componentLoadCancel = null
}
}
2016-10-08 05:12:51 +00:00
notify (data) {
this.subscriptions.forEach((fn) => fn(data))
2016-10-05 23:52:50 +00:00
}
subscribe (fn) {
2016-10-08 05:12:51 +00:00
this.subscriptions.add(fn)
return () => this.subscriptions.delete(fn)
2016-10-05 23:52:50 +00:00
}
}
2016-10-08 05:12:51 +00:00
function getURL () {
const { href, origin } = window.location
return href.substring(origin.length)
2016-10-08 05:12:51 +00:00
}
2016-10-05 23:52:50 +00:00
2016-10-08 05:12:51 +00:00
function toRoute (path) {
2016-10-05 23:52:50 +00:00
return path.replace(/\/$/, '') || '/'
}
2016-10-08 05:12:51 +00:00
function loadComponent (url, fn) {
2016-10-05 23:52:50 +00:00
return loadJSON(url, (err, data) => {
2016-10-08 05:12:51 +00:00
if (err) return fn(err)
2016-10-05 23:52:50 +00:00
2016-10-08 05:12:51 +00:00
let module
try {
2016-10-19 12:41:45 +00:00
module = evalScript(data.component)
2016-10-08 05:12:51 +00:00
} catch (err) {
return fn(err)
}
2016-10-08 05:12:51 +00:00
const Component = module.default || module
2016-10-19 12:41:45 +00:00
fn(null, { Component, err: data.err })
2016-10-08 05:12:51 +00:00
})
}
2016-10-05 23:52:50 +00:00
function loadJSON (url, fn) {
const xhr = new window.XMLHttpRequest()
2016-10-05 23:52:50 +00:00
xhr.onload = () => {
let data
try {
data = JSON.parse(xhr.responseText)
} catch (err) {
fn(new Error('Failed to load JSON for ' + url))
return
}
fn(null, data)
}
xhr.onerror = () => {
2016-10-08 05:12:51 +00:00
fn(new Error('XHR failed. Status: ' + xhr.status))
2016-10-05 23:52:50 +00:00
}
2016-10-09 11:01:06 +00:00
xhr.onabort = () => {
const err = new Error('XHR aborted')
err.cancelled = true
fn(err)
}
2016-10-05 23:52:50 +00:00
xhr.open('GET', url)
xhr.setRequestHeader('Accept', 'application/json')
2016-10-05 23:52:50 +00:00
xhr.send()
return xhr
}