2017-03-07 18:43:56 +00:00
|
|
|
/* global window */
|
2018-11-28 14:03:02 +00:00
|
|
|
import _Router from 'next-server/dist/lib/router/router'
|
2016-12-19 14:40:26 +00:00
|
|
|
|
2016-12-31 01:15:22 +00:00
|
|
|
const SingletonRouter = {
|
|
|
|
router: null, // holds the actual router instance
|
|
|
|
readyCallbacks: [],
|
|
|
|
ready (cb) {
|
|
|
|
if (this.router) return cb()
|
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
this.readyCallbacks.push(cb)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-19 14:40:26 +00:00
|
|
|
|
|
|
|
// Create public properties and methods of the router in the SingletonRouter
|
2018-06-05 15:10:28 +00:00
|
|
|
const urlPropertyFields = ['pathname', 'route', 'query', 'asPath']
|
2018-07-31 19:04:14 +00:00
|
|
|
const propertyFields = ['components']
|
2018-05-25 12:47:58 +00:00
|
|
|
const routerEvents = ['routeChangeStart', 'beforeHistoryChange', 'routeChangeComplete', 'routeChangeError', 'hashChangeStart', 'hashChangeComplete']
|
2018-03-31 14:21:51 +00:00
|
|
|
const coreMethodFields = ['push', 'replace', 'reload', 'back', 'prefetch', 'beforePopState']
|
2016-12-19 14:40:26 +00:00
|
|
|
|
2018-07-31 19:04:14 +00:00
|
|
|
// Events is a static property on the router, the router doesn't have to be initialized to use it
|
|
|
|
Object.defineProperty(SingletonRouter, 'events', {
|
|
|
|
get () {
|
|
|
|
return _Router.events
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-06-05 15:10:28 +00:00
|
|
|
propertyFields.concat(urlPropertyFields).forEach((field) => {
|
2016-12-19 14:40:26 +00:00
|
|
|
// Here we need to use Object.defineProperty because, we need to return
|
|
|
|
// the property assigned to the actual router
|
|
|
|
// The value might get changed as we change routes and this is the
|
|
|
|
// proper way to access it
|
|
|
|
Object.defineProperty(SingletonRouter, field, {
|
|
|
|
get () {
|
2016-12-20 17:27:43 +00:00
|
|
|
throwIfNoRouter()
|
2016-12-31 01:15:22 +00:00
|
|
|
return SingletonRouter.router[field]
|
2016-12-19 14:40:26 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-31 01:15:22 +00:00
|
|
|
coreMethodFields.forEach((field) => {
|
2016-12-19 14:40:26 +00:00
|
|
|
SingletonRouter[field] = (...args) => {
|
2016-12-20 17:27:43 +00:00
|
|
|
throwIfNoRouter()
|
2016-12-31 01:15:22 +00:00
|
|
|
return SingletonRouter.router[field](...args)
|
2016-12-19 14:40:26 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-12-31 01:15:22 +00:00
|
|
|
routerEvents.forEach((event) => {
|
|
|
|
SingletonRouter.ready(() => {
|
2018-07-31 19:04:14 +00:00
|
|
|
_Router.events.on(event, (...args) => {
|
2016-12-31 01:15:22 +00:00
|
|
|
const eventField = `on${event.charAt(0).toUpperCase()}${event.substring(1)}`
|
|
|
|
if (SingletonRouter[eventField]) {
|
2017-07-27 13:50:39 +00:00
|
|
|
try {
|
|
|
|
SingletonRouter[eventField](...args)
|
|
|
|
} catch (err) {
|
|
|
|
console.error(`Error when running the Router event: ${eventField}`)
|
|
|
|
console.error(`${err.message}\n${err.stack}`)
|
|
|
|
}
|
2016-12-31 01:15:22 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-12-20 17:27:43 +00:00
|
|
|
function throwIfNoRouter () {
|
2016-12-31 01:15:22 +00:00
|
|
|
if (!SingletonRouter.router) {
|
2016-12-20 17:27:43 +00:00
|
|
|
const message = 'No router instance found.\n' +
|
|
|
|
'You should only use "next/router" inside the client side of your app.\n'
|
|
|
|
throw new Error(message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Export the SingletonRouter and this is the public API.
|
|
|
|
export default SingletonRouter
|
|
|
|
|
2017-08-30 14:07:12 +00:00
|
|
|
// Reexport the withRoute HOC
|
2018-11-28 16:53:49 +00:00
|
|
|
export { default as withRouter } from './with-router'
|
2017-08-30 14:07:12 +00:00
|
|
|
|
2016-12-20 17:27:43 +00:00
|
|
|
// INTERNAL APIS
|
|
|
|
// -------------
|
|
|
|
// (do not use following exports inside the app)
|
|
|
|
|
|
|
|
// Create a router and assign it as the singleton instance.
|
|
|
|
// This is used in client side when we are initilizing the app.
|
|
|
|
// This should **not** use inside the server.
|
2016-12-19 14:40:26 +00:00
|
|
|
export const createRouter = function (...args) {
|
2016-12-31 01:15:22 +00:00
|
|
|
SingletonRouter.router = new _Router(...args)
|
|
|
|
SingletonRouter.readyCallbacks.forEach(cb => cb())
|
|
|
|
SingletonRouter.readyCallbacks = []
|
|
|
|
|
|
|
|
return SingletonRouter.router
|
2016-12-19 14:40:26 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 17:27:43 +00:00
|
|
|
// Export the actual Router class, which is usually used inside the server
|
2016-12-19 14:40:26 +00:00
|
|
|
export const Router = _Router
|
2017-02-20 23:48:17 +00:00
|
|
|
|
2018-06-05 15:10:28 +00:00
|
|
|
// This function is used to create the `withRouter` router instance
|
2017-08-30 14:07:12 +00:00
|
|
|
export function makePublicRouterInstance (router) {
|
|
|
|
const instance = {}
|
|
|
|
|
2018-06-05 15:10:28 +00:00
|
|
|
for (const property of urlPropertyFields) {
|
|
|
|
if (typeof router[property] === 'object') {
|
|
|
|
instance[property] = {...router[property]} // makes sure query is not stateful
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
instance[property] = router[property]
|
|
|
|
}
|
|
|
|
|
2018-07-31 19:04:14 +00:00
|
|
|
// Events is a static property on the router, the router doesn't have to be initialized to use it
|
|
|
|
instance.events = _Router.events
|
|
|
|
|
2017-08-30 14:07:12 +00:00
|
|
|
propertyFields.forEach((field) => {
|
|
|
|
// Here we need to use Object.defineProperty because, we need to return
|
|
|
|
// the property assigned to the actual router
|
|
|
|
// The value might get changed as we change routes and this is the
|
|
|
|
// proper way to access it
|
|
|
|
Object.defineProperty(instance, field, {
|
|
|
|
get () {
|
|
|
|
return router[field]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
coreMethodFields.forEach((field) => {
|
|
|
|
instance[field] = (...args) => {
|
|
|
|
return router[field](...args)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return instance
|
|
|
|
}
|