| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064 |
- import {
- type ComponentInternalInstance,
- type ComponentPublicInstance,
- computed,
- defineComponent,
- getCurrentInstance,
- nextTick,
- onErrorCaptured,
- onWatcherCleanup,
- reactive,
- ref,
- watch,
- watchEffect,
- } from '../src/index'
- import {
- type TestElement,
- createApp,
- h,
- nodeOps,
- onMounted,
- render,
- serializeInner,
- watchPostEffect,
- watchSyncEffect,
- } from '@vue/runtime-test'
- import {
- type DebuggerEvent,
- ITERATE_KEY,
- type Ref,
- type ShallowRef,
- TrackOpTypes,
- TriggerOpTypes,
- effectScope,
- onScopeDispose,
- shallowReactive,
- shallowRef,
- toRef,
- triggerRef,
- } from '@vue/reactivity'
- import { renderToString } from '@vue/server-renderer'
- describe('api: watch', () => {
- it('effect', async () => {
- const state = reactive({ count: 0 })
- let dummy
- watchEffect(() => {
- dummy = state.count
- })
- expect(dummy).toBe(0)
- state.count++
- await nextTick()
- expect(dummy).toBe(1)
- })
- it('watching single source: getter', async () => {
- const state = reactive({ count: 0 })
- let dummy
- watch(
- () => state.count,
- (count, prevCount) => {
- dummy = [count, prevCount]
- // assert types
- count + 1
- if (prevCount) {
- prevCount + 1
- }
- },
- )
- state.count++
- await nextTick()
- expect(dummy).toMatchObject([1, 0])
- })
- it('watching single source: ref', async () => {
- const count = ref(0)
- let dummy
- watch(count, (count, prevCount) => {
- dummy = [count, prevCount]
- // assert types
- count + 1
- if (prevCount) {
- prevCount + 1
- }
- })
- count.value++
- await nextTick()
- expect(dummy).toMatchObject([1, 0])
- })
- it('watching single source: array', async () => {
- const array = reactive([] as number[])
- const spy = vi.fn()
- watch(array, spy)
- array.push(1)
- await nextTick()
- expect(spy).toBeCalledTimes(1)
- expect(spy).toBeCalledWith([1], [1], expect.anything())
- })
- it('should not call functions inside a reactive source array', () => {
- const spy1 = vi.fn()
- const array = reactive([spy1])
- const spy2 = vi.fn()
- watch(array, spy2, { immediate: true })
- expect(spy1).toBeCalledTimes(0)
- expect(spy2).toBeCalledWith([spy1], undefined, expect.anything())
- })
- it('should not unwrap refs in a reactive source array', async () => {
- const val = ref({ foo: 1 })
- const array = reactive([val])
- const spy = vi.fn()
- watch(array, spy, { immediate: true })
- expect(spy).toBeCalledTimes(1)
- expect(spy).toBeCalledWith([val], undefined, expect.anything())
- // deep by default
- val.value.foo++
- await nextTick()
- expect(spy).toBeCalledTimes(2)
- expect(spy).toBeCalledWith([val], [val], expect.anything())
- })
- it('should not fire if watched getter result did not change', async () => {
- const spy = vi.fn()
- const n = ref(0)
- watch(() => n.value % 2, spy)
- n.value++
- await nextTick()
- expect(spy).toBeCalledTimes(1)
- n.value += 2
- await nextTick()
- // should not be called again because getter result did not change
- expect(spy).toBeCalledTimes(1)
- })
- it('watching single source: computed ref', async () => {
- const count = ref(0)
- const plus = computed(() => count.value + 1)
- let dummy
- watch(plus, (count, prevCount) => {
- dummy = [count, prevCount]
- // assert types
- count + 1
- if (prevCount) {
- prevCount + 1
- }
- })
- count.value++
- await nextTick()
- expect(dummy).toMatchObject([2, 1])
- })
- it('watching primitive with deep: true', async () => {
- const count = ref(0)
- let dummy
- watch(
- count,
- (c, prevCount) => {
- dummy = [c, prevCount]
- },
- {
- deep: true,
- },
- )
- count.value++
- await nextTick()
- expect(dummy).toMatchObject([1, 0])
- })
- it('directly watching reactive object (with automatic deep: true)', async () => {
- const src = reactive({
- count: 0,
- })
- let dummy
- watch(src, ({ count }) => {
- dummy = count
- })
- src.count++
- await nextTick()
- expect(dummy).toBe(1)
- })
- it('directly watching reactive object with explicit deep: false', async () => {
- const src = reactive({
- state: {
- count: 0,
- },
- })
- let dummy
- watch(
- src,
- ({ state }) => {
- dummy = state?.count
- },
- {
- deep: false,
- },
- )
- // nested should not trigger
- src.state.count++
- await nextTick()
- expect(dummy).toBe(undefined)
- // root level should trigger
- src.state = { count: 1 }
- await nextTick()
- expect(dummy).toBe(1)
- })
- it('directly watching reactive array with explicit deep: false', async () => {
- const val = ref(1)
- const array: any[] = reactive([val])
- const spy = vi.fn()
- watch(array, spy, { immediate: true, deep: false })
- expect(spy).toBeCalledTimes(1)
- expect(spy).toBeCalledWith([val], undefined, expect.anything())
- val.value++
- await nextTick()
- expect(spy).toBeCalledTimes(1)
- array[1] = 2
- await nextTick()
- expect(spy).toBeCalledTimes(2)
- expect(spy).toBeCalledWith([val, 2], [val, 2], expect.anything())
- })
- // #9916
- it('watching shallow reactive array with deep: false', async () => {
- class foo {
- prop1: ShallowRef<string> = shallowRef('')
- prop2: string = ''
- }
- const obj1 = new foo()
- const obj2 = new foo()
- const collection = shallowReactive([obj1, obj2])
- const cb = vi.fn()
- watch(collection, cb, { deep: false })
- collection[0].prop1.value = 'foo'
- await nextTick()
- // should not trigger
- expect(cb).toBeCalledTimes(0)
- collection.push(new foo())
- await nextTick()
- // should trigger on array self mutation
- expect(cb).toBeCalledTimes(1)
- })
- it('should still respect deep: true on shallowReactive source', async () => {
- const obj = reactive({ a: 1 })
- const arr = shallowReactive([obj])
- let dummy
- watch(
- arr,
- () => {
- dummy = arr[0].a
- },
- { deep: true },
- )
- obj.a++
- await nextTick()
- expect(dummy).toBe(2)
- })
- it('watching multiple sources', async () => {
- const state = reactive({ count: 1 })
- const count = ref(1)
- const plus = computed(() => count.value + 1)
- let dummy
- watch([() => state.count, count, plus], (vals, oldVals) => {
- dummy = [vals, oldVals]
- // assert types
- vals.concat(1)
- oldVals.concat(1)
- })
- state.count++
- count.value++
- await nextTick()
- expect(dummy).toMatchObject([
- [2, 2, 3],
- [1, 1, 2],
- ])
- })
- it('watching multiple sources: undefined initial values and immediate: true', async () => {
- const a = ref()
- const b = ref()
- let called = false
- watch(
- [a, b],
- ([newA, newB], [oldA, oldB]) => {
- called = true
- expect([newA, newB]).toMatchObject([undefined, undefined])
- expect([oldA, oldB]).toMatchObject([undefined, undefined])
- },
- { immediate: true },
- )
- await nextTick()
- expect(called).toBe(true)
- })
- it('watching multiple sources: readonly array', async () => {
- const state = reactive({ count: 1 })
- const status = ref(false)
- let dummy
- watch([() => state.count, status] as const, (vals, oldVals) => {
- dummy = [vals, oldVals]
- const [count] = vals
- const [, oldStatus] = oldVals
- // assert types
- count + 1
- oldStatus === true
- })
- state.count++
- status.value = true
- await nextTick()
- expect(dummy).toMatchObject([
- [2, true],
- [1, false],
- ])
- })
- it('watching multiple sources: reactive object (with automatic deep: true)', async () => {
- const src = reactive({ count: 0 })
- let dummy
- watch([src], ([state]) => {
- dummy = state
- // assert types
- state.count === 1
- })
- src.count++
- await nextTick()
- expect(dummy).toMatchObject({ count: 1 })
- })
- it('warn invalid watch source', () => {
- // @ts-expect-error
- watch(1, () => {})
- expect(`Invalid watch source`).toHaveBeenWarned()
- })
- it('warn invalid watch source: multiple sources', () => {
- watch([1], () => {})
- expect(`Invalid watch source`).toHaveBeenWarned()
- })
- it('stopping the watcher (effect)', async () => {
- const state = reactive({ count: 0 })
- let dummy
- const stop = watchEffect(() => {
- dummy = state.count
- })
- expect(dummy).toBe(0)
- stop()
- state.count++
- await nextTick()
- // should not update
- expect(dummy).toBe(0)
- })
- it('stopping the watcher (SSR)', async () => {
- let dummy = 0
- const count = ref<number>(1)
- const captureValue = (value: number) => {
- dummy = value
- }
- const watchCallback = vi.fn(newValue => {
- captureValue(newValue)
- })
- const Comp = defineComponent({
- created() {
- const getter = () => this.count
- captureValue(getter()) // sets dummy to 1
- const stop = this.$watch(getter, watchCallback)
- stop()
- this.count = 2 // shouldn't trigger side effect
- },
- render() {
- return h('div', this.count)
- },
- setup() {
- return { count }
- },
- })
- let html
- html = await renderToString(h(Comp))
- // should not throw here
- expect(html).toBe(`<div>2</div>`)
- expect(watchCallback).not.toHaveBeenCalled()
- expect(dummy).toBe(1)
- await nextTick()
- count.value = 3 // shouldn't trigger side effect
- await nextTick()
- expect(watchCallback).not.toHaveBeenCalled()
- expect(dummy).toBe(1)
- })
- it('stopping the watcher (with source)', async () => {
- const state = reactive({ count: 0 })
- let dummy
- const stop = watch(
- () => state.count,
- count => {
- dummy = count
- },
- )
- state.count++
- await nextTick()
- expect(dummy).toBe(1)
- stop()
- state.count++
- await nextTick()
- // should not update
- expect(dummy).toBe(1)
- })
- it('cleanup registration (effect)', async () => {
- const state = reactive({ count: 0 })
- const cleanup = vi.fn()
- let dummy
- const stop = watchEffect(onCleanup => {
- onCleanup(cleanup)
- dummy = state.count
- })
- expect(dummy).toBe(0)
- state.count++
- await nextTick()
- expect(cleanup).toHaveBeenCalledTimes(1)
- expect(dummy).toBe(1)
- stop()
- expect(cleanup).toHaveBeenCalledTimes(2)
- })
- it('cleanup registration (with source)', async () => {
- const count = ref(0)
- const cleanup = vi.fn()
- let dummy
- const stop = watch(count, (count, prevCount, onCleanup) => {
- onCleanup(cleanup)
- dummy = count
- })
- count.value++
- await nextTick()
- expect(cleanup).toHaveBeenCalledTimes(0)
- expect(dummy).toBe(1)
- count.value++
- await nextTick()
- expect(cleanup).toHaveBeenCalledTimes(1)
- expect(dummy).toBe(2)
- stop()
- expect(cleanup).toHaveBeenCalledTimes(2)
- })
- it('onWatcherCleanup', async () => {
- const count = ref(0)
- const cleanupEffect = vi.fn()
- const cleanupWatch = vi.fn()
- const stopEffect = watchEffect(() => {
- onWatcherCleanup(cleanupEffect)
- count.value
- })
- const stopWatch = watch(count, () => {
- onWatcherCleanup(cleanupWatch)
- })
- count.value++
- await nextTick()
- expect(cleanupEffect).toHaveBeenCalledTimes(1)
- expect(cleanupWatch).toHaveBeenCalledTimes(0)
- count.value++
- await nextTick()
- expect(cleanupEffect).toHaveBeenCalledTimes(2)
- expect(cleanupWatch).toHaveBeenCalledTimes(1)
- stopEffect()
- expect(cleanupEffect).toHaveBeenCalledTimes(3)
- stopWatch()
- expect(cleanupWatch).toHaveBeenCalledTimes(2)
- })
- it('flush timing: pre (default)', async () => {
- const count = ref(0)
- const count2 = ref(0)
- let callCount = 0
- let result1
- let result2
- const assertion = vi.fn((count, count2Value) => {
- callCount++
- // on mount, the watcher callback should be called before DOM render
- // on update, should be called before the count is updated
- const expectedDOM = callCount === 1 ? `` : `${count - 1}`
- result1 = serializeInner(root) === expectedDOM
- // in a pre-flush callback, all state should have been updated
- const expectedState = callCount - 1
- result2 = count === expectedState && count2Value === expectedState
- })
- const Comp = {
- setup() {
- watchEffect(() => {
- assertion(count.value, count2.value)
- })
- return () => count.value
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(assertion).toHaveBeenCalledTimes(1)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- count.value++
- count2.value++
- await nextTick()
- // two mutations should result in 1 callback execution
- expect(assertion).toHaveBeenCalledTimes(2)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- })
- it('flush timing: post', async () => {
- const count = ref(0)
- let result
- const assertion = vi.fn(count => {
- result = serializeInner(root) === `${count}`
- })
- const Comp = {
- setup() {
- watchEffect(
- () => {
- assertion(count.value)
- },
- { flush: 'post' },
- )
- return () => count.value
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(assertion).toHaveBeenCalledTimes(1)
- expect(result).toBe(true)
- count.value++
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(2)
- expect(result).toBe(true)
- })
- it('watchPostEffect', async () => {
- const count = ref(0)
- let result
- const assertion = vi.fn(count => {
- result = serializeInner(root) === `${count}`
- })
- const Comp = {
- setup() {
- watchPostEffect(() => {
- assertion(count.value)
- })
- return () => count.value
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(assertion).toHaveBeenCalledTimes(1)
- expect(result).toBe(true)
- count.value++
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(2)
- expect(result).toBe(true)
- })
- it('flush timing: sync', async () => {
- const count = ref(0)
- const count2 = ref(0)
- let callCount = 0
- let result1
- let result2
- const assertion = vi.fn(count => {
- callCount++
- // on mount, the watcher callback should be called before DOM render
- // on update, should be called before the count is updated
- const expectedDOM = callCount === 1 ? `` : `${count - 1}`
- result1 = serializeInner(root) === expectedDOM
- // in a sync callback, state mutation on the next line should not have
- // executed yet on the 2nd call, but will be on the 3rd call.
- const expectedState = callCount < 3 ? 0 : 1
- result2 = count2.value === expectedState
- })
- const Comp = {
- setup() {
- watchEffect(
- () => {
- assertion(count.value)
- },
- {
- flush: 'sync',
- },
- )
- return () => count.value
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(assertion).toHaveBeenCalledTimes(1)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- count.value++
- count2.value++
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(3)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- })
- it('watchSyncEffect', async () => {
- const count = ref(0)
- const count2 = ref(0)
- let callCount = 0
- let result1
- let result2
- const assertion = vi.fn(count => {
- callCount++
- // on mount, the watcher callback should be called before DOM render
- // on update, should be called before the count is updated
- const expectedDOM = callCount === 1 ? `` : `${count - 1}`
- result1 = serializeInner(root) === expectedDOM
- // in a sync callback, state mutation on the next line should not have
- // executed yet on the 2nd call, but will be on the 3rd call.
- const expectedState = callCount < 3 ? 0 : 1
- result2 = count2.value === expectedState
- })
- const Comp = {
- setup() {
- watchSyncEffect(() => {
- assertion(count.value)
- })
- return () => count.value
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- expect(assertion).toHaveBeenCalledTimes(1)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- count.value++
- count2.value++
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(3)
- expect(result1).toBe(true)
- expect(result2).toBe(true)
- })
- it('should not fire on component unmount w/ flush: post', async () => {
- const toggle = ref(true)
- const cb = vi.fn()
- const Comp = {
- setup() {
- watch(toggle, cb, { flush: 'post' })
- },
- render() {},
- }
- const App = {
- render() {
- return toggle.value ? h(Comp) : null
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(cb).not.toHaveBeenCalled()
- toggle.value = false
- await nextTick()
- expect(cb).not.toHaveBeenCalled()
- })
- // #2291
- it('should not fire on component unmount w/ flush: pre', async () => {
- const toggle = ref(true)
- const cb = vi.fn()
- const Comp = {
- setup() {
- watch(toggle, cb, { flush: 'pre' })
- },
- render() {},
- }
- const App = {
- render() {
- return toggle.value ? h(Comp) : null
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(cb).not.toHaveBeenCalled()
- toggle.value = false
- await nextTick()
- expect(cb).not.toHaveBeenCalled()
- })
- // #7030
- it('should not fire on child component unmount w/ flush: pre', async () => {
- const visible = ref(true)
- const cb = vi.fn()
- const Parent = defineComponent({
- props: ['visible'],
- render() {
- return visible.value ? h(Comp) : null
- },
- })
- const Comp = {
- setup() {
- watch(visible, cb, { flush: 'pre' })
- },
- render() {},
- }
- const App = {
- render() {
- return h(Parent, {
- visible: visible.value,
- })
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(cb).not.toHaveBeenCalled()
- visible.value = false
- await nextTick()
- expect(cb).not.toHaveBeenCalled()
- })
- // #7030
- it('flush: pre watcher in child component should not fire before parent update', async () => {
- const b = ref(0)
- const calls: string[] = []
- const Comp = {
- setup() {
- watch(
- () => b.value,
- val => {
- calls.push('watcher child')
- },
- { flush: 'pre' },
- )
- return () => {
- b.value
- calls.push('render child')
- }
- },
- }
- const Parent = {
- props: ['a'],
- setup() {
- watch(
- () => b.value,
- val => {
- calls.push('watcher parent')
- },
- { flush: 'pre' },
- )
- return () => {
- b.value
- calls.push('render parent')
- return h(Comp)
- }
- },
- }
- const App = {
- render() {
- return h(Parent, {
- a: b.value,
- })
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(calls).toEqual(['render parent', 'render child'])
- b.value++
- await nextTick()
- expect(calls).toEqual([
- 'render parent',
- 'render child',
- 'watcher parent',
- 'render parent',
- 'watcher child',
- 'render child',
- ])
- })
- // #1763
- it('flush: pre watcher watching props should fire before child update', async () => {
- const a = ref(0)
- const b = ref(0)
- const c = ref(0)
- const calls: string[] = []
- const Comp = {
- props: ['a', 'b'],
- setup(props: any) {
- watch(
- () => props.a + props.b,
- () => {
- calls.push('watcher 1')
- c.value++
- },
- { flush: 'pre' },
- )
- // #1777 chained pre-watcher
- watch(
- c,
- () => {
- calls.push('watcher 2')
- },
- { flush: 'pre' },
- )
- return () => {
- c.value
- calls.push('render')
- }
- },
- }
- const App = {
- render() {
- return h(Comp, { a: a.value, b: b.value })
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(calls).toEqual(['render'])
- // both props are updated
- // should trigger pre-flush watcher first and only once
- // then trigger child render
- a.value++
- b.value++
- await nextTick()
- expect(calls).toEqual(['render', 'watcher 1', 'watcher 2', 'render'])
- })
- // #5721
- it('flush: pre triggered in component setup should be buffered and called before mounted', () => {
- const count = ref(0)
- const calls: string[] = []
- const App = {
- render() {},
- setup() {
- watch(
- count,
- () => {
- calls.push('watch ' + count.value)
- },
- { flush: 'pre' },
- )
- onMounted(() => {
- calls.push('mounted')
- })
- // mutate multiple times
- count.value++
- count.value++
- count.value++
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(calls).toMatchObject(['watch 3', 'mounted'])
- })
- // #1852
- it('flush: post watcher should fire after template refs updated', async () => {
- const toggle = ref(false)
- let dom: TestElement | null = null
- const App = {
- setup() {
- const domRef = ref<TestElement | null>(null)
- watch(
- toggle,
- () => {
- dom = domRef.value
- },
- { flush: 'post' },
- )
- return () => {
- return toggle.value ? h('p', { ref: domRef }) : null
- }
- },
- }
- render(h(App), nodeOps.createElement('div'))
- expect(dom).toBe(null)
- toggle.value = true
- await nextTick()
- expect(dom!.tag).toBe('p')
- })
- it('deep', async () => {
- const state = reactive({
- nested: {
- count: ref(0),
- },
- array: [1, 2, 3],
- map: new Map([
- ['a', 1],
- ['b', 2],
- ]),
- set: new Set([1, 2, 3]),
- })
- let dummy
- watch(
- () => state,
- state => {
- dummy = [
- state.nested.count,
- state.array[0],
- state.map.get('a'),
- state.set.has(1),
- ]
- },
- { deep: true },
- )
- state.nested.count++
- await nextTick()
- expect(dummy).toEqual([1, 1, 1, true])
- // nested array mutation
- state.array[0] = 2
- await nextTick()
- expect(dummy).toEqual([1, 2, 1, true])
- // nested map mutation
- state.map.set('a', 2)
- await nextTick()
- expect(dummy).toEqual([1, 2, 2, true])
- // nested set mutation
- state.set.delete(1)
- await nextTick()
- expect(dummy).toEqual([1, 2, 2, false])
- })
- it('watching deep ref', async () => {
- const count = ref(0)
- const double = computed(() => count.value * 2)
- const state = reactive([count, double])
- let dummy
- watch(
- () => state,
- state => {
- dummy = [state[0].value, state[1].value]
- },
- { deep: true },
- )
- count.value++
- await nextTick()
- expect(dummy).toEqual([1, 2])
- })
- it('deep with symbols', async () => {
- const symbol1 = Symbol()
- const symbol2 = Symbol()
- const symbol3 = Symbol()
- const symbol4 = Symbol()
- const raw: any = {
- [symbol1]: {
- [symbol2]: 1,
- },
- }
- Object.defineProperty(raw, symbol3, {
- writable: true,
- enumerable: false,
- value: 1,
- })
- const state = reactive(raw)
- const spy = vi.fn()
- watch(() => state, spy, { deep: true })
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(0)
- state[symbol1][symbol2] = 2
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- // Non-enumerable properties don't trigger deep watchers
- state[symbol3] = 3
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- // Adding a new symbol property
- state[symbol4] = 1
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(2)
- // Removing a symbol property
- delete state[symbol4]
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(3)
- })
- it('immediate', async () => {
- const count = ref(0)
- const cb = vi.fn()
- watch(count, cb, { immediate: true })
- expect(cb).toHaveBeenCalledTimes(1)
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(2)
- })
- it('immediate: triggers when initial value is null', async () => {
- const state = ref(null)
- const spy = vi.fn()
- watch(() => state.value, spy, { immediate: true })
- expect(spy).toHaveBeenCalled()
- })
- it('immediate: triggers when initial value is undefined', async () => {
- const state = ref()
- const spy = vi.fn()
- watch(() => state.value, spy, { immediate: true })
- expect(spy).toHaveBeenCalledWith(undefined, undefined, expect.any(Function))
- state.value = 3
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(2)
- // testing if undefined can trigger the watcher
- state.value = undefined
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(3)
- // it shouldn't trigger if the same value is set
- state.value = undefined
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(3)
- })
- it('warn immediate option when using effect', async () => {
- const count = ref(0)
- let dummy
- watchEffect(
- () => {
- dummy = count.value
- },
- // @ts-expect-error
- { immediate: false },
- )
- expect(dummy).toBe(0)
- expect(`"immediate" option is only respected`).toHaveBeenWarned()
- count.value++
- await nextTick()
- expect(dummy).toBe(1)
- })
- it('warn and not respect deep option when using effect', async () => {
- const arr = ref([1, [2]])
- const spy = vi.fn()
- watchEffect(
- () => {
- spy()
- return arr
- },
- // @ts-expect-error
- { deep: true },
- )
- expect(spy).toHaveBeenCalledTimes(1)
- ;(arr.value[1] as Array<number>)[0] = 3
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- expect(`"deep" option is only respected`).toHaveBeenWarned()
- })
- it('onTrack', async () => {
- const events: DebuggerEvent[] = []
- let dummy
- const onTrack = vi.fn((e: DebuggerEvent) => {
- events.push(e)
- })
- const obj = reactive({ foo: 1, bar: 2 })
- watchEffect(
- () => {
- dummy = [obj.foo, 'bar' in obj, Object.keys(obj)]
- },
- { onTrack },
- )
- await nextTick()
- expect(dummy).toEqual([1, true, ['foo', 'bar']])
- expect(onTrack).toHaveBeenCalledTimes(3)
- expect(events).toMatchObject([
- {
- target: obj,
- type: TrackOpTypes.GET,
- key: 'foo',
- },
- {
- target: obj,
- type: TrackOpTypes.HAS,
- key: 'bar',
- },
- {
- target: obj,
- type: TrackOpTypes.ITERATE,
- key: ITERATE_KEY,
- },
- ])
- })
- it('onTrigger', async () => {
- const events: DebuggerEvent[] = []
- let dummy
- const onTrigger = vi.fn((e: DebuggerEvent) => {
- events.push(e)
- })
- const obj = reactive<{ foo?: number }>({ foo: 1 })
- watchEffect(
- () => {
- dummy = obj.foo
- },
- { onTrigger },
- )
- await nextTick()
- expect(dummy).toBe(1)
- obj.foo!++
- await nextTick()
- expect(dummy).toBe(2)
- expect(onTrigger).toHaveBeenCalledTimes(1)
- expect(events[0]).toMatchObject({
- type: TriggerOpTypes.SET,
- key: 'foo',
- oldValue: 1,
- newValue: 2,
- })
- delete obj.foo
- await nextTick()
- expect(dummy).toBeUndefined()
- expect(onTrigger).toHaveBeenCalledTimes(2)
- expect(events[1]).toMatchObject({
- type: TriggerOpTypes.DELETE,
- key: 'foo',
- oldValue: 2,
- })
- })
- it('should work sync', () => {
- const v = ref(1)
- let calls = 0
- watch(
- v,
- () => {
- ++calls
- },
- {
- flush: 'sync',
- },
- )
- expect(calls).toBe(0)
- v.value++
- expect(calls).toBe(1)
- })
- test('should force trigger on triggerRef when watching a shallow ref', async () => {
- const v = shallowRef({ a: 1 })
- let sideEffect = 0
- watch(v, obj => {
- sideEffect = obj.a
- })
- v.value = v.value
- await nextTick()
- // should not trigger
- expect(sideEffect).toBe(0)
- v.value.a++
- await nextTick()
- // should not trigger
- expect(sideEffect).toBe(0)
- triggerRef(v)
- await nextTick()
- // should trigger now
- expect(sideEffect).toBe(2)
- })
- test('should force trigger on triggerRef when watching multiple sources: shallow ref array', async () => {
- const v = shallowRef([] as any)
- const spy = vi.fn()
- watch([v], () => {
- spy()
- })
- v.value.push(1)
- triggerRef(v)
- await nextTick()
- // should trigger now
- expect(spy).toHaveBeenCalledTimes(1)
- })
- test('should force trigger on triggerRef with toRef from reactive', async () => {
- const foo = reactive({ bar: 1 })
- const bar = toRef(foo, 'bar')
- const spy = vi.fn()
- watchEffect(() => {
- bar.value
- spy()
- })
- expect(spy).toHaveBeenCalledTimes(1)
- triggerRef(bar)
- await nextTick()
- // should trigger now
- expect(spy).toHaveBeenCalledTimes(2)
- })
- // #2125
- test('watchEffect should not recursively trigger itself', async () => {
- const spy = vi.fn()
- const price = ref(10)
- const history = ref<number[]>([])
- watchEffect(() => {
- history.value.push(price.value)
- spy()
- })
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- })
- // #2231
- test('computed refs should not trigger watch if value has no change', async () => {
- const spy = vi.fn()
- const source = ref(0)
- const price = computed(() => source.value === 0)
- watch(price, spy)
- source.value++
- await nextTick()
- source.value++
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- })
- // https://github.com/vuejs/core/issues/2381
- test('$watch should always register its effects with its own instance', async () => {
- let instance: ComponentInternalInstance | null
- let _show: Ref<boolean>
- const Child = defineComponent({
- render: () => h('div'),
- mounted() {
- instance = getCurrentInstance()
- },
- unmounted() {},
- })
- const Comp = defineComponent({
- setup() {
- const comp = ref<ComponentPublicInstance | undefined>()
- const show = ref(true)
- _show = show
- return { comp, show }
- },
- render() {
- return this.show
- ? h(Child, {
- ref: vm => void (this.comp = vm as ComponentPublicInstance),
- })
- : null
- },
- mounted() {
- // this call runs while Comp is currentInstance, but
- // the effect for this `$watch` should nonetheless be registered with Child
- this.comp!.$watch(
- () => this.show,
- () => void 0,
- )
- },
- })
- render(h(Comp), nodeOps.createElement('div'))
- expect(instance!).toBeDefined()
- expect(instance!.scope.effects).toBeInstanceOf(Array)
- // includes the component's own render effect AND the watcher effect
- expect(instance!.scope.effects.length).toBe(2)
- _show!.value = false
- await nextTick()
- await nextTick()
- expect(instance!.scope.effects.length).toBe(0)
- })
- test('this.$watch should pass `this.proxy` to watch source as the first argument ', () => {
- let instance: any
- const source = vi.fn()
- const Comp = defineComponent({
- render() {},
- created(this: any) {
- instance = this
- this.$watch(source, function () {})
- },
- })
- const root = nodeOps.createElement('div')
- createApp(Comp).mount(root)
- expect(instance).toBeDefined()
- expect(source.mock.calls.some(args => args.includes(instance)))
- })
- test('should not leak `this.proxy` to setup()', () => {
- const source = vi.fn()
- const Comp = defineComponent({
- render() {},
- setup() {
- watch(source, () => {})
- },
- })
- const root = nodeOps.createElement('div')
- createApp(Comp).mount(root)
- // should not have any arguments
- expect(source.mock.calls[0]).toMatchObject([])
- })
- // #2728
- test('pre watcher callbacks should not track dependencies', async () => {
- const a = ref(0)
- const b = ref(0)
- const updated = vi.fn()
- const Child = defineComponent({
- props: ['a'],
- updated,
- watch: {
- a() {
- b.value
- },
- },
- render() {
- return h('div', this.a)
- },
- })
- const Parent = defineComponent({
- render() {
- return h(Child, { a: a.value })
- },
- })
- const root = nodeOps.createElement('div')
- createApp(Parent).mount(root)
- a.value++
- await nextTick()
- expect(updated).toHaveBeenCalledTimes(1)
- b.value++
- await nextTick()
- // should not track b as dependency of Child
- expect(updated).toHaveBeenCalledTimes(1)
- })
- test('watching keypath', async () => {
- const spy = vi.fn()
- const Comp = defineComponent({
- render() {},
- data() {
- return {
- a: {
- b: 1,
- },
- }
- },
- watch: {
- 'a.b': spy,
- },
- created(this: any) {
- this.$watch('a.b', spy)
- },
- mounted(this: any) {
- this.a.b++
- },
- })
- const root = nodeOps.createElement('div')
- createApp(Comp).mount(root)
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(2)
- })
- it('watching sources: ref<any[]>', async () => {
- const foo = ref([1])
- const spy = vi.fn()
- watch(foo, () => {
- spy()
- })
- foo.value = foo.value.slice()
- await nextTick()
- expect(spy).toBeCalledTimes(1)
- })
- it('watching multiple sources: computed', async () => {
- let count = 0
- const value = ref('1')
- const plus = computed(() => !!value.value)
- watch([plus], () => {
- count++
- })
- value.value = '2'
- await nextTick()
- expect(plus.value).toBe(true)
- expect(count).toBe(0)
- })
- // #4158
- test('watch should not register in owner component if created inside detached scope', () => {
- let instance: ComponentInternalInstance
- const Comp = {
- setup() {
- instance = getCurrentInstance()!
- effectScope(true).run(() => {
- watch(
- () => 1,
- () => {},
- )
- })
- return () => ''
- },
- }
- const root = nodeOps.createElement('div')
- createApp(Comp).mount(root)
- // should not record watcher in detached scope and only the instance's
- // own update effect
- expect(instance!.scope.effects.length).toBe(1)
- })
- test('watchEffect should keep running if created in a detached scope', async () => {
- const trigger = ref(0)
- let countWE = 0
- let countW = 0
- const Comp = {
- setup() {
- effectScope(true).run(() => {
- watchEffect(() => {
- trigger.value
- countWE++
- })
- watch(trigger, () => countW++)
- })
- return () => ''
- },
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- // only watchEffect as ran so far
- expect(countWE).toBe(1)
- expect(countW).toBe(0)
- trigger.value++
- await nextTick()
- // both watchers run while component is mounted
- expect(countWE).toBe(2)
- expect(countW).toBe(1)
- render(null, root) // unmount
- await nextTick()
- trigger.value++
- await nextTick()
- // both watchers run again event though component has been unmounted
- expect(countWE).toBe(3)
- expect(countW).toBe(2)
- })
- const options = [
- { name: 'only trigger once watch' },
- {
- deep: true,
- name: 'only trigger once watch with deep',
- },
- {
- flush: 'sync',
- name: 'only trigger once watch with flush: sync',
- },
- {
- flush: 'pre',
- name: 'only trigger once watch with flush: pre',
- },
- {
- immediate: true,
- name: 'only trigger once watch with immediate',
- },
- ] as const
- test.each(options)('$name', async option => {
- const count = ref(0)
- const cb = vi.fn()
- watch(count, cb, { once: true, ...option })
- count.value++
- await nextTick()
- expect(count.value).toBe(1)
- expect(cb).toHaveBeenCalledTimes(1)
- count.value++
- await nextTick()
- expect(count.value).toBe(2)
- expect(cb).toHaveBeenCalledTimes(1)
- })
- // #5151
- test('OnCleanup also needs to be cleaned,', async () => {
- const spy1 = vi.fn()
- const spy2 = vi.fn()
- const num = ref(0)
- watch(num, (value, oldValue, onCleanup) => {
- if (value > 1) {
- return
- }
- spy1()
- onCleanup(() => {
- // OnCleanup also needs to be cleaned
- spy2()
- })
- })
- num.value++
- await nextTick()
- expect(spy1).toHaveBeenCalledTimes(1)
- expect(spy2).toHaveBeenCalledTimes(0)
- num.value++
- await nextTick()
- expect(spy1).toHaveBeenCalledTimes(1)
- expect(spy2).toHaveBeenCalledTimes(1)
- num.value++
- await nextTick()
- // would not be called when value>1
- expect(spy1).toHaveBeenCalledTimes(1)
- expect(spy2).toHaveBeenCalledTimes(1)
- })
- it('watching reactive depth', async () => {
- const state = reactive({
- a: {
- b: {
- c: {
- d: {
- e: 1,
- },
- },
- },
- },
- })
- const cb = vi.fn()
- watch(state, cb, { deep: 2 })
- state.a.b = { c: { d: { e: 2 } } }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- state.a.b.c = { d: { e: 3 } }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- state.a.b = { c: { d: { e: 4 } } }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(2)
- })
- it('watching ref depth', async () => {
- const state = ref({
- a: {
- b: 2,
- },
- })
- const cb = vi.fn()
- watch(state, cb, { deep: 1 })
- state.value.a.b = 3
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(0)
- state.value.a = { b: 3 }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- })
- it('watching array depth', async () => {
- const arr = ref([
- {
- a: {
- b: 2,
- },
- },
- {
- a: {
- b: 3,
- },
- },
- ])
- const cb = vi.fn()
- watch(arr, cb, { deep: 2 })
- arr.value[0].a.b = 3
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(0)
- arr.value[0].a = { b: 3 }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- arr.value[1].a = { b: 4 }
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(2)
- arr.value.push({ a: { b: 5 } })
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(3)
- arr.value.pop()
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(4)
- })
- test('watching the same object at different depths', async () => {
- const arr1: any[] = reactive([[[{ foo: {} }]]])
- const arr2 = arr1[0]
- const arr3 = arr2[0]
- const obj = arr3[0]
- arr1.push(arr3)
- const cb1 = vi.fn()
- const cb2 = vi.fn()
- const cb3 = vi.fn()
- const cb4 = vi.fn()
- watch(arr1, cb1, { deep: 1 })
- watch(arr1, cb2, { deep: 2 })
- watch(arr1, cb3, { deep: 3 })
- watch(arr1, cb4, { deep: 4 })
- await nextTick()
- expect(cb1).toHaveBeenCalledTimes(0)
- expect(cb2).toHaveBeenCalledTimes(0)
- expect(cb3).toHaveBeenCalledTimes(0)
- expect(cb4).toHaveBeenCalledTimes(0)
- obj.foo = {}
- await nextTick()
- expect(cb1).toHaveBeenCalledTimes(0)
- expect(cb2).toHaveBeenCalledTimes(0)
- expect(cb3).toHaveBeenCalledTimes(1)
- expect(cb4).toHaveBeenCalledTimes(1)
- obj.foo.bar = 1
- await nextTick()
- expect(cb1).toHaveBeenCalledTimes(0)
- expect(cb2).toHaveBeenCalledTimes(0)
- expect(cb3).toHaveBeenCalledTimes(1)
- expect(cb4).toHaveBeenCalledTimes(2)
- arr3.push(obj.foo)
- await nextTick()
- expect(cb1).toHaveBeenCalledTimes(0)
- expect(cb2).toHaveBeenCalledTimes(1)
- expect(cb3).toHaveBeenCalledTimes(2)
- expect(cb4).toHaveBeenCalledTimes(3)
- obj.foo.bar = 2
- await nextTick()
- expect(cb1).toHaveBeenCalledTimes(0)
- expect(cb2).toHaveBeenCalledTimes(1)
- expect(cb3).toHaveBeenCalledTimes(3)
- expect(cb4).toHaveBeenCalledTimes(4)
- })
- test('pause / resume', async () => {
- const count = ref(0)
- const cb = vi.fn()
- const { pause, resume } = watch(count, cb)
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- expect(cb).toHaveBeenLastCalledWith(1, 0, expect.any(Function))
- pause()
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(1)
- expect(cb).toHaveBeenLastCalledWith(1, 0, expect.any(Function))
- resume()
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(2)
- expect(cb).toHaveBeenLastCalledWith(3, 1, expect.any(Function))
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(3)
- expect(cb).toHaveBeenLastCalledWith(4, 3, expect.any(Function))
- pause()
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(3)
- expect(cb).toHaveBeenLastCalledWith(4, 3, expect.any(Function))
- resume()
- await nextTick()
- expect(cb).toHaveBeenCalledTimes(4)
- expect(cb).toHaveBeenLastCalledWith(5, 4, expect.any(Function))
- })
- it('shallowReactive', async () => {
- const state = shallowReactive({
- msg: ref('hello'),
- foo: {
- a: ref(1),
- b: 2,
- },
- bar: 'bar',
- })
- const spy = vi.fn()
- watch(state, spy)
- state.msg.value = 'hi'
- await nextTick()
- expect(spy).not.toHaveBeenCalled()
- state.bar = 'bar2'
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- state.foo.a.value++
- state.foo.b++
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- state.bar = 'bar3'
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(2)
- })
- it('watching reactive with deep: false', async () => {
- const state = reactive({
- foo: {
- a: 2,
- },
- bar: 'bar',
- })
- const spy = vi.fn()
- watch(state, spy, { deep: false })
- state.foo.a++
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(0)
- state.bar = 'bar2'
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- })
- test("effect should be removed from scope's effects after it is stopped", () => {
- const num = ref(0)
- let unwatch: () => void
- let instance: ComponentInternalInstance
- const Comp = {
- setup() {
- instance = getCurrentInstance()!
- unwatch = watch(num, () => {
- console.log(num.value)
- })
- return () => null
- },
- }
- const root = nodeOps.createElement('div')
- createApp(Comp).mount(root)
- expect(instance!.scope.effects.length).toBe(2)
- unwatch!()
- expect(instance!.scope.effects.length).toBe(1)
- const scope = effectScope()
- scope.run(() => {
- unwatch = watch(num, () => {
- console.log(num.value)
- })
- })
- expect(scope.effects.length).toBe(1)
- unwatch!()
- expect(scope.effects.length).toBe(0)
- scope.run(() => {
- watch(num, () => {}, { once: true, immediate: true })
- })
- expect(scope.effects.length).toBe(0)
- })
- // simplified case of VueUse syncRef
- test('sync watcher should not be batched', () => {
- const a = ref(0)
- const b = ref(0)
- let pauseB = false
- watch(
- a,
- () => {
- pauseB = true
- b.value = a.value + 1
- pauseB = false
- },
- { flush: 'sync' },
- )
- watch(
- b,
- () => {
- if (!pauseB) {
- throw new Error('should not be called')
- }
- },
- { flush: 'sync' },
- )
- a.value = 1
- expect(b.value).toBe(2)
- })
- test('watchEffect should not fire on computed deps that did not change', async () => {
- const a = ref(0)
- const c = computed(() => a.value % 2)
- const spy = vi.fn()
- watchEffect(() => {
- spy()
- c.value
- })
- expect(spy).toHaveBeenCalledTimes(1)
- a.value += 2
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- })
- test('circular reference', async () => {
- const obj = { a: 1 }
- // @ts-expect-error
- obj.b = obj
- const foo = ref(obj)
- const spy = vi.fn()
- watch(foo, spy, { deep: true })
- // @ts-expect-error
- foo.value.b.a = 2
- await nextTick()
- expect(spy).toHaveBeenCalledTimes(1)
- expect(foo.value.a).toBe(2)
- })
- test('watch immediate error in effect scope should be caught by onErrorCaptured', async () => {
- const warn = vi.spyOn(console, 'warn')
- warn.mockImplementation(() => {})
- const ERROR_IN_SCOPE = 'ERROR_IN_SCOPE'
- const ERROR_OUT_SCOPE = 'ERROR_OUT_SCOPE'
- const errors = ref<string[]>([])
- const Comp = {
- setup() {
- const trigger = ref(0)
- effectScope(true).run(() => {
- watch(
- trigger,
- () => {
- throw new Error(ERROR_IN_SCOPE)
- },
- { immediate: true },
- )
- })
- watchEffect(() => {
- throw new Error(ERROR_OUT_SCOPE)
- })
- return () => ''
- },
- }
- const root = nodeOps.createElement('div')
- render(
- h(
- {
- setup(_, { slots }) {
- onErrorCaptured(e => {
- errors.value.push(e.message)
- return false
- })
- return () => h('div', slots.default && slots.default())
- },
- },
- null,
- () => [h(Comp)],
- ),
- root,
- )
- await nextTick()
- // only watchEffect as ran so far
- expect(errors.value).toHaveLength(2)
- expect(errors.value[0]).toBe(ERROR_IN_SCOPE)
- expect(errors.value[1]).toBe(ERROR_OUT_SCOPE)
- warn.mockRestore()
- })
- test('should be executed correctly', () => {
- const v = ref(1)
- let foo = ''
- watch(
- v,
- () => {
- foo += '1'
- },
- {
- flush: 'sync',
- },
- )
- watch(
- v,
- () => {
- foo += '2'
- },
- {
- flush: 'sync',
- },
- )
- expect(foo).toBe('')
- v.value++
- expect(foo).toBe('12')
- })
- // 12045
- test('sync watcher should not break pre watchers', async () => {
- const count1 = ref(0)
- const count2 = ref(0)
- watch(
- count1,
- () => {
- count2.value++
- },
- { flush: 'sync' },
- )
- const spy1 = vi.fn()
- watch([count1, count2], spy1)
- const spy2 = vi.fn()
- watch(count1, spy2)
- count1.value++
- await nextTick()
- expect(spy1).toHaveBeenCalled()
- expect(spy2).toHaveBeenCalled()
- })
- // #12631
- test('this.$watch w/ onScopeDispose', () => {
- const onCleanup = vi.fn()
- const toggle = ref(true)
- const Comp = defineComponent({
- render() {},
- created(this: any) {
- this.$watch(
- () => 1,
- function () {},
- )
- onScopeDispose(onCleanup)
- },
- })
- const App = defineComponent({
- render() {
- return toggle.value ? h(Comp) : null
- },
- })
- const root = nodeOps.createElement('div')
- createApp(App).mount(root)
- expect(onCleanup).toBeCalledTimes(0)
- })
- })
|