Nuxt/packages/nuxt/src/app/components/layout.ts

34 lines
1.1 KiB
TypeScript
Raw Normal View History

import { defineComponent, isRef, Ref, Transition } from 'vue'
import { _wrapIf } from './utils'
import { useRoute } from '#app'
// @ts-ignore
2021-06-30 16:32:22 +00:00
import layouts from '#build/layouts'
const defaultLayoutTransition = { name: 'layout', mode: 'out-in' }
2021-06-30 16:32:22 +00:00
export default defineComponent({
props: {
name: {
type: [String, Boolean, Object] as unknown as () => string | false | Ref<string | false>,
default: null
2021-06-30 16:32:22 +00:00
}
},
setup (props, context) {
const route = useRoute()
2021-06-30 16:32:22 +00:00
return () => {
const layout = (isRef(props.name) ? props.name.value : props.name) ?? route.meta.layout as string ?? 'default'
const hasLayout = layout && layout in layouts
if (process.dev && layout && !hasLayout && layout !== 'default') {
console.warn(`Invalid layout \`${layout}\` selected.`)
2021-06-30 16:32:22 +00:00
}
// We avoid rendering layout transition if there is no layout to render
return _wrapIf(Transition, hasLayout && (route.meta.layoutTransition ?? defaultLayoutTransition),
_wrapIf(layouts[layout], hasLayout, context.slots)
).default()
2021-06-30 16:32:22 +00:00
}
}
})