Nuxt/lib/app/components/nuxt-child.js

81 lines
1.7 KiB
JavaScript
Raw Normal View History

2016-12-16 16:45:47 +00:00
export default {
name: 'nuxt-child',
functional: true,
props: ['keepAlive'],
render (h, { parent, data, props }) {
2016-12-16 16:45:47 +00:00
data.nuxtChild = true
const _parent = parent
2016-12-16 16:45:47 +00:00
const transitions = parent.$nuxt.nuxt.transitions
const defaultTransition = parent.$nuxt.nuxt.defaultTransition
2017-11-06 17:30:15 +00:00
2016-12-16 16:45:47 +00:00
let depth = 0
while (parent) {
if (parent.$vnode && parent.$vnode.data.nuxtChild) {
depth++
}
parent = parent.$parent
}
data.nuxtChildDepth = depth
const transition = transitions[depth] || defaultTransition
let transitionProps = {}
transitionsKeys.forEach((key) => {
if (typeof transition[key] !== 'undefined') {
transitionProps[key] = transition[key]
}
})
let listeners = {}
listenersKeys.forEach((key) => {
if (typeof transition[key] === 'function') {
listeners[key] = transition[key].bind(_parent)
2016-12-16 16:45:47 +00:00
}
})
2017-09-08 10:42:00 +00:00
let routerView = [
h('router-view', data)
]
if (typeof props.keepAlive !== 'undefined') {
routerView = [
h('keep-alive', routerView)
]
}
2017-11-06 17:30:15 +00:00
return h('transition', {
2016-12-16 16:45:47 +00:00
props: transitionProps,
on: listeners
}, routerView)
2016-12-16 16:45:47 +00:00
}
}
2017-10-07 14:59:36 +00:00
const transitionsKeys = [
'name',
'mode',
'appear',
'css',
'type',
'duration',
'enterClass',
'leaveClass',
'appearClass',
'enterActiveClass',
'enterActiveClass',
'leaveActiveClass',
'appearActiveClass',
'enterToClass',
'leaveToClass',
'appearToClass'
]
const listenersKeys = [
'beforeEnter',
'enter',
'afterEnter',
'enterCancelled',
'beforeLeave',
'leave',
'afterLeave',
'leaveCancelled',
'beforeAppear',
'appear',
'afterAppear',
'appearCancelled'
]