-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(devtools): override nuxt-root
- Loading branch information
Showing
9 changed files
with
223 additions
and
2,886 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import type { defineAsyncComponent } from 'vue' | ||
import { createVNode, defineComponent, onErrorCaptured } from 'vue' | ||
|
||
import { injectHead } from '@unhead/vue' | ||
|
||
// @ts-expect-error virtual file | ||
import { islandComponents } from '#build/components.islands.mjs' | ||
|
||
export default defineComponent({ | ||
name: 'IslandRenderer', | ||
props: { | ||
context: { | ||
type: Object as () => { name: string, props?: Record<string, any> }, | ||
required: true | ||
} | ||
}, | ||
setup(props) { | ||
// reset head - we don't want to have any head tags from plugin or anywhere else. | ||
const head = injectHead() | ||
head.headEntries().splice(0, head.headEntries().length) | ||
|
||
const component = islandComponents[props.context.name] as ReturnType<typeof defineAsyncComponent> | ||
|
||
if (!component) { | ||
throw createError({ | ||
statusCode: 404, | ||
statusMessage: `Island component not found: ${props.context.name}` | ||
}) | ||
} | ||
|
||
onErrorCaptured((e) => { | ||
console.log(e) | ||
}) | ||
|
||
return () => createVNode(component || 'span', { ...props.context.props, 'data-island-uid': '' }) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<template> | ||
<Suspense @resolve="onResolve"> | ||
<div v-if="abortRender" /> | ||
<ErrorComponent | ||
v-else-if="error" | ||
:error="error" | ||
/> | ||
<IslandRenderer | ||
v-else-if="islandContext" | ||
:context="islandContext" | ||
/> | ||
<component | ||
:is="SingleRenderer" | ||
v-else-if="SingleRenderer" | ||
/> | ||
<AppComponent v-else /> | ||
</Suspense> | ||
</template> | ||
|
||
<script setup> | ||
import { defineAsyncComponent, onErrorCaptured, onServerPrefetch, provide } from 'vue' | ||
import AppComponent from '#build/app-component.mjs' | ||
import ErrorComponent from '#build/error-component.mjs' | ||
// @ts-expect-error virtual file | ||
import { componentIslands } from '#build/nuxt.config.mjs' | ||
const IslandRenderer = import.meta.server && componentIslands | ||
? defineAsyncComponent(() => import('./island-renderer').then(r => r.default || r)) | ||
: () => null | ||
const nuxtApp = useNuxtApp() | ||
const onResolve = nuxtApp.deferHydration() | ||
if (import.meta.client && nuxtApp.isHydrating) { | ||
const removeErrorHook = nuxtApp.hooks.hookOnce('app:error', onResolve) | ||
useRouter().beforeEach(removeErrorHook) | ||
} | ||
const url = import.meta.server ? nuxtApp.ssrContext.url : window.location.pathname | ||
const SingleRenderer = import.meta.test && import.meta.dev && import.meta.server && url.startsWith('/__nuxt_component_test__/') && defineAsyncComponent(() => import('#build/test-component-wrapper.mjs') | ||
.then(r => r.default(import.meta.server ? url : window.location.href))) | ||
// Inject default route (outside of pages) as active route | ||
provide('route', useRoute()) | ||
// vue:setup hook | ||
const results = nuxtApp.hooks.callHookWith(hooks => hooks.map(hook => hook()), 'vue:setup') | ||
if (import.meta.dev && results && results.some(i => i && 'then' in i)) { | ||
console.error('[nuxt] Error in `vue:setup`. Callbacks must be synchronous.') | ||
} | ||
// error handling | ||
const error = useError() | ||
// render an empty <div> when plugins have thrown an error but we're not yet rendering the error page | ||
const abortRender = import.meta.server && error.value && !nuxtApp.ssrContext.error | ||
onErrorCaptured((err, target, info) => { | ||
nuxtApp.hooks.callHook('vue:error', err, target, info).catch(hookError => console.error('[nuxt] Error in `vue:error` hook', hookError)) | ||
if (import.meta.server || (isNuxtError(err) && (err.fatal || err.unhandled))) { | ||
const p = nuxtApp.runWithContext(() => showError(err)) | ||
onServerPrefetch(() => p) | ||
return false // suppress error from breaking render | ||
} | ||
}) | ||
// Component islands context | ||
const islandContext = import.meta.server && nuxtApp.ssrContext.islandContext | ||
</script> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import type { defineAsyncComponent } from 'vue' | ||
import { createVNode, defineComponent, onErrorCaptured } from 'vue' | ||
|
||
import { injectHead } from '@unhead/vue' | ||
|
||
// @ts-expect-error virtual file | ||
import { islandComponents } from '#build/components.islands.mjs' | ||
|
||
export default defineComponent({ | ||
name: 'IslandRenderer', | ||
props: { | ||
context: { | ||
type: Object as () => { name: string, props?: Record<string, any> }, | ||
required: true | ||
} | ||
}, | ||
setup(props) { | ||
// reset head - we don't want to have any head tags from plugin or anywhere else. | ||
const head = injectHead() | ||
head.headEntries().splice(0, head.headEntries().length) | ||
|
||
const component = islandComponents[props.context.name] as ReturnType<typeof defineAsyncComponent> | ||
|
||
if (!component) { | ||
throw createError({ | ||
statusCode: 404, | ||
statusMessage: `Island component not found: ${props.context.name}` | ||
}) | ||
} | ||
|
||
onErrorCaptured((e) => { | ||
console.log(e) | ||
}) | ||
|
||
return () => createVNode(component || 'span', { ...props.context.props, 'data-island-uid': '' }) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<template> | ||
<Suspense @resolve="onResolve"> | ||
<div v-if="abortRender" /> | ||
<ErrorComponent | ||
v-else-if="error" | ||
:error="error" | ||
/> | ||
<IslandRenderer | ||
v-else-if="islandContext" | ||
:context="islandContext" | ||
/> | ||
<component | ||
:is="SingleRenderer" | ||
v-else-if="SingleRenderer" | ||
/> | ||
<Devtools v-else-if="url === '/_ui/devtools'" /> | ||
<AppComponent v-else /> | ||
</Suspense> | ||
</template> | ||
|
||
<script setup> | ||
import { defineAsyncComponent, onErrorCaptured, onServerPrefetch, provide } from 'vue' | ||
import AppComponent from '#build/app-component.mjs' | ||
import ErrorComponent from '#build/error-component.mjs' | ||
// @ts-expect-error virtual file | ||
import { componentIslands } from '#build/nuxt.config.mjs' | ||
import Devtools from './components/Devtools.vue' | ||
const IslandRenderer = import.meta.server && componentIslands | ||
? defineAsyncComponent(() => import('./island-renderer').then(r => r.default || r)) | ||
: () => null | ||
const nuxtApp = useNuxtApp() | ||
const onResolve = nuxtApp.deferHydration() | ||
if (import.meta.client && nuxtApp.isHydrating) { | ||
const removeErrorHook = nuxtApp.hooks.hookOnce('app:error', onResolve) | ||
useRouter().beforeEach(removeErrorHook) | ||
} | ||
const url = import.meta.server ? nuxtApp.ssrContext.url : window.location.pathname | ||
const SingleRenderer = import.meta.test && import.meta.dev && import.meta.server && url.startsWith('/__nuxt_component_test__/') && defineAsyncComponent(() => import('#build/test-component-wrapper.mjs') | ||
.then(r => r.default(import.meta.server ? url : window.location.href))) | ||
// Inject default route (outside of pages) as active route | ||
provide('route', useRoute()) | ||
// vue:setup hook | ||
const results = nuxtApp.hooks.callHookWith(hooks => hooks.map(hook => hook()), 'vue:setup') | ||
if (import.meta.dev && results && results.some(i => i && 'then' in i)) { | ||
console.error('[nuxt] Error in `vue:setup`. Callbacks must be synchronous.') | ||
} | ||
// error handling | ||
const error = useError() | ||
// render an empty <div> when plugins have thrown an error but we're not yet rendering the error page | ||
const abortRender = import.meta.server && error.value && !nuxtApp.ssrContext.error | ||
onErrorCaptured((err, target, info) => { | ||
nuxtApp.hooks.callHook('vue:error', err, target, info).catch(hookError => console.error('[nuxt] Error in `vue:error` hook', hookError)) | ||
if (import.meta.server || (isNuxtError(err) && (err.fatal || err.unhandled))) { | ||
const p = nuxtApp.runWithContext(() => showError(err)) | ||
onServerPrefetch(() => p) | ||
return false // suppress error from breaking render | ||
} | ||
}) | ||
// Component islands context | ||
const islandContext = import.meta.server && nuxtApp.ssrContext.islandContext | ||
</script> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters