vue3-yuanma/packages/runtime-core/src/compat/instance.ts

63 lines
1.9 KiB
TypeScript
Raw Normal View History

2021-04-05 22:13:29 +00:00
import { extend, NOOP } from '@vue/shared'
import { PublicPropertiesMap } from '../componentPublicInstance'
2021-04-08 14:06:12 +00:00
import { getCompatChildren } from './instanceChildren'
import { assertCompatEnabled } from './compatConfig'
2021-04-08 14:41:25 +00:00
import { DeprecationTypes, warnDeprecation } from './deprecations'
2021-04-08 14:06:12 +00:00
import { off, on, once } from './instanceEventEmitter'
import { getCompatListeners } from './instanceListeners'
2021-04-08 14:41:25 +00:00
import { shallowReadonly } from '@vue/reactivity'
2021-04-05 22:13:29 +00:00
export function installCompatInstanceProperties(map: PublicPropertiesMap) {
const set = (target: any, key: any, val: any) => {
target[key] = val
}
const del = (target: any, key: any) => {
delete target[key]
}
extend(map, {
$set: () => {
assertCompatEnabled(DeprecationTypes.INSTANCE_SET)
2021-04-05 22:13:29 +00:00
return set
},
2021-04-08 14:21:14 +00:00
2021-04-05 22:13:29 +00:00
$delete: () => {
assertCompatEnabled(DeprecationTypes.INSTANCE_DELETE)
2021-04-05 22:13:29 +00:00
return del
},
2021-04-08 14:21:14 +00:00
2021-04-05 22:13:29 +00:00
$mount: i => {
assertCompatEnabled(DeprecationTypes.GLOBAL_MOUNT)
2021-04-05 22:13:29 +00:00
// root mount override from ./global.ts in installCompatMount
return i.ctx._compat_mount || NOOP
},
2021-04-08 14:21:14 +00:00
2021-04-05 22:13:29 +00:00
$destroy: i => {
assertCompatEnabled(DeprecationTypes.INSTANCE_DESTROY)
2021-04-05 22:13:29 +00:00
// root destroy override from ./global.ts in installCompatMount
return i.ctx._compat_destroy || NOOP
2021-04-06 19:58:12 +00:00
},
2021-04-08 14:21:14 +00:00
$scopedSlots: i => {
assertCompatEnabled(DeprecationTypes.INSTANCE_SCOPED_SLOTS)
2021-04-08 14:41:25 +00:00
return __DEV__ ? shallowReadonly(i.slots) : i.slots
},
// overrides existing accessor
$attrs: i => {
if (__DEV__ && i.type.inheritAttrs === false) {
warnDeprecation(DeprecationTypes.INSTANCE_ATTRS_CLASS_STYLE)
}
return __DEV__ ? shallowReadonly(i.attrs) : i.attrs
2021-04-08 14:21:14 +00:00
},
2021-04-06 19:58:12 +00:00
$on: i => on.bind(null, i),
$once: i => once.bind(null, i),
2021-04-06 20:51:11 +00:00
$off: i => off.bind(null, i),
2021-04-08 14:21:14 +00:00
2021-04-08 14:06:12 +00:00
$children: getCompatChildren,
$listeners: getCompatListeners
2021-04-05 22:13:29 +00:00
} as PublicPropertiesMap)
}