Skip to content

Commit e9e2778

Browse files
authoredOct 21, 2023
fix(reactivity): assigning array.length while observing a symbol property (#7568)
1 parent a09ed44 commit e9e2778

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed
 

‎packages/reactivity/__tests__/effect.spec.ts

+16
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,22 @@ describe('reactivity/effect', () => {
243243
expect(dummy).toBe(undefined)
244244
})
245245

246+
it('should support manipulating an array while observing symbol keyed properties', () => {
247+
const key = Symbol()
248+
let dummy
249+
const array: any = reactive([1, 2, 3])
250+
effect(() => (dummy = array[key]))
251+
252+
expect(dummy).toBe(undefined)
253+
array.pop()
254+
array.shift()
255+
array.splice(0, 1)
256+
expect(dummy).toBe(undefined)
257+
array[key] = 'value'
258+
array.length = 0
259+
expect(dummy).toBe('value')
260+
})
261+
246262
it('should observe function valued properties', () => {
247263
const oldFunc = () => {}
248264
const newFunc = () => {}

‎packages/reactivity/src/effect.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { TrackOpTypes, TriggerOpTypes } from './operations'
2-
import { extend, isArray, isIntegerKey, isMap } from '@vue/shared'
2+
import { extend, isArray, isIntegerKey, isMap, isSymbol } from '@vue/shared'
33
import { EffectScope, recordEffectScope } from './effectScope'
44
import {
55
createDep,
@@ -324,7 +324,7 @@ export function trigger(
324324
} else if (key === 'length' && isArray(target)) {
325325
const newLength = Number(newValue)
326326
depsMap.forEach((dep, key) => {
327-
if (key === 'length' || key >= newLength) {
327+
if (key === 'length' || (!isSymbol(key) && key >= newLength)) {
328328
deps.push(dep)
329329
}
330330
})

0 commit comments

Comments
 (0)
Please sign in to comment.