mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 02:44:51 +00:00
114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
import type { RendererNode } from 'vue'
|
|
import { computed, createStaticVNode, defineComponent, getCurrentInstance, h, ref, watch } from 'vue'
|
|
import { debounce } from 'perfect-debounce'
|
|
import { hash } from 'ohash'
|
|
import { appendHeader } from 'h3'
|
|
import { useHead } from '@unhead/vue'
|
|
|
|
// eslint-disable-next-line import/no-restricted-paths
|
|
import type { NuxtIslandResponse } from '../../core/runtime/nitro/renderer'
|
|
import { useNuxtApp } from '#app/nuxt'
|
|
import { useRequestEvent } from '#app/composables/ssr'
|
|
|
|
const pKey = '_islandPromises'
|
|
|
|
export default defineComponent({
|
|
name: 'NuxtIsland',
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
props: {
|
|
type: Object,
|
|
default: () => undefined
|
|
},
|
|
context: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
},
|
|
async setup (props) {
|
|
const nuxtApp = useNuxtApp()
|
|
const hashId = computed(() => hash([props.name, props.props, props.context]))
|
|
const instance = getCurrentInstance()!
|
|
const event = useRequestEvent()
|
|
|
|
const html = ref<string>(process.client ? getFragmentHTML(instance?.vnode?.el).join('') ?? '<div></div>' : '<div></div>')
|
|
const cHead = ref<Record<'link' | 'style', Array<Record<string, string>>>>({ link: [], style: [] })
|
|
useHead(cHead)
|
|
|
|
function _fetchComponent () {
|
|
const url = `/__nuxt_island/${props.name}:${hashId.value}`
|
|
if (process.server && process.env.prerender) {
|
|
// Hint to Nitro to prerender the island component
|
|
appendHeader(event, 'x-nitro-prerender', url)
|
|
}
|
|
// TODO: Validate response
|
|
return $fetch<NuxtIslandResponse>(url, {
|
|
params: {
|
|
...props.context,
|
|
props: props.props ? JSON.stringify(props.props) : undefined
|
|
}
|
|
})
|
|
}
|
|
const key = ref(0)
|
|
async function fetchComponent () {
|
|
nuxtApp[pKey] = nuxtApp[pKey] || {}
|
|
if (!nuxtApp[pKey][hashId.value]) {
|
|
nuxtApp[pKey][hashId.value] = _fetchComponent().finally(() => {
|
|
delete nuxtApp[pKey]![hashId.value]
|
|
})
|
|
}
|
|
const res: NuxtIslandResponse = await nuxtApp[pKey][hashId.value]
|
|
cHead.value.link = res.head.link
|
|
cHead.value.style = res.head.style
|
|
html.value = res.html
|
|
key.value++
|
|
}
|
|
|
|
if (process.client) {
|
|
watch(props, debounce(fetchComponent, 100))
|
|
}
|
|
|
|
if (process.server || !nuxtApp.isHydrating) {
|
|
await fetchComponent()
|
|
}
|
|
return () => h((_, { slots }) => slots.default?.(), { key: key.value }, {
|
|
default: () => [createStaticVNode(html.value, 1)]
|
|
})
|
|
}
|
|
})
|
|
|
|
// TODO refactor with https://github.com/nuxt/nuxt/pull/19231
|
|
function getFragmentHTML (element: RendererNode | null) {
|
|
if (element) {
|
|
if (element.nodeName === '#comment' && element.nodeValue === '[') {
|
|
return getFragmentChildren(element)
|
|
}
|
|
return [element.outerHTML]
|
|
}
|
|
return []
|
|
}
|
|
|
|
function getFragmentChildren (element: RendererNode | null, blocks: string[] = []) {
|
|
if (element && element.nodeName) {
|
|
if (isEndFragment(element)) {
|
|
return blocks
|
|
} else if (!isStartFragment(element)) {
|
|
blocks.push(element.outerHTML)
|
|
}
|
|
|
|
getFragmentChildren(element.nextSibling, blocks)
|
|
}
|
|
return blocks
|
|
}
|
|
|
|
function isStartFragment (element: RendererNode) {
|
|
return element.nodeName === '#comment' && element.nodeValue === '['
|
|
}
|
|
|
|
function isEndFragment (element: RendererNode) {
|
|
return element.nodeName === '#comment' && element.nodeValue === ']'
|
|
}
|