refactor(reactivity): adjust APIs
BREAKING CHANGE: Reactivity APIs adjustments: - `readonly` is now non-tracking if called on plain objects. `lock` and `unlock` have been removed. A `readonly` proxy can no longer be directly mutated. However, it can still wrap an already reactive object and track changes to the source reactive object. - `isReactive` now only returns true for proxies created by `reactive`, or a `readonly` proxy that wraps a `reactive` proxy. - A new utility `isProxy` is introduced, which returns true for both reactive or readonly proxies. - `markNonReactive` has been renamed to `markRaw`.
This commit is contained in:
parent
11654a6e50
commit
09b4202a22
@ -6,7 +6,7 @@ import {
|
|||||||
TrackOpTypes,
|
TrackOpTypes,
|
||||||
TriggerOpTypes,
|
TriggerOpTypes,
|
||||||
DebuggerEvent,
|
DebuggerEvent,
|
||||||
markNonReactive,
|
markRaw,
|
||||||
ref
|
ref
|
||||||
} from '../src/index'
|
} from '../src/index'
|
||||||
import { ITERATE_KEY } from '../src/effect'
|
import { ITERATE_KEY } from '../src/effect'
|
||||||
@ -732,9 +732,9 @@ describe('reactivity/effect', () => {
|
|||||||
expect(dummy).toBe(3)
|
expect(dummy).toBe(3)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('markNonReactive', () => {
|
it('markRaw', () => {
|
||||||
const obj = reactive({
|
const obj = reactive({
|
||||||
foo: markNonReactive({
|
foo: markRaw({
|
||||||
prop: 0
|
prop: 0
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -3,7 +3,7 @@ import {
|
|||||||
reactive,
|
reactive,
|
||||||
isReactive,
|
isReactive,
|
||||||
toRaw,
|
toRaw,
|
||||||
markNonReactive,
|
markRaw,
|
||||||
shallowReactive
|
shallowReactive
|
||||||
} from '../src/reactive'
|
} from '../src/reactive'
|
||||||
import { mockWarn } from '@vue/shared'
|
import { mockWarn } from '@vue/shared'
|
||||||
@ -146,10 +146,10 @@ describe('reactivity/reactive', () => {
|
|||||||
expect(reactive(d)).toBe(d)
|
expect(reactive(d)).toBe(d)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('markNonReactive', () => {
|
test('markRaw', () => {
|
||||||
const obj = reactive({
|
const obj = reactive({
|
||||||
foo: { a: 1 },
|
foo: { a: 1 },
|
||||||
bar: markNonReactive({ b: 2 })
|
bar: markRaw({ b: 2 })
|
||||||
})
|
})
|
||||||
expect(isReactive(obj.foo)).toBe(true)
|
expect(isReactive(obj.foo)).toBe(true)
|
||||||
expect(isReactive(obj.bar)).toBe(false)
|
expect(isReactive(obj.bar)).toBe(false)
|
||||||
|
@ -4,10 +4,11 @@ import {
|
|||||||
toRaw,
|
toRaw,
|
||||||
isReactive,
|
isReactive,
|
||||||
isReadonly,
|
isReadonly,
|
||||||
markNonReactive,
|
markRaw,
|
||||||
effect,
|
effect,
|
||||||
ref,
|
ref,
|
||||||
shallowReadonly
|
shallowReadonly,
|
||||||
|
isProxy
|
||||||
} from '../src'
|
} from '../src'
|
||||||
import { mockWarn } from '@vue/shared'
|
import { mockWarn } from '@vue/shared'
|
||||||
|
|
||||||
@ -22,22 +23,23 @@ describe('reactivity/readonly', () => {
|
|||||||
describe('Object', () => {
|
describe('Object', () => {
|
||||||
it('should make nested values readonly', () => {
|
it('should make nested values readonly', () => {
|
||||||
const original = { foo: 1, bar: { baz: 2 } }
|
const original = { foo: 1, bar: { baz: 2 } }
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
expect(observed).not.toBe(original)
|
expect(wrapped).not.toBe(original)
|
||||||
expect(isReactive(observed)).toBe(true)
|
expect(isProxy(wrapped)).toBe(true)
|
||||||
expect(isReadonly(observed)).toBe(true)
|
expect(isReactive(wrapped)).toBe(false)
|
||||||
|
expect(isReadonly(wrapped)).toBe(true)
|
||||||
expect(isReactive(original)).toBe(false)
|
expect(isReactive(original)).toBe(false)
|
||||||
expect(isReadonly(original)).toBe(false)
|
expect(isReadonly(original)).toBe(false)
|
||||||
expect(isReactive(observed.bar)).toBe(true)
|
expect(isReactive(wrapped.bar)).toBe(false)
|
||||||
expect(isReadonly(observed.bar)).toBe(true)
|
expect(isReadonly(wrapped.bar)).toBe(true)
|
||||||
expect(isReactive(original.bar)).toBe(false)
|
expect(isReactive(original.bar)).toBe(false)
|
||||||
expect(isReadonly(original.bar)).toBe(false)
|
expect(isReadonly(original.bar)).toBe(false)
|
||||||
// get
|
// get
|
||||||
expect(observed.foo).toBe(1)
|
expect(wrapped.foo).toBe(1)
|
||||||
// has
|
// has
|
||||||
expect('foo' in observed).toBe(true)
|
expect('foo' in wrapped).toBe(true)
|
||||||
// ownKeys
|
// ownKeys
|
||||||
expect(Object.keys(observed)).toEqual(['foo', 'bar'])
|
expect(Object.keys(wrapped)).toEqual(['foo', 'bar'])
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should not allow mutation', () => {
|
it('should not allow mutation', () => {
|
||||||
@ -49,54 +51,54 @@ describe('reactivity/readonly', () => {
|
|||||||
},
|
},
|
||||||
[qux]: 3
|
[qux]: 3
|
||||||
}
|
}
|
||||||
const observed: Writable<typeof original> = readonly(original)
|
const wrapped: Writable<typeof original> = readonly(original)
|
||||||
|
|
||||||
observed.foo = 2
|
wrapped.foo = 2
|
||||||
expect(observed.foo).toBe(1)
|
expect(wrapped.foo).toBe(1)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "foo" failed: target is readonly.`
|
`Set operation on key "foo" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
|
|
||||||
observed.bar.baz = 3
|
wrapped.bar.baz = 3
|
||||||
expect(observed.bar.baz).toBe(2)
|
expect(wrapped.bar.baz).toBe(2)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "baz" failed: target is readonly.`
|
`Set operation on key "baz" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
|
|
||||||
observed[qux] = 4
|
wrapped[qux] = 4
|
||||||
expect(observed[qux]).toBe(3)
|
expect(wrapped[qux]).toBe(3)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "Symbol(qux)" failed: target is readonly.`
|
`Set operation on key "Symbol(qux)" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
|
|
||||||
delete observed.foo
|
delete wrapped.foo
|
||||||
expect(observed.foo).toBe(1)
|
expect(wrapped.foo).toBe(1)
|
||||||
expect(
|
expect(
|
||||||
`Delete operation on key "foo" failed: target is readonly.`
|
`Delete operation on key "foo" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
|
|
||||||
delete observed.bar.baz
|
delete wrapped.bar.baz
|
||||||
expect(observed.bar.baz).toBe(2)
|
expect(wrapped.bar.baz).toBe(2)
|
||||||
expect(
|
expect(
|
||||||
`Delete operation on key "baz" failed: target is readonly.`
|
`Delete operation on key "baz" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
|
|
||||||
delete observed[qux]
|
delete wrapped[qux]
|
||||||
expect(observed[qux]).toBe(3)
|
expect(wrapped[qux]).toBe(3)
|
||||||
expect(
|
expect(
|
||||||
`Delete operation on key "Symbol(qux)" failed: target is readonly.`
|
`Delete operation on key "Symbol(qux)" failed: target is readonly.`
|
||||||
).toHaveBeenWarnedLast()
|
).toHaveBeenWarnedLast()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should not trigger effects', () => {
|
it('should not trigger effects', () => {
|
||||||
const observed: any = readonly({ a: 1 })
|
const wrapped: any = readonly({ a: 1 })
|
||||||
let dummy
|
let dummy
|
||||||
effect(() => {
|
effect(() => {
|
||||||
dummy = observed.a
|
dummy = wrapped.a
|
||||||
})
|
})
|
||||||
expect(dummy).toBe(1)
|
expect(dummy).toBe(1)
|
||||||
observed.a = 2
|
wrapped.a = 2
|
||||||
expect(observed.a).toBe(1)
|
expect(wrapped.a).toBe(1)
|
||||||
expect(dummy).toBe(1)
|
expect(dummy).toBe(1)
|
||||||
expect(`target is readonly`).toHaveBeenWarned()
|
expect(`target is readonly`).toHaveBeenWarned()
|
||||||
})
|
})
|
||||||
@ -105,65 +107,66 @@ describe('reactivity/readonly', () => {
|
|||||||
describe('Array', () => {
|
describe('Array', () => {
|
||||||
it('should make nested values readonly', () => {
|
it('should make nested values readonly', () => {
|
||||||
const original = [{ foo: 1 }]
|
const original = [{ foo: 1 }]
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
expect(observed).not.toBe(original)
|
expect(wrapped).not.toBe(original)
|
||||||
expect(isReactive(observed)).toBe(true)
|
expect(isProxy(wrapped)).toBe(true)
|
||||||
expect(isReadonly(observed)).toBe(true)
|
expect(isReactive(wrapped)).toBe(false)
|
||||||
|
expect(isReadonly(wrapped)).toBe(true)
|
||||||
expect(isReactive(original)).toBe(false)
|
expect(isReactive(original)).toBe(false)
|
||||||
expect(isReadonly(original)).toBe(false)
|
expect(isReadonly(original)).toBe(false)
|
||||||
expect(isReactive(observed[0])).toBe(true)
|
expect(isReactive(wrapped[0])).toBe(false)
|
||||||
expect(isReadonly(observed[0])).toBe(true)
|
expect(isReadonly(wrapped[0])).toBe(true)
|
||||||
expect(isReactive(original[0])).toBe(false)
|
expect(isReactive(original[0])).toBe(false)
|
||||||
expect(isReadonly(original[0])).toBe(false)
|
expect(isReadonly(original[0])).toBe(false)
|
||||||
// get
|
// get
|
||||||
expect(observed[0].foo).toBe(1)
|
expect(wrapped[0].foo).toBe(1)
|
||||||
// has
|
// has
|
||||||
expect(0 in observed).toBe(true)
|
expect(0 in wrapped).toBe(true)
|
||||||
// ownKeys
|
// ownKeys
|
||||||
expect(Object.keys(observed)).toEqual(['0'])
|
expect(Object.keys(wrapped)).toEqual(['0'])
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should not allow mutation', () => {
|
it('should not allow mutation', () => {
|
||||||
const observed: any = readonly([{ foo: 1 }])
|
const wrapped: any = readonly([{ foo: 1 }])
|
||||||
observed[0] = 1
|
wrapped[0] = 1
|
||||||
expect(observed[0]).not.toBe(1)
|
expect(wrapped[0]).not.toBe(1)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "0" failed: target is readonly.`
|
`Set operation on key "0" failed: target is readonly.`
|
||||||
).toHaveBeenWarned()
|
).toHaveBeenWarned()
|
||||||
observed[0].foo = 2
|
wrapped[0].foo = 2
|
||||||
expect(observed[0].foo).toBe(1)
|
expect(wrapped[0].foo).toBe(1)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "foo" failed: target is readonly.`
|
`Set operation on key "foo" failed: target is readonly.`
|
||||||
).toHaveBeenWarned()
|
).toHaveBeenWarned()
|
||||||
|
|
||||||
// should block length mutation
|
// should block length mutation
|
||||||
observed.length = 0
|
wrapped.length = 0
|
||||||
expect(observed.length).toBe(1)
|
expect(wrapped.length).toBe(1)
|
||||||
expect(observed[0].foo).toBe(1)
|
expect(wrapped[0].foo).toBe(1)
|
||||||
expect(
|
expect(
|
||||||
`Set operation on key "length" failed: target is readonly.`
|
`Set operation on key "length" failed: target is readonly.`
|
||||||
).toHaveBeenWarned()
|
).toHaveBeenWarned()
|
||||||
|
|
||||||
// mutation methods invoke set/length internally and thus are blocked as well
|
// mutation methods invoke set/length internally and thus are blocked as well
|
||||||
observed.push(2)
|
wrapped.push(2)
|
||||||
expect(observed.length).toBe(1)
|
expect(wrapped.length).toBe(1)
|
||||||
// push triggers two warnings on [1] and .length
|
// push triggers two warnings on [1] and .length
|
||||||
expect(`target is readonly.`).toHaveBeenWarnedTimes(5)
|
expect(`target is readonly.`).toHaveBeenWarnedTimes(5)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should not trigger effects', () => {
|
it('should not trigger effects', () => {
|
||||||
const observed: any = readonly([{ a: 1 }])
|
const wrapped: any = readonly([{ a: 1 }])
|
||||||
let dummy
|
let dummy
|
||||||
effect(() => {
|
effect(() => {
|
||||||
dummy = observed[0].a
|
dummy = wrapped[0].a
|
||||||
})
|
})
|
||||||
expect(dummy).toBe(1)
|
expect(dummy).toBe(1)
|
||||||
observed[0].a = 2
|
wrapped[0].a = 2
|
||||||
expect(observed[0].a).toBe(1)
|
expect(wrapped[0].a).toBe(1)
|
||||||
expect(dummy).toBe(1)
|
expect(dummy).toBe(1)
|
||||||
expect(`target is readonly`).toHaveBeenWarnedTimes(1)
|
expect(`target is readonly`).toHaveBeenWarnedTimes(1)
|
||||||
observed[0] = { a: 2 }
|
wrapped[0] = { a: 2 }
|
||||||
expect(observed[0].a).toBe(1)
|
expect(wrapped[0].a).toBe(1)
|
||||||
expect(dummy).toBe(1)
|
expect(dummy).toBe(1)
|
||||||
expect(`target is readonly`).toHaveBeenWarnedTimes(2)
|
expect(`target is readonly`).toHaveBeenWarnedTimes(2)
|
||||||
})
|
})
|
||||||
@ -176,14 +179,15 @@ describe('reactivity/readonly', () => {
|
|||||||
const key1 = {}
|
const key1 = {}
|
||||||
const key2 = {}
|
const key2 = {}
|
||||||
const original = new Collection([[key1, {}], [key2, {}]])
|
const original = new Collection([[key1, {}], [key2, {}]])
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
expect(observed).not.toBe(original)
|
expect(wrapped).not.toBe(original)
|
||||||
expect(isReactive(observed)).toBe(true)
|
expect(isProxy(wrapped)).toBe(true)
|
||||||
expect(isReadonly(observed)).toBe(true)
|
expect(isReactive(wrapped)).toBe(false)
|
||||||
|
expect(isReadonly(wrapped)).toBe(true)
|
||||||
expect(isReactive(original)).toBe(false)
|
expect(isReactive(original)).toBe(false)
|
||||||
expect(isReadonly(original)).toBe(false)
|
expect(isReadonly(original)).toBe(false)
|
||||||
expect(isReactive(observed.get(key1))).toBe(true)
|
expect(isReactive(wrapped.get(key1))).toBe(false)
|
||||||
expect(isReadonly(observed.get(key1))).toBe(true)
|
expect(isReadonly(wrapped.get(key1))).toBe(true)
|
||||||
expect(isReactive(original.get(key1))).toBe(false)
|
expect(isReactive(original.get(key1))).toBe(false)
|
||||||
expect(isReadonly(original.get(key1))).toBe(false)
|
expect(isReadonly(original.get(key1))).toBe(false)
|
||||||
})
|
})
|
||||||
@ -209,15 +213,15 @@ describe('reactivity/readonly', () => {
|
|||||||
const key1 = {}
|
const key1 = {}
|
||||||
const key2 = {}
|
const key2 = {}
|
||||||
const original = new Collection([[key1, {}], [key2, {}]])
|
const original = new Collection([[key1, {}], [key2, {}]])
|
||||||
const observed: any = readonly(original)
|
const wrapped: any = readonly(original)
|
||||||
for (const [key, value] of observed) {
|
for (const [key, value] of wrapped) {
|
||||||
expect(isReadonly(key)).toBe(true)
|
expect(isReadonly(key)).toBe(true)
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
}
|
}
|
||||||
observed.forEach((value: any) => {
|
wrapped.forEach((value: any) => {
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
})
|
})
|
||||||
for (const value of observed.values()) {
|
for (const value of wrapped.values()) {
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -232,13 +236,14 @@ describe('reactivity/readonly', () => {
|
|||||||
const key1 = {}
|
const key1 = {}
|
||||||
const key2 = {}
|
const key2 = {}
|
||||||
const original = new Collection([key1, key2])
|
const original = new Collection([key1, key2])
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
expect(observed).not.toBe(original)
|
expect(wrapped).not.toBe(original)
|
||||||
expect(isReactive(observed)).toBe(true)
|
expect(isProxy(wrapped)).toBe(true)
|
||||||
expect(isReadonly(observed)).toBe(true)
|
expect(isReactive(wrapped)).toBe(false)
|
||||||
|
expect(isReadonly(wrapped)).toBe(true)
|
||||||
expect(isReactive(original)).toBe(false)
|
expect(isReactive(original)).toBe(false)
|
||||||
expect(isReadonly(original)).toBe(false)
|
expect(isReadonly(original)).toBe(false)
|
||||||
expect(observed.has(reactive(key1))).toBe(true)
|
expect(wrapped.has(reactive(key1))).toBe(true)
|
||||||
expect(original.has(reactive(key1))).toBe(false)
|
expect(original.has(reactive(key1))).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -261,17 +266,17 @@ describe('reactivity/readonly', () => {
|
|||||||
if (Collection === Set) {
|
if (Collection === Set) {
|
||||||
test('should retrieve readonly values on iteration', () => {
|
test('should retrieve readonly values on iteration', () => {
|
||||||
const original = new Collection([{}, {}])
|
const original = new Collection([{}, {}])
|
||||||
const observed: any = readonly(original)
|
const wrapped: any = readonly(original)
|
||||||
for (const value of observed) {
|
for (const value of wrapped) {
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
}
|
}
|
||||||
observed.forEach((value: any) => {
|
wrapped.forEach((value: any) => {
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
})
|
})
|
||||||
for (const value of observed.values()) {
|
for (const value of wrapped.values()) {
|
||||||
expect(isReadonly(value)).toBe(true)
|
expect(isReadonly(value)).toBe(true)
|
||||||
}
|
}
|
||||||
for (const [v1, v2] of observed.entries()) {
|
for (const [v1, v2] of wrapped.entries()) {
|
||||||
expect(isReadonly(v1)).toBe(true)
|
expect(isReadonly(v1)).toBe(true)
|
||||||
expect(isReadonly(v2)).toBe(true)
|
expect(isReadonly(v2)).toBe(true)
|
||||||
}
|
}
|
||||||
@ -299,6 +304,9 @@ describe('reactivity/readonly', () => {
|
|||||||
test('readonly should track and trigger if wrapping reactive original', () => {
|
test('readonly should track and trigger if wrapping reactive original', () => {
|
||||||
const a = reactive({ n: 1 })
|
const a = reactive({ n: 1 })
|
||||||
const b = readonly(a)
|
const b = readonly(a)
|
||||||
|
// should return true since it's wrapping a reactive source
|
||||||
|
expect(isReactive(b)).toBe(true)
|
||||||
|
|
||||||
let dummy
|
let dummy
|
||||||
effect(() => {
|
effect(() => {
|
||||||
dummy = b.n
|
dummy = b.n
|
||||||
@ -309,26 +317,26 @@ describe('reactivity/readonly', () => {
|
|||||||
expect(dummy).toBe(2)
|
expect(dummy).toBe(2)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('observing already observed value should return same Proxy', () => {
|
test('wrapping already wrapped value should return same Proxy', () => {
|
||||||
const original = { foo: 1 }
|
const original = { foo: 1 }
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
const observed2 = readonly(observed)
|
const wrapped2 = readonly(wrapped)
|
||||||
expect(observed2).toBe(observed)
|
expect(wrapped2).toBe(wrapped)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('observing the same value multiple times should return same Proxy', () => {
|
test('wrapping the same value multiple times should return same Proxy', () => {
|
||||||
const original = { foo: 1 }
|
const original = { foo: 1 }
|
||||||
const observed = readonly(original)
|
const wrapped = readonly(original)
|
||||||
const observed2 = readonly(original)
|
const wrapped2 = readonly(original)
|
||||||
expect(observed2).toBe(observed)
|
expect(wrapped2).toBe(wrapped)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('markNonReactive', () => {
|
test('markRaw', () => {
|
||||||
const obj = readonly({
|
const obj = readonly({
|
||||||
foo: { a: 1 },
|
foo: { a: 1 },
|
||||||
bar: markNonReactive({ b: 2 })
|
bar: markRaw({ b: 2 })
|
||||||
})
|
})
|
||||||
expect(isReactive(obj.foo)).toBe(true)
|
expect(isReadonly(obj.foo)).toBe(true)
|
||||||
expect(isReactive(obj.bar)).toBe(false)
|
expect(isReactive(obj.bar)).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -11,13 +11,14 @@ export {
|
|||||||
} from './ref'
|
} from './ref'
|
||||||
export {
|
export {
|
||||||
reactive,
|
reactive,
|
||||||
isReactive,
|
|
||||||
shallowReactive,
|
|
||||||
readonly,
|
readonly,
|
||||||
|
isReactive,
|
||||||
isReadonly,
|
isReadonly,
|
||||||
|
isProxy,
|
||||||
|
shallowReactive,
|
||||||
shallowReadonly,
|
shallowReadonly,
|
||||||
toRaw,
|
markRaw,
|
||||||
markNonReactive
|
toRaw
|
||||||
} from './reactive'
|
} from './reactive'
|
||||||
export {
|
export {
|
||||||
computed,
|
computed,
|
||||||
|
@ -20,7 +20,7 @@ const readonlyToRaw = new WeakMap<any, any>()
|
|||||||
|
|
||||||
// WeakSets for values that are marked readonly or non-reactive during
|
// WeakSets for values that are marked readonly or non-reactive during
|
||||||
// observable creation.
|
// observable creation.
|
||||||
const nonReactiveValues = new WeakSet<any>()
|
const rawValues = new WeakSet<any>()
|
||||||
|
|
||||||
const collectionTypes = new Set<Function>([Set, Map, WeakMap, WeakSet])
|
const collectionTypes = new Set<Function>([Set, Map, WeakMap, WeakSet])
|
||||||
const isObservableType = /*#__PURE__*/ makeMap(
|
const isObservableType = /*#__PURE__*/ makeMap(
|
||||||
@ -32,7 +32,7 @@ const canObserve = (value: any): boolean => {
|
|||||||
!value._isVue &&
|
!value._isVue &&
|
||||||
!value._isVNode &&
|
!value._isVNode &&
|
||||||
isObservableType(toRawType(value)) &&
|
isObservableType(toRawType(value)) &&
|
||||||
!nonReactiveValues.has(value) &&
|
!rawValues.has(value) &&
|
||||||
!Object.isFrozen(value)
|
!Object.isFrozen(value)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -132,19 +132,24 @@ function createReactiveObject(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function isReactive(value: unknown): boolean {
|
export function isReactive(value: unknown): boolean {
|
||||||
return reactiveToRaw.has(value) || readonlyToRaw.has(value)
|
value = readonlyToRaw.get(value) || value
|
||||||
|
return reactiveToRaw.has(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isReadonly(value: unknown): boolean {
|
export function isReadonly(value: unknown): boolean {
|
||||||
return readonlyToRaw.has(value)
|
return readonlyToRaw.has(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function isProxy(value: unknown): boolean {
|
||||||
|
return readonlyToRaw.has(value) || reactiveToRaw.has(value)
|
||||||
|
}
|
||||||
|
|
||||||
export function toRaw<T>(observed: T): T {
|
export function toRaw<T>(observed: T): T {
|
||||||
observed = readonlyToRaw.get(observed) || observed
|
observed = readonlyToRaw.get(observed) || observed
|
||||||
return reactiveToRaw.get(observed) || observed
|
return reactiveToRaw.get(observed) || observed
|
||||||
}
|
}
|
||||||
|
|
||||||
export function markNonReactive<T extends object>(value: T): T {
|
export function markRaw<T extends object>(value: T): T {
|
||||||
nonReactiveValues.add(value)
|
rawValues.add(value)
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { track, trigger } from './effect'
|
import { track, trigger } from './effect'
|
||||||
import { TrackOpTypes, TriggerOpTypes } from './operations'
|
import { TrackOpTypes, TriggerOpTypes } from './operations'
|
||||||
import { isObject } from '@vue/shared'
|
import { isObject } from '@vue/shared'
|
||||||
import { reactive, isReactive } from './reactive'
|
import { reactive, isProxy } from './reactive'
|
||||||
import { ComputedRef } from './computed'
|
import { ComputedRef } from './computed'
|
||||||
import { CollectionTypes } from './collectionHandlers'
|
import { CollectionTypes } from './collectionHandlers'
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ export function customRef<T>(factory: CustomRefFactory<T>): Ref<T> {
|
|||||||
export function toRefs<T extends object>(
|
export function toRefs<T extends object>(
|
||||||
object: T
|
object: T
|
||||||
): { [K in keyof T]: Ref<T[K]> } {
|
): { [K in keyof T]: Ref<T[K]> } {
|
||||||
if (__DEV__ && !isReactive(object)) {
|
if (__DEV__ && !isProxy(object)) {
|
||||||
console.warn(`toRefs() expects a reactive object but received a plain one.`)
|
console.warn(`toRefs() expects a reactive object but received a plain one.`)
|
||||||
}
|
}
|
||||||
const ret: any = {}
|
const ret: any = {}
|
||||||
|
@ -19,7 +19,7 @@ import {
|
|||||||
import { warn } from './warning'
|
import { warn } from './warning'
|
||||||
import { Data, ComponentInternalInstance } from './component'
|
import { Data, ComponentInternalInstance } from './component'
|
||||||
import { isEmitListener } from './componentEmits'
|
import { isEmitListener } from './componentEmits'
|
||||||
import { InternalObjectSymbol } from './vnode'
|
import { InternalObjectKey } from './vnode'
|
||||||
|
|
||||||
export type ComponentPropsOptions<P = Data> =
|
export type ComponentPropsOptions<P = Data> =
|
||||||
| ComponentObjectPropsOptions<P>
|
| ComponentObjectPropsOptions<P>
|
||||||
@ -104,7 +104,7 @@ export function initProps(
|
|||||||
) {
|
) {
|
||||||
const props: Data = {}
|
const props: Data = {}
|
||||||
const attrs: Data = {}
|
const attrs: Data = {}
|
||||||
def(attrs, InternalObjectSymbol, true)
|
def(attrs, InternalObjectKey, 1)
|
||||||
setFullProps(instance, rawProps, props, attrs)
|
setFullProps(instance, rawProps, props, attrs)
|
||||||
const options = instance.type.props
|
const options = instance.type.props
|
||||||
// validation
|
// validation
|
||||||
|
@ -4,7 +4,7 @@ import {
|
|||||||
VNodeNormalizedChildren,
|
VNodeNormalizedChildren,
|
||||||
normalizeVNode,
|
normalizeVNode,
|
||||||
VNodeChild,
|
VNodeChild,
|
||||||
InternalObjectSymbol
|
InternalObjectKey
|
||||||
} from './vnode'
|
} from './vnode'
|
||||||
import {
|
import {
|
||||||
isArray,
|
isArray,
|
||||||
@ -111,7 +111,7 @@ export const initSlots = (
|
|||||||
normalizeVNodeSlots(instance, children)
|
normalizeVNodeSlots(instance, children)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
def(instance.slots, InternalObjectSymbol, true)
|
def(instance.slots, InternalObjectKey, 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const updateSlots = (
|
export const updateSlots = (
|
||||||
|
@ -2,20 +2,24 @@
|
|||||||
|
|
||||||
export const version = __VERSION__
|
export const version = __VERSION__
|
||||||
export {
|
export {
|
||||||
|
// core
|
||||||
|
reactive,
|
||||||
ref,
|
ref,
|
||||||
|
readonly,
|
||||||
|
// utilities
|
||||||
unref,
|
unref,
|
||||||
shallowRef,
|
|
||||||
isRef,
|
isRef,
|
||||||
toRef,
|
toRef,
|
||||||
toRefs,
|
toRefs,
|
||||||
customRef,
|
isProxy,
|
||||||
reactive,
|
|
||||||
isReactive,
|
isReactive,
|
||||||
readonly,
|
|
||||||
isReadonly,
|
isReadonly,
|
||||||
|
// advanced
|
||||||
|
customRef,
|
||||||
|
shallowRef,
|
||||||
shallowReactive,
|
shallowReactive,
|
||||||
shallowReadonly,
|
shallowReadonly,
|
||||||
markNonReactive,
|
markRaw,
|
||||||
toRaw
|
toRaw
|
||||||
} from '@vue/reactivity'
|
} from '@vue/reactivity'
|
||||||
export { computed } from './apiComputed'
|
export { computed } from './apiComputed'
|
||||||
|
@ -17,7 +17,7 @@ import {
|
|||||||
ClassComponent
|
ClassComponent
|
||||||
} from './component'
|
} from './component'
|
||||||
import { RawSlots } from './componentSlots'
|
import { RawSlots } from './componentSlots'
|
||||||
import { isReactive, Ref, toRaw } from '@vue/reactivity'
|
import { isProxy, Ref, toRaw } from '@vue/reactivity'
|
||||||
import { AppContext } from './apiCreateApp'
|
import { AppContext } from './apiCreateApp'
|
||||||
import {
|
import {
|
||||||
SuspenseImpl,
|
SuspenseImpl,
|
||||||
@ -234,7 +234,7 @@ const createVNodeWithArgsTransform = (
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const InternalObjectSymbol = Symbol()
|
export const InternalObjectKey = `__vInternal`
|
||||||
|
|
||||||
export const createVNode = (__DEV__
|
export const createVNode = (__DEV__
|
||||||
? createVNodeWithArgsTransform
|
? createVNodeWithArgsTransform
|
||||||
@ -262,7 +262,7 @@ function _createVNode(
|
|||||||
// class & style normalization.
|
// class & style normalization.
|
||||||
if (props) {
|
if (props) {
|
||||||
// for reactive or proxy objects, we need to clone it to enable mutation.
|
// for reactive or proxy objects, we need to clone it to enable mutation.
|
||||||
if (isReactive(props) || InternalObjectSymbol in props) {
|
if (isProxy(props) || InternalObjectKey in props) {
|
||||||
props = extend({}, props)
|
props = extend({}, props)
|
||||||
}
|
}
|
||||||
let { class: klass, style } = props
|
let { class: klass, style } = props
|
||||||
@ -272,7 +272,7 @@ function _createVNode(
|
|||||||
if (isObject(style)) {
|
if (isObject(style)) {
|
||||||
// reactive state objects need to be cloned since they are likely to be
|
// reactive state objects need to be cloned since they are likely to be
|
||||||
// mutated
|
// mutated
|
||||||
if (isReactive(style) && !isArray(style)) {
|
if (isProxy(style) && !isArray(style)) {
|
||||||
style = extend({}, style)
|
style = extend({}, style)
|
||||||
}
|
}
|
||||||
props.style = normalizeStyle(style)
|
props.style = normalizeStyle(style)
|
||||||
@ -292,16 +292,12 @@ function _createVNode(
|
|||||||
? ShapeFlags.FUNCTIONAL_COMPONENT
|
? ShapeFlags.FUNCTIONAL_COMPONENT
|
||||||
: 0
|
: 0
|
||||||
|
|
||||||
if (
|
if (__DEV__ && shapeFlag & ShapeFlags.STATEFUL_COMPONENT && isProxy(type)) {
|
||||||
__DEV__ &&
|
|
||||||
shapeFlag & ShapeFlags.STATEFUL_COMPONENT &&
|
|
||||||
isReactive(type)
|
|
||||||
) {
|
|
||||||
type = toRaw(type)
|
type = toRaw(type)
|
||||||
warn(
|
warn(
|
||||||
`Vue received a Component which was made a reactive object. This can ` +
|
`Vue received a Component which was made a reactive object. This can ` +
|
||||||
`lead to unnecessary performance overhead, and should be avoided by ` +
|
`lead to unnecessary performance overhead, and should be avoided by ` +
|
||||||
`marking the component with \`markNonReactive\` or using \`shallowRef\` ` +
|
`marking the component with \`markRaw\` or using \`shallowRef\` ` +
|
||||||
`instead of \`ref\`.`,
|
`instead of \`ref\`.`,
|
||||||
`\nComponent that was made reactive: `,
|
`\nComponent that was made reactive: `,
|
||||||
type
|
type
|
||||||
@ -454,7 +450,7 @@ export function normalizeChildren(vnode: VNode, children: unknown) {
|
|||||||
return
|
return
|
||||||
} else {
|
} else {
|
||||||
type = ShapeFlags.SLOTS_CHILDREN
|
type = ShapeFlags.SLOTS_CHILDREN
|
||||||
if (!(children as RawSlots)._ && !(InternalObjectSymbol in children!)) {
|
if (!(children as RawSlots)._ && !(InternalObjectKey in children!)) {
|
||||||
// if slots are not normalized, attach context instance
|
// if slots are not normalized, attach context instance
|
||||||
// (compiled / normalized slots already have context)
|
// (compiled / normalized slots already have context)
|
||||||
;(children as RawSlots)._ctx = currentRenderingInstance
|
;(children as RawSlots)._ctx = currentRenderingInstance
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { markNonReactive } from '@vue/reactivity'
|
import { markRaw } from '@vue/reactivity'
|
||||||
|
|
||||||
export const enum NodeTypes {
|
export const enum NodeTypes {
|
||||||
TEXT = 'text',
|
TEXT = 'text',
|
||||||
@ -88,7 +88,7 @@ function createElement(tag: string): TestElement {
|
|||||||
tag
|
tag
|
||||||
})
|
})
|
||||||
// avoid test nodes from being observed
|
// avoid test nodes from being observed
|
||||||
markNonReactive(node)
|
markRaw(node)
|
||||||
return node
|
return node
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ function createText(text: string): TestText {
|
|||||||
text
|
text
|
||||||
})
|
})
|
||||||
// avoid test nodes from being observed
|
// avoid test nodes from being observed
|
||||||
markNonReactive(node)
|
markRaw(node)
|
||||||
return node
|
return node
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,7 +124,7 @@ function createComment(text: string): TestComment {
|
|||||||
text
|
text
|
||||||
})
|
})
|
||||||
// avoid test nodes from being observed
|
// avoid test nodes from being observed
|
||||||
markNonReactive(node)
|
markRaw(node)
|
||||||
return node
|
return node
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user