fix(ssr): watchEffect onInvalidate runner initialization (#3323)
close #3322
This commit is contained in:
parent
bf34e33c90
commit
e4b5fccd0c
@ -223,7 +223,7 @@ function doWatch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let cleanup: () => void
|
let cleanup: () => void
|
||||||
const onInvalidate: InvalidateCbRegistrator = (fn: () => void) => {
|
let onInvalidate: InvalidateCbRegistrator = (fn: () => void) => {
|
||||||
cleanup = runner.options.onStop = () => {
|
cleanup = runner.options.onStop = () => {
|
||||||
callWithErrorHandling(fn, instance, ErrorCodes.WATCH_CLEANUP)
|
callWithErrorHandling(fn, instance, ErrorCodes.WATCH_CLEANUP)
|
||||||
}
|
}
|
||||||
@ -232,6 +232,8 @@ function doWatch(
|
|||||||
// in SSR there is no need to setup an actual effect, and it should be noop
|
// in SSR there is no need to setup an actual effect, and it should be noop
|
||||||
// unless it's eager
|
// unless it's eager
|
||||||
if (__NODE_JS__ && isInSSRComponentSetup) {
|
if (__NODE_JS__ && isInSSRComponentSetup) {
|
||||||
|
// we will also not call the invalidate callback (+ runner is not set up)
|
||||||
|
onInvalidate = NOOP
|
||||||
if (!cb) {
|
if (!cb) {
|
||||||
getter()
|
getter()
|
||||||
} else if (immediate) {
|
} else if (immediate) {
|
||||||
|
@ -8,9 +8,10 @@ import {
|
|||||||
defineComponent,
|
defineComponent,
|
||||||
createTextVNode,
|
createTextVNode,
|
||||||
createStaticVNode,
|
createStaticVNode,
|
||||||
KeepAlive,
|
|
||||||
withCtx,
|
withCtx,
|
||||||
Transition
|
KeepAlive,
|
||||||
|
Transition,
|
||||||
|
watchEffect
|
||||||
} from 'vue'
|
} from 'vue'
|
||||||
import { escapeHtml } from '@vue/shared'
|
import { escapeHtml } from '@vue/shared'
|
||||||
import { renderToString } from '../src/renderToString'
|
import { renderToString } from '../src/renderToString'
|
||||||
@ -775,5 +776,15 @@ function testRender(type: string, render: typeof renderToString) {
|
|||||||
const html = await render(app)
|
const html = await render(app)
|
||||||
expect(html).toBe(`<div>hello</div>`)
|
expect(html).toBe(`<div>hello</div>`)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// https://github.com/vuejs/vue-next/issues/3322
|
||||||
|
test('effect onInvalidate does not error', async () => {
|
||||||
|
const noop = () => {}
|
||||||
|
const app = createApp({
|
||||||
|
setup: () => watchEffect(onInvalidate => onInvalidate(noop)),
|
||||||
|
render: noop,
|
||||||
|
})
|
||||||
|
expect(await render(app)).toBe('<!---->')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user