2016-11-07 01:34:58 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
export function getMatchedComponents (route) {
|
|
|
|
return [].concat.apply([], route.matched.map(function (m) {
|
|
|
|
return Object.keys(m.components).map(function (key) {
|
|
|
|
return m.components[key]
|
|
|
|
})
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function flatMapComponents (route, fn) {
|
|
|
|
return Array.prototype.concat.apply([], route.matched.map(function (m, index) {
|
|
|
|
return Object.keys(m.components).map(function (key) {
|
|
|
|
return fn(m.components[key], m.instances[key], m, key, index)
|
|
|
|
})
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getContext (context) {
|
|
|
|
let ctx = {
|
|
|
|
isServer: !!context.isServer,
|
|
|
|
isClient: !!context.isClient,
|
|
|
|
<%= (store ? 'store: context.store,' : '') %>
|
|
|
|
route: (context.to ? context.to : context.route)
|
|
|
|
}
|
2016-11-07 20:38:51 +00:00
|
|
|
ctx.params = ctx.route.params || {}
|
|
|
|
ctx.query = ctx.route.query || {}
|
2016-11-10 23:01:36 +00:00
|
|
|
ctx.redirect = function (path) {
|
|
|
|
if (!path) return
|
|
|
|
context.next(path)
|
|
|
|
}
|
2016-11-07 01:34:58 +00:00
|
|
|
if (context.req) ctx.req = context.req
|
2016-11-07 12:53:05 +00:00
|
|
|
if (context.res) ctx.res = context.res
|
2016-11-07 01:34:58 +00:00
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
// Imported from vue-router
|
|
|
|
export function getLocation (base) {
|
|
|
|
var path = window.location.pathname
|
|
|
|
if (base && path.indexOf(base) === 0) {
|
|
|
|
path = path.slice(base.length)
|
|
|
|
}
|
|
|
|
return (path || '/') + window.location.search + window.location.hash
|
|
|
|
}
|
2016-11-10 23:01:36 +00:00
|
|
|
|
|
|
|
exports.urlJoin = function () {
|
|
|
|
return [].slice.call(arguments).join('/').replace(/\/+/g, '/')
|
|
|
|
}
|