Nuxt/packages/nuxt3/src/app/composables/component.ts

55 lines
1.7 KiB
TypeScript

import { toRefs } from '@vue/reactivity'
import { defineComponent, getCurrentInstance } from 'vue'
import type { DefineComponent } from 'vue'
import { useRoute } from 'vue-router'
import type { LegacyContext } from '../legacy'
import { useNuxtApp } from '../nuxt'
import { useAsyncData } from './asyncData'
export const NuxtComponentIndicator = '__nuxt_component'
async function runLegacyAsyncData (res: Record<string, any> | Promise<Record<string, any>>, fn: (context: LegacyContext) => Promise<Record<string, any>>) {
const nuxt = useNuxtApp()
const route = useRoute()
const vm = getCurrentInstance()
const { fetchKey } = vm.proxy.$options
const key = typeof fetchKey === 'function' ? fetchKey(() => '') : fetchKey || route.fullPath
const { data } = await useAsyncData(`options:asyncdata:${key}`, () => fn(nuxt._legacyContext))
Object.assign(await res, toRefs(data))
}
export const defineNuxtComponent: typeof defineComponent =
function defineNuxtComponent (options: any): any {
const { setup } = options
// Avoid wrapping if no options api is used
if (!setup && !options.asyncData) {
return {
[NuxtComponentIndicator]: true,
...options
}
}
return {
[NuxtComponentIndicator]: true,
...options,
setup (props, ctx) {
const res = setup?.(props, ctx) || {}
let promises: unknown[] | undefined = []
promises = promises || []
if (options.asyncData) {
promises.push(runLegacyAsyncData(res, options.asyncData))
}
return Promise.resolve(res)
.then(() => Promise.all(promises))
.then(() => res)
.finally(() => {
promises.length = 0
promises = null
})
}
} as DefineComponent
}