Nuxt/lib/app/router.js

65 lines
2.0 KiB
JavaScript
Raw Normal View History

'use strict'
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) {
var 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)
2016-12-11 00:46:04 +00:00
components.push({ _name: route._name, component: route.component })
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
}
2016-12-12 15:30:07 +00:00
var _components = []
var _routes = recursiveRoutes(router.routes, '\t\t', _components)
uniqBy(_components, '_name').forEach((route) => { %>
2017-03-22 14:47:34 +00:00
const <%= route._name %> = () => import('<%= route.component %>')
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(') %>
<% } else { %>
2016-11-07 01:34:58 +00:00
const scrollBehavior = (to, from, savedPosition) => {
2017-01-26 14:21:21 +00:00
// savedPosition is only available for popstate navigations.
2016-11-07 01:34:58 +00:00
if (savedPosition) {
return savedPosition
} else {
2016-12-11 15:40:18 +00:00
let position = {}
// if no children detected
if (to.matched.length < 2) {
2017-01-26 14:21:21 +00:00
// scroll to the top of the page
2016-12-11 15:40:18 +00:00
position = { x: 0, y: 0 }
}
2017-01-20 17:32:43 +00:00
else if (to.matched.some((r) => r.components.default.options.scrollToTop)) {
2017-01-26 14:21:21 +00:00
// if one of the children has scrollToTop option set to true
2016-12-27 13:53:14 +00:00
position = { x: 0, y: 0 }
}
2016-11-07 01:34:58 +00:00
// if link has anchor, scroll to anchor by returning the selector
if (to.hash) {
position = { selector: to.hash }
}
return position
}
}
2017-01-26 14:56:47 +00:00
<% } %>
2016-11-07 01:34:58 +00:00
export default new Router({
2017-02-17 08:43:48 +00:00
mode: '<%= router.mode %>',
2016-11-10 16:16:37 +00:00
base: '<%= router.base %>',
linkActiveClass: '<%= router.linkActiveClass %>',
2016-11-07 01:34:58 +00:00
scrollBehavior,
routes: [
2016-12-12 15:30:07 +00:00
<%= _routes %>
2016-11-07 01:34:58 +00:00
]
})