UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

50 lines (49 loc) 1.66 kB
import { reactive, ref, shallowReactive, shallowRef } from "vue"; import destr from "destr"; import { definePayloadReviver, getNuxtClientPayload } from "../composables/payload.js"; import { createError } from "../composables/error.js"; import { defineNuxtPlugin, useNuxtApp } from "../nuxt.js"; import { componentIslands } from "#build/nuxt.config.mjs"; const revivers = { NuxtError: (data) => createError(data), EmptyShallowRef: (data) => shallowRef(data === "_" ? void 0 : data === "0n" ? BigInt(0) : destr(data)), EmptyRef: (data) => ref(data === "_" ? void 0 : data === "0n" ? BigInt(0) : destr(data)), ShallowRef: (data) => shallowRef(data), ShallowReactive: (data) => shallowReactive(data), Ref: (data) => ref(data), Reactive: (data) => reactive(data) }; if (componentIslands) { revivers.Island = ({ key, params, result }) => { const nuxtApp = useNuxtApp(); if (!nuxtApp.isHydrating) { nuxtApp.payload.data[key] = nuxtApp.payload.data[key] || $fetch(`/__nuxt_island/${key}.json`, { responseType: "json", ...params ? { params } : {} }).then((r) => { nuxtApp.payload.data[key] = r; return r; }); } return { html: "", state: {}, head: { link: [], style: [] }, ...result }; }; } export default defineNuxtPlugin({ name: "nuxt:revive-payload:client", order: -30, async setup(nuxtApp) { for (const reviver in revivers) { definePayloadReviver(reviver, revivers[reviver]); } Object.assign(nuxtApp.payload, await nuxtApp.runWithContext(getNuxtClientPayload)); window.__NUXT__ = nuxtApp.payload; } });