wip: more compat tweaks
This commit is contained in:
parent
12abd4af85
commit
98bc9a26e9
@ -36,6 +36,7 @@ import { queuePostRenderEffect } from './renderer'
|
||||
import { warn } from './warning'
|
||||
import { DeprecationTypes } from './compat/compatConfig'
|
||||
import { checkCompatEnabled, isCompatEnabled } from './compat/compatConfig'
|
||||
import { ObjectWatchOptionItem } from './componentOptions'
|
||||
|
||||
export type WatchEffect = (onInvalidate: InvalidateCbRegistrator) => void
|
||||
|
||||
@ -354,7 +355,7 @@ function doWatch(
|
||||
export function instanceWatch(
|
||||
this: ComponentInternalInstance,
|
||||
source: string | Function,
|
||||
cb: WatchCallback,
|
||||
value: WatchCallback | ObjectWatchOptionItem,
|
||||
options?: WatchOptions
|
||||
): WatchStopHandle {
|
||||
const publicThis = this.proxy as any
|
||||
@ -363,6 +364,13 @@ export function instanceWatch(
|
||||
? createPathGetter(publicThis, source)
|
||||
: () => publicThis[source]
|
||||
: source.bind(publicThis)
|
||||
let cb
|
||||
if (isFunction(value)) {
|
||||
cb = value
|
||||
} else {
|
||||
cb = value.handler as Function
|
||||
options = value
|
||||
}
|
||||
return doWatch(getter, cb.bind(publicThis), options, this)
|
||||
}
|
||||
|
||||
|
@ -109,6 +109,8 @@ export function createCompatVue(
|
||||
} as any
|
||||
|
||||
const singletonApp = createApp({})
|
||||
// @ts-ignore
|
||||
singletonApp.prototype = singletonApp.config.globalProperties
|
||||
|
||||
function createCompatApp(options: ComponentOptions = {}, Ctor: any) {
|
||||
assertCompatEnabled(DeprecationTypes.GLOBAL_MOUNT, null)
|
||||
@ -145,7 +147,10 @@ export function createCompatVue(
|
||||
|
||||
// copy prototype augmentations as config.globalProperties
|
||||
if (isCompatEnabled(DeprecationTypes.GLOBAL_PROTOTYPE, null)) {
|
||||
app.config.globalProperties = Ctor.prototype
|
||||
app.config.globalProperties = extend(
|
||||
Object.create(Ctor.prototype),
|
||||
singletonApp.config.globalProperties
|
||||
)
|
||||
}
|
||||
let hasPrototypeAugmentations = false
|
||||
for (const key in Ctor.prototype) {
|
||||
|
@ -1,4 +1,11 @@
|
||||
import { extend, NOOP, toDisplayString, toNumber } from '@vue/shared'
|
||||
import {
|
||||
extend,
|
||||
looseEqual,
|
||||
looseIndexOf,
|
||||
NOOP,
|
||||
toDisplayString,
|
||||
toNumber
|
||||
} from '@vue/shared'
|
||||
import { PublicPropertiesMap } from '../componentPublicInstance'
|
||||
import { getCompatChildren } from './instanceChildren'
|
||||
import {
|
||||
@ -14,13 +21,17 @@ import { compatH } from './renderFn'
|
||||
import { createCommentVNode, createTextVNode } from '../vnode'
|
||||
import { renderList } from '../helpers/renderList'
|
||||
import {
|
||||
legacyBindDynamicKeys,
|
||||
legacyBindObjectListeners,
|
||||
legacyBindObjectProps,
|
||||
legacyCheckKeyCodes,
|
||||
legacyMarkOnce,
|
||||
legacyPrependModifier,
|
||||
legacyRenderSlot,
|
||||
legacyRenderStatic,
|
||||
legacyresolveScopedSlots
|
||||
} from './renderHelpers'
|
||||
import { resolveFilter } from '../helpers/resolveAssets'
|
||||
|
||||
export function installCompatInstanceProperties(map: PublicPropertiesMap) {
|
||||
const set = (target: any, key: any, val: any) => {
|
||||
@ -85,16 +96,22 @@ export function installCompatInstanceProperties(map: PublicPropertiesMap) {
|
||||
$createElement: () => compatH,
|
||||
_self: i => i.proxy,
|
||||
_c: () => compatH,
|
||||
_o: () => legacyMarkOnce,
|
||||
_n: () => toNumber,
|
||||
_s: () => toDisplayString,
|
||||
_l: () => renderList,
|
||||
_t: i => legacyRenderSlot.bind(null, i),
|
||||
_b: () => legacyBindObjectProps,
|
||||
_e: () => createCommentVNode,
|
||||
_v: () => createTextVNode,
|
||||
_q: () => looseEqual,
|
||||
_i: () => looseIndexOf,
|
||||
_m: i => legacyRenderStatic.bind(null, i),
|
||||
_g: () => legacyBindObjectListeners,
|
||||
_f: () => resolveFilter,
|
||||
_k: i => legacyCheckKeyCodes.bind(null, i),
|
||||
_b: () => legacyBindObjectProps,
|
||||
_v: () => createTextVNode,
|
||||
_e: () => createCommentVNode,
|
||||
_u: () => legacyresolveScopedSlots,
|
||||
_k: i => legacyCheckKeyCodes.bind(null, i)
|
||||
_g: () => legacyBindObjectListeners,
|
||||
_d: () => legacyBindDynamicKeys,
|
||||
_p: () => legacyPrependModifier
|
||||
} as PublicPropertiesMap)
|
||||
}
|
||||
|
@ -162,3 +162,21 @@ function isKeyNotMatch<T>(expect: T | T[], actual: T): boolean {
|
||||
return expect !== actual
|
||||
}
|
||||
}
|
||||
|
||||
export function legacyMarkOnce(tree: VNode) {
|
||||
return tree
|
||||
}
|
||||
|
||||
export function legacyBindDynamicKeys(props: any, values: any[]) {
|
||||
for (let i = 0; i < values.length; i += 2) {
|
||||
const key = values[i]
|
||||
if (typeof key === 'string' && key) {
|
||||
props[values[i]] = values[i + 1]
|
||||
}
|
||||
}
|
||||
return props
|
||||
}
|
||||
|
||||
export function legacyPrependModifier(value: any, symbol: string) {
|
||||
return typeof value === 'string' ? symbol + value : value
|
||||
}
|
||||
|
@ -360,10 +360,11 @@ export type ExtractComputedReturns<T extends any> = {
|
||||
: T[key] extends (...args: any[]) => infer TReturn ? TReturn : never
|
||||
}
|
||||
|
||||
type WatchOptionItem =
|
||||
| string
|
||||
| WatchCallback
|
||||
| { handler: WatchCallback | string } & WatchOptions
|
||||
export type ObjectWatchOptionItem = {
|
||||
handler: WatchCallback | string
|
||||
} & WatchOptions
|
||||
|
||||
type WatchOptionItem = string | WatchCallback | ObjectWatchOptionItem
|
||||
|
||||
type ComponentWatchOptionItem = WatchOptionItem | WatchOptionItem[]
|
||||
|
||||
@ -949,7 +950,7 @@ function resolveData(
|
||||
}
|
||||
}
|
||||
|
||||
function createWatcher(
|
||||
export function createWatcher(
|
||||
raw: ComponentWatchOptionItem,
|
||||
ctx: Data,
|
||||
publicThis: ComponentPublicInstance,
|
||||
|
Loading…
Reference in New Issue
Block a user