2022-11-24 12:24:14 +00:00
|
|
|
import { defineComponent, createStaticVNode, computed, ref, watch } from 'vue'
|
|
|
|
import { debounce } from 'perfect-debounce'
|
|
|
|
import { hash } from 'ohash'
|
2023-01-20 12:10:58 +00:00
|
|
|
import { appendHeader } from 'h3'
|
2023-03-10 08:01:21 +00:00
|
|
|
import { useHead } from '@unhead/vue'
|
|
|
|
|
2022-11-24 12:24:14 +00:00
|
|
|
// eslint-disable-next-line import/no-restricted-paths
|
|
|
|
import type { NuxtIslandResponse } from '../../core/runtime/nitro/renderer'
|
2023-02-09 06:26:41 +00:00
|
|
|
import { useNuxtApp } from '#app/nuxt'
|
|
|
|
import { useRequestEvent } from '#app/composables/ssr'
|
2022-11-24 12:24:14 +00:00
|
|
|
|
|
|
|
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]))
|
2023-01-20 12:10:58 +00:00
|
|
|
|
|
|
|
const event = useRequestEvent()
|
|
|
|
|
2022-11-24 12:24:14 +00:00
|
|
|
const html = ref<string>('')
|
2023-02-27 19:02:11 +00:00
|
|
|
const cHead = ref<Record<'link' | 'style', Array<Record<string, string>>>>({ link: [], style: [] })
|
2022-11-24 12:24:14 +00:00
|
|
|
useHead(cHead)
|
|
|
|
|
|
|
|
function _fetchComponent () {
|
2023-01-20 12:10:58 +00:00
|
|
|
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)
|
|
|
|
}
|
2022-11-24 12:24:14 +00:00
|
|
|
// TODO: Validate response
|
2023-01-20 12:10:58 +00:00
|
|
|
return $fetch<NuxtIslandResponse>(url, {
|
2022-11-24 12:24:14 +00:00
|
|
|
params: {
|
|
|
|
...props.context,
|
|
|
|
props: props.props ? JSON.stringify(props.props) : undefined
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process.client) {
|
|
|
|
watch(props, debounce(fetchComponent, 100))
|
|
|
|
}
|
|
|
|
|
2023-01-14 01:13:48 +00:00
|
|
|
if (process.server || !nuxtApp.isHydrating) {
|
|
|
|
await fetchComponent()
|
|
|
|
}
|
|
|
|
|
2022-11-24 12:24:14 +00:00
|
|
|
return () => createStaticVNode(html.value, 1)
|
|
|
|
}
|
|
|
|
})
|