mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 19:04:48 +00:00
78 lines
2.6 KiB
TypeScript
78 lines
2.6 KiB
TypeScript
import { createElementBlock, createElementVNode, defineComponent, h, mergeProps, onMounted, ref } from 'vue'
|
|
import type { ComponentOptions } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'ClientOnly',
|
|
inheritAttrs: false,
|
|
// eslint-disable-next-line vue/require-prop-types
|
|
props: ['fallback', 'placeholder', 'placeholderTag', 'fallbackTag'],
|
|
setup (_, { slots, attrs }) {
|
|
const mounted = ref(false)
|
|
onMounted(() => { mounted.value = true })
|
|
return (props: any) => {
|
|
if (mounted.value) { return slots.default?.() }
|
|
const slot = slots.fallback || slots.placeholder
|
|
if (slot) { return slot() }
|
|
const fallbackStr = props.fallback || props.placeholder || ''
|
|
const fallbackTag = props.fallbackTag || props.placeholderTag || 'span'
|
|
return createElementBlock(fallbackTag, attrs, fallbackStr)
|
|
}
|
|
}
|
|
})
|
|
|
|
const cache = new WeakMap()
|
|
|
|
/*! @__NO_SIDE_EFFECTS__ */
|
|
export function createClientOnly<T extends ComponentOptions> (component: T) {
|
|
if (cache.has(component)) {
|
|
return cache.get(component)
|
|
}
|
|
|
|
const clone = { ...component }
|
|
|
|
if (clone.render) {
|
|
// override the component render (non script setup component)
|
|
clone.render = (ctx: any, ...args: any[]) => {
|
|
if (ctx.mounted$) {
|
|
const res = component.render?.bind(ctx)(ctx, ...args)
|
|
return (res.children === null || typeof res.children === 'string')
|
|
? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag)
|
|
: h(res)
|
|
} else {
|
|
return h('div', mergeProps(ctx.$attrs ?? ctx._.attrs, { key: 'placeholder-key' }))
|
|
}
|
|
}
|
|
} else if (clone.template) {
|
|
// handle runtime-compiler template
|
|
clone.template = `
|
|
<template v-if="mounted$">${component.template}</template>
|
|
<template v-else><div></div></template>
|
|
`
|
|
}
|
|
|
|
clone.setup = (props, ctx) => {
|
|
const mounted$ = ref(false)
|
|
onMounted(() => { mounted$.value = true })
|
|
|
|
return Promise.resolve(component.setup?.(props, ctx) || {})
|
|
.then((setupState) => {
|
|
return typeof setupState !== 'function'
|
|
? { ...setupState, mounted$ }
|
|
: (...args: any[]) => {
|
|
if (mounted$.value) {
|
|
const res = setupState(...args)
|
|
return (res.children === null || typeof res.children === 'string')
|
|
? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag)
|
|
: h(res)
|
|
} else {
|
|
return h('div', mergeProps(ctx.attrs, { key: 'placeholder-key' }))
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
cache.set(component, clone)
|
|
|
|
return clone
|
|
}
|