Nuxt/lib/app/router.js

92 lines
3.5 KiB
JavaScript
Raw Normal View History

2016-11-07 01:34:58 +00:00
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
2016-12-11 00:46:04 +00:00
<%
2016-12-12 15:30:07 +00:00
function recursiveRoutes(routes, tab, components) {
2017-07-09 22:40:09 +00:00
let res = ''
2016-12-11 00:46:04 +00:00
routes.forEach((route, i) => {
2017-01-19 15:25:55 +00:00
route._name = '_' + hash(route.component)
components.push({ _name: route._name, component: route.component, name: route.name, chunkName: route.chunkName })
2016-12-11 00:46:04 +00:00
res += tab + '{\n'
res += tab + '\tpath: ' + JSON.stringify(route.path) + ',\n'
res += tab + '\tcomponent: ' + route._name
res += (route.name) ? ',\n\t' + tab + 'name: ' + JSON.stringify(route.name) : ''
2016-12-12 15:30:07 +00:00
res += (route.children) ? ',\n\t' + tab + 'children: [\n' + recursiveRoutes(routes[i].children, tab + '\t\t', components) + '\n\t' + tab + ']' : ''
2016-12-11 00:46:04 +00:00
res += '\n' + tab + '}' + (i + 1 === routes.length ? '' : ',\n')
})
return res
}
2017-07-09 22:40:09 +00:00
const _components = []
const _routes = recursiveRoutes(router.routes, '\t\t', _components)
2017-08-25 10:34:59 +00:00
uniqBy(_components, '_name').forEach((route) => { %>const <%= route._name %> = () => import('<%= relativeToBuild(route.component) %>' /* webpackChunkName: "<%= wChunk(route.chunkName) %>" */).then(m => m.default || m)
2016-11-07 01:34:58 +00:00
<% }) %>
2017-01-26 14:56:47 +00:00
<% if (router.scrollBehavior) { %>
const scrollBehavior = <%= serialize(router.scrollBehavior).replace('scrollBehavior(', 'function(').replace('function function', 'function') %>
2017-01-26 14:56:47 +00:00
<% } else { %>
if (process.client) {
window.history.scrollRestoration = 'manual'
}
const scrollBehavior = function (to, from, savedPosition) {
// if the returned position is falsy or an empty object,
// will retain current scroll position.
let position = false
// if no children detected
if (to.matched.length < 2) {
// scroll to the top of the page
position = { x: 0, y: 0 }
} else if (to.matched.some((r) => r.components.default.options.scrollToTop)) {
// if one of the children has scrollToTop option set to true
position = { x: 0, y: 0 }
}
// savedPosition is only available for popstate navigations (back button)
2016-11-07 01:34:58 +00:00
if (savedPosition) {
position = savedPosition
2016-11-07 01:34:58 +00:00
}
return new Promise(resolve => {
// wait for the out transition to complete (if necessary)
window.$nuxt.$once('triggerScroll', () => {
// coords will be used if no selector is provided,
// or if the selector didn't match any element.
if (to.hash) {
let hash = to.hash
// CSS.escape() is not supported with IE and Edge.
if (typeof window.CSS !== 'undefined' && typeof window.CSS.escape !== 'undefined') {
hash = '#' + window.CSS.escape(hash.substr(1))
}
try {
if (document.querySelector(hash)) {
// scroll to anchor by returning the selector
position = { selector: hash }
}
} catch (e) {
2018-03-01 14:59:56 +00:00
console.warn('Failed to save scroll position. Please add CSS.escape() polyfill (https://github.com/mathiasbynens/CSS.escape).')
}
}
resolve(position)
})
})
2016-11-07 01:34:58 +00:00
}
2017-01-26 14:56:47 +00:00
<% } %>
2016-11-07 01:34:58 +00:00
2017-05-02 06:57:39 +00:00
export function createRouter () {
return new Router({
mode: '<%= router.mode %>',
base: '<%= router.base %>',
linkActiveClass: '<%= router.linkActiveClass %>',
linkExactActiveClass: '<%= router.linkExactActiveClass %>',
2017-05-02 06:57:39 +00:00
scrollBehavior,
routes: [
2017-07-09 22:40:09 +00:00
<%= _routes %>
2017-07-04 16:30:01 +00:00
],
2017-11-14 09:28:18 +00:00
<% if (router.parseQuery) { %>parseQuery: <%= serialize(router.parseQuery).replace('parseQuery(', 'function(') %>,<% } %>
<% if (router.stringifyQuery) { %>stringifyQuery: <%= serialize(router.stringifyQuery).replace('stringifyQuery(', 'function(') %>,<% } %>
2017-07-04 16:30:01 +00:00
fallback: <%= router.fallback %>
2017-05-02 06:57:39 +00:00
})
}