Compare commits

...

14 Commits

Author SHA1 Message Date
Julien Huang 62a7534e0f
Merge 0861bdb7ba into 52faf52cde 2024-09-19 20:08:13 +03:00
Julien Huang 0861bdb7ba
Merge branch 'main' into feat/islands-use-cache 2024-07-28 22:56:02 +02:00
Julien Huang 3d71ef18a2
Merge branch 'main' into feat/islands-use-cache 2024-07-16 22:37:41 +02:00
Julien Huang 0efca895ba test: add test 2024-06-14 00:21:40 +02:00
Julien Huang 5dfc163547 chore: remove log 2024-06-13 23:39:51 +02:00
Julien Huang 211900eb31 fix: fix on page change 2024-06-13 23:39:16 +02:00
Julien Huang c62776b2e4 Merge remote-tracking branch 'origin/main' into feat/islands-use-cache 2024-06-13 22:42:04 +02:00
julien huang 68a4d3b4ce Merge branch 'main' into feat/islands-use-cache 2024-03-06 22:32:32 +01:00
autofix-ci[bot] acc23a0b72
[autofix.ci] apply automated fixes 2023-11-15 23:07:29 +00:00
julien huang 4dad40c127 test: refactor 2023-11-15 22:56:04 +01:00
julien huang 0214f703fa test: test setCache 2023-11-15 22:55:28 +01:00
julien huang c94afe4fa0 docs: update doc 2023-11-15 00:16:20 +01:00
julien huang f2643d8779 test: add tests 2023-11-15 00:10:41 +01:00
Julien Huang b48053a078 feat: add useCache and setCache for nuxtislands 2023-11-11 20:24:08 +01:00
4 changed files with 97 additions and 8 deletions

View File

@ -32,7 +32,10 @@ Server only components use `<NuxtIsland>` under the hood
- **type**: `Record<string, any>`
- `source`: Remote source to call the island to render.
- **type**: `string`
- **dangerouslyLoadClientComponents**: Required to load components from a remote source.
- `useCache`: Use the cached payload if available
- **type**: `boolean`
- **default**: `true`
- **`dangerouslyLoadClientComponents`**: Required to load components from a remote source.
- **type**: `boolean`
- **default**: `false`

View File

@ -75,6 +75,14 @@ export default defineComponent({
type: Boolean,
default: false,
},
/**
* use the NuxtIslandResponse which has been cached if available
* @default true
*/
useCache: {
type: Boolean,
default: true,
},
},
emits: ['error'],
async setup (props, { slots, expose, emit }) {
@ -239,13 +247,13 @@ export default defineComponent({
}
if (import.meta.client) {
watch(props, debounce(() => fetchComponent(), 100), { deep: true })
watch(props, debounce(() => fetchComponent(!props.useCache), 100), { deep: true })
}
if (import.meta.client && !instance.vnode.el && props.lazy) {
fetchComponent()
fetchComponent(!instance.vnode.el && !props.useCache)
} else if (import.meta.server || !instance.vnode.el || !nuxtApp.payload.serverRendered) {
await fetchComponent()
await fetchComponent(!instance.vnode.el && !props.useCache)
} else if (selectiveClient && canLoadClientComponent.value) {
await loadComponents(props.source, payloads.components)
}

View File

@ -8,7 +8,7 @@ export const createServerComponent = (name: string) => {
return defineComponent({
name,
inheritAttrs: false,
props: { lazy: Boolean },
props: { lazy: Boolean, useCache: { type: Boolean, default: true } },
emits: ['error'],
setup (props, { attrs, slots, expose, emit }) {
const vm = getCurrentInstance()
@ -22,6 +22,7 @@ export const createServerComponent = (name: string) => {
return h(NuxtIsland, {
name,
lazy: props.lazy,
useCache: props.useCache,
props: attrs,
scopeId: vm?.vnode.scopeId,
ref: islandRef,
@ -40,7 +41,7 @@ export const createIslandPage = (name: string) => {
name,
inheritAttrs: false,
props: { lazy: Boolean },
async setup (props, { slots, expose }) {
async setup(props, { slots, expose }) {
const islandRef = ref<null | typeof NuxtIsland>(null)
expose({

View File

@ -1,5 +1,4 @@
import { beforeEach } from 'node:test'
import { describe, expect, it, vi } from 'vitest'
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
import { defineComponent, h, nextTick, popScopeId, pushScopeId } from 'vue'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import { createServerComponent } from '../../packages/nuxt/src/components/runtime/server-component'
@ -34,6 +33,11 @@ function expectNoConsoleIssue () {
beforeEach(() => {
consoleError.mockClear()
consoleWarn.mockClear()
useNuxtApp().payload.data = {}
})
afterEach(() => {
if (vi.isMockFunction(fetch)) { vi.mocked(fetch).mockReset() }
})
describe('runtime server component', () => {
@ -135,6 +139,22 @@ describe('runtime server component', () => {
})
it('expect NuxtIsland to have parent scopeId', async () => {
const stubFetch = vi.fn(() => {
return {
id: '1234',
html: `<div data-island-uid>hello<div data-island-uid="not-to-be-replaced" data-island-component="r"></div></div>`,
head: {
link: [],
style: [],
},
json () {
return this
},
}
})
vi.stubGlobal('fetch', stubFetch)
const wrapper = await mountSuspended(defineComponent({
render () {
pushScopeId('data-v-654e2b21')
@ -330,6 +350,63 @@ describe('client components', () => {
<!--teleport end-->"
`)
vi.mocked(fetch).mockReset()
expectNoConsoleIssue()
})
})
describe('reuse paylaod', () => {
let count = 0
const stubFetch = () => {
count++
return {
id: '123',
html: `<div>${count.toString()}</div>`,
state: {},
head: {
link: [],
style: [],
},
json () {
return this
},
}
}
beforeEach(() => {
count = 0
vi.mocked(fetch).mockReset()
vi.stubGlobal('fetch', vi.fn(stubFetch))
})
it('expect payload to be reused', async () => {
const component1 = await mountSuspended(createServerComponent('reuseCache'))
expect(fetch).toHaveBeenCalledOnce()
expect(component1.html()).toBe('<div>1</div>')
await component1.unmount()
expect(fetch).toHaveBeenCalledOnce()
const component2 = await mountSuspended(createServerComponent('reuseCache'))
expect(component2.html()).toBe('<div>1</div>')
})
it('expect to re-fetch the island', async () => {
const component = await mountSuspended(createServerComponent('withoutCache'), {
props: {
useCache: false,
onError (e) {
console.log(e)
},
},
})
await nextTick()
expect(fetch).toHaveBeenCalledOnce()
expect(component.html()).toBe('<div>1</div>')
await component.unmount()
const component2 = await mountSuspended(createServerComponent('withoutCache'), {
props: {
useCache: false,
},
})
expect(fetch).toHaveBeenCalledTimes(2)
expect(component2.html()).toBe('<div>2</div>')
})
})