refactor(reactivity): improve tree-shaking annotations
This commit is contained in:
@@ -42,37 +42,42 @@ const shallowGet = /*#__PURE__*/ createGetter(false, true)
|
||||
const readonlyGet = /*#__PURE__*/ createGetter(true)
|
||||
const shallowReadonlyGet = /*#__PURE__*/ createGetter(true, true)
|
||||
|
||||
const arrayInstrumentations: Record<string, Function> = {}
|
||||
// instrument identity-sensitive Array methods to account for possible reactive
|
||||
// values
|
||||
;(['includes', 'indexOf', 'lastIndexOf'] as const).forEach(key => {
|
||||
const method = Array.prototype[key] as any
|
||||
arrayInstrumentations[key] = function(this: unknown[], ...args: unknown[]) {
|
||||
const arr = toRaw(this)
|
||||
for (let i = 0, l = this.length; i < l; i++) {
|
||||
track(arr, TrackOpTypes.GET, i + '')
|
||||
const arrayInstrumentations = /*#__PURE__*/ createArrayInstrumentations()
|
||||
|
||||
function createArrayInstrumentations() {
|
||||
const instrumentations: Record<string, Function> = {}
|
||||
// instrument identity-sensitive Array methods to account for possible reactive
|
||||
// values
|
||||
;(['includes', 'indexOf', 'lastIndexOf'] as const).forEach(key => {
|
||||
const method = Array.prototype[key] as any
|
||||
instrumentations[key] = function(this: unknown[], ...args: unknown[]) {
|
||||
const arr = toRaw(this)
|
||||
for (let i = 0, l = this.length; i < l; i++) {
|
||||
track(arr, TrackOpTypes.GET, i + '')
|
||||
}
|
||||
// we run the method using the original args first (which may be reactive)
|
||||
const res = method.apply(arr, args)
|
||||
if (res === -1 || res === false) {
|
||||
// if that didn't work, run it again using raw values.
|
||||
return method.apply(arr, args.map(toRaw))
|
||||
} else {
|
||||
return res
|
||||
}
|
||||
}
|
||||
// we run the method using the original args first (which may be reactive)
|
||||
const res = method.apply(arr, args)
|
||||
if (res === -1 || res === false) {
|
||||
// if that didn't work, run it again using raw values.
|
||||
return method.apply(arr, args.map(toRaw))
|
||||
} else {
|
||||
})
|
||||
// instrument length-altering mutation methods to avoid length being tracked
|
||||
// which leads to infinite loops in some cases (#2137)
|
||||
;(['push', 'pop', 'shift', 'unshift', 'splice'] as const).forEach(key => {
|
||||
const method = Array.prototype[key] as any
|
||||
instrumentations[key] = function(this: unknown[], ...args: unknown[]) {
|
||||
pauseTracking()
|
||||
const res = method.apply(this, args)
|
||||
resetTracking()
|
||||
return res
|
||||
}
|
||||
}
|
||||
})
|
||||
// instrument length-altering mutation methods to avoid length being tracked
|
||||
// which leads to infinite loops in some cases (#2137)
|
||||
;(['push', 'pop', 'shift', 'unshift', 'splice'] as const).forEach(key => {
|
||||
const method = Array.prototype[key] as any
|
||||
arrayInstrumentations[key] = function(this: unknown[], ...args: unknown[]) {
|
||||
pauseTracking()
|
||||
const res = method.apply(this, args)
|
||||
resetTracking()
|
||||
return res
|
||||
}
|
||||
})
|
||||
})
|
||||
return instrumentations
|
||||
}
|
||||
|
||||
function createGetter(isReadonly = false, shallow = false) {
|
||||
return function get(target: Target, key: string | symbol, receiver: object) {
|
||||
@@ -224,7 +229,7 @@ export const readonlyHandlers: ProxyHandler<object> = {
|
||||
}
|
||||
}
|
||||
|
||||
export const shallowReactiveHandlers: ProxyHandler<object> = extend(
|
||||
export const shallowReactiveHandlers = /*#__PURE__*/ extend(
|
||||
{},
|
||||
mutableHandlers,
|
||||
{
|
||||
@@ -236,7 +241,7 @@ export const shallowReactiveHandlers: ProxyHandler<object> = extend(
|
||||
// Props handlers are special in the sense that it should not unwrap top-level
|
||||
// refs (in order to allow refs to be explicitly passed down), but should
|
||||
// retain the reactivity of the normal readonly object.
|
||||
export const shallowReadonlyHandlers: ProxyHandler<object> = extend(
|
||||
export const shallowReadonlyHandlers = /*#__PURE__*/ extend(
|
||||
{},
|
||||
readonlyHandlers,
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user