first
This commit is contained in:
5
node_modules/vue/src/core/components/index.ts
generated
vendored
Normal file
5
node_modules/vue/src/core/components/index.ts
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import KeepAlive from './keep-alive'
|
||||
|
||||
export default {
|
||||
KeepAlive
|
||||
}
|
165
node_modules/vue/src/core/components/keep-alive.ts
generated
vendored
Normal file
165
node_modules/vue/src/core/components/keep-alive.ts
generated
vendored
Normal file
@ -0,0 +1,165 @@
|
||||
import { isRegExp, isArray, remove } from 'shared/util'
|
||||
import { getFirstComponentChild } from 'core/vdom/helpers/index'
|
||||
import type VNode from 'core/vdom/vnode'
|
||||
import type { VNodeComponentOptions } from 'types/vnode'
|
||||
import type { Component } from 'types/component'
|
||||
import { getComponentName } from '../vdom/create-component'
|
||||
|
||||
type CacheEntry = {
|
||||
name?: string
|
||||
tag?: string
|
||||
componentInstance?: Component
|
||||
}
|
||||
|
||||
type CacheEntryMap = Record<string, CacheEntry | null>
|
||||
|
||||
function _getComponentName(opts?: VNodeComponentOptions): string | null {
|
||||
return opts && (getComponentName(opts.Ctor.options as any) || opts.tag)
|
||||
}
|
||||
|
||||
function matches(
|
||||
pattern: string | RegExp | Array<string>,
|
||||
name: string
|
||||
): boolean {
|
||||
if (isArray(pattern)) {
|
||||
return pattern.indexOf(name) > -1
|
||||
} else if (typeof pattern === 'string') {
|
||||
return pattern.split(',').indexOf(name) > -1
|
||||
} else if (isRegExp(pattern)) {
|
||||
return pattern.test(name)
|
||||
}
|
||||
/* istanbul ignore next */
|
||||
return false
|
||||
}
|
||||
|
||||
function pruneCache(
|
||||
keepAliveInstance: { cache: CacheEntryMap; keys: string[]; _vnode: VNode },
|
||||
filter: Function
|
||||
) {
|
||||
const { cache, keys, _vnode } = keepAliveInstance
|
||||
for (const key in cache) {
|
||||
const entry = cache[key]
|
||||
if (entry) {
|
||||
const name = entry.name
|
||||
if (name && !filter(name)) {
|
||||
pruneCacheEntry(cache, key, keys, _vnode)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function pruneCacheEntry(
|
||||
cache: CacheEntryMap,
|
||||
key: string,
|
||||
keys: Array<string>,
|
||||
current?: VNode
|
||||
) {
|
||||
const entry = cache[key]
|
||||
if (entry && (!current || entry.tag !== current.tag)) {
|
||||
// @ts-expect-error can be undefined
|
||||
entry.componentInstance.$destroy()
|
||||
}
|
||||
cache[key] = null
|
||||
remove(keys, key)
|
||||
}
|
||||
|
||||
const patternTypes: Array<Function> = [String, RegExp, Array]
|
||||
|
||||
// TODO defineComponent
|
||||
export default {
|
||||
name: 'keep-alive',
|
||||
abstract: true,
|
||||
|
||||
props: {
|
||||
include: patternTypes,
|
||||
exclude: patternTypes,
|
||||
max: [String, Number]
|
||||
},
|
||||
|
||||
methods: {
|
||||
cacheVNode() {
|
||||
const { cache, keys, vnodeToCache, keyToCache } = this
|
||||
if (vnodeToCache) {
|
||||
const { tag, componentInstance, componentOptions } = vnodeToCache
|
||||
cache[keyToCache] = {
|
||||
name: _getComponentName(componentOptions),
|
||||
tag,
|
||||
componentInstance
|
||||
}
|
||||
keys.push(keyToCache)
|
||||
// prune oldest entry
|
||||
if (this.max && keys.length > parseInt(this.max)) {
|
||||
pruneCacheEntry(cache, keys[0], keys, this._vnode)
|
||||
}
|
||||
this.vnodeToCache = null
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
this.cache = Object.create(null)
|
||||
this.keys = []
|
||||
},
|
||||
|
||||
destroyed() {
|
||||
for (const key in this.cache) {
|
||||
pruneCacheEntry(this.cache, key, this.keys)
|
||||
}
|
||||
},
|
||||
|
||||
mounted() {
|
||||
this.cacheVNode()
|
||||
this.$watch('include', val => {
|
||||
pruneCache(this, name => matches(val, name))
|
||||
})
|
||||
this.$watch('exclude', val => {
|
||||
pruneCache(this, name => !matches(val, name))
|
||||
})
|
||||
},
|
||||
|
||||
updated() {
|
||||
this.cacheVNode()
|
||||
},
|
||||
|
||||
render() {
|
||||
const slot = this.$slots.default
|
||||
const vnode = getFirstComponentChild(slot)
|
||||
const componentOptions = vnode && vnode.componentOptions
|
||||
if (componentOptions) {
|
||||
// check pattern
|
||||
const name = _getComponentName(componentOptions)
|
||||
const { include, exclude } = this
|
||||
if (
|
||||
// not included
|
||||
(include && (!name || !matches(include, name))) ||
|
||||
// excluded
|
||||
(exclude && name && matches(exclude, name))
|
||||
) {
|
||||
return vnode
|
||||
}
|
||||
|
||||
const { cache, keys } = this
|
||||
const key =
|
||||
vnode.key == null
|
||||
? // same constructor may get registered as different local components
|
||||
// so cid alone is not enough (#3269)
|
||||
componentOptions.Ctor.cid +
|
||||
(componentOptions.tag ? `::${componentOptions.tag}` : '')
|
||||
: vnode.key
|
||||
if (cache[key]) {
|
||||
vnode.componentInstance = cache[key].componentInstance
|
||||
// make current key freshest
|
||||
remove(keys, key)
|
||||
keys.push(key)
|
||||
} else {
|
||||
// delay setting the cache until update
|
||||
this.vnodeToCache = vnode
|
||||
this.keyToCache = key
|
||||
}
|
||||
|
||||
// @ts-expect-error can vnode.data can be undefined
|
||||
vnode.data.keepAlive = true
|
||||
}
|
||||
return vnode || (slot && slot[0])
|
||||
}
|
||||
}
|
128
node_modules/vue/src/core/config.ts
generated
vendored
Normal file
128
node_modules/vue/src/core/config.ts
generated
vendored
Normal file
@ -0,0 +1,128 @@
|
||||
import { no, noop, identity } from 'shared/util'
|
||||
|
||||
import { LIFECYCLE_HOOKS } from 'shared/constants'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export interface Config {
|
||||
// user
|
||||
optionMergeStrategies: { [key: string]: Function }
|
||||
silent: boolean
|
||||
productionTip: boolean
|
||||
performance: boolean
|
||||
devtools: boolean
|
||||
errorHandler?: (err: Error, vm: Component | null, info: string) => void
|
||||
warnHandler?: (msg: string, vm: Component | null, trace: string) => void
|
||||
ignoredElements: Array<string | RegExp>
|
||||
keyCodes: { [key: string]: number | Array<number> }
|
||||
|
||||
// platform
|
||||
isReservedTag: (x: string) => boolean | undefined
|
||||
isReservedAttr: (x: string) => true | undefined
|
||||
parsePlatformTagName: (x: string) => string
|
||||
isUnknownElement: (x: string) => boolean
|
||||
getTagNamespace: (x: string) => string | undefined
|
||||
mustUseProp: (tag: string, type?: string | null, name?: string) => boolean
|
||||
|
||||
// private
|
||||
async: boolean
|
||||
|
||||
// legacy
|
||||
_lifecycleHooks: Array<string>
|
||||
}
|
||||
|
||||
export default {
|
||||
/**
|
||||
* Option merge strategies (used in core/util/options)
|
||||
*/
|
||||
// $flow-disable-line
|
||||
optionMergeStrategies: Object.create(null),
|
||||
|
||||
/**
|
||||
* Whether to suppress warnings.
|
||||
*/
|
||||
silent: false,
|
||||
|
||||
/**
|
||||
* Show production mode tip message on boot?
|
||||
*/
|
||||
productionTip: __DEV__,
|
||||
|
||||
/**
|
||||
* Whether to enable devtools
|
||||
*/
|
||||
devtools: __DEV__,
|
||||
|
||||
/**
|
||||
* Whether to record perf
|
||||
*/
|
||||
performance: false,
|
||||
|
||||
/**
|
||||
* Error handler for watcher errors
|
||||
*/
|
||||
errorHandler: null,
|
||||
|
||||
/**
|
||||
* Warn handler for watcher warns
|
||||
*/
|
||||
warnHandler: null,
|
||||
|
||||
/**
|
||||
* Ignore certain custom elements
|
||||
*/
|
||||
ignoredElements: [],
|
||||
|
||||
/**
|
||||
* Custom user key aliases for v-on
|
||||
*/
|
||||
// $flow-disable-line
|
||||
keyCodes: Object.create(null),
|
||||
|
||||
/**
|
||||
* Check if a tag is reserved so that it cannot be registered as a
|
||||
* component. This is platform-dependent and may be overwritten.
|
||||
*/
|
||||
isReservedTag: no,
|
||||
|
||||
/**
|
||||
* Check if an attribute is reserved so that it cannot be used as a component
|
||||
* prop. This is platform-dependent and may be overwritten.
|
||||
*/
|
||||
isReservedAttr: no,
|
||||
|
||||
/**
|
||||
* Check if a tag is an unknown element.
|
||||
* Platform-dependent.
|
||||
*/
|
||||
isUnknownElement: no,
|
||||
|
||||
/**
|
||||
* Get the namespace of an element
|
||||
*/
|
||||
getTagNamespace: noop,
|
||||
|
||||
/**
|
||||
* Parse the real tag name for the specific platform.
|
||||
*/
|
||||
parsePlatformTagName: identity,
|
||||
|
||||
/**
|
||||
* Check if an attribute must be bound using property, e.g. value
|
||||
* Platform-dependent.
|
||||
*/
|
||||
mustUseProp: no,
|
||||
|
||||
/**
|
||||
* Perform updates asynchronously. Intended to be used by Vue Test Utils
|
||||
* This will significantly reduce performance if set to false.
|
||||
*/
|
||||
async: true,
|
||||
|
||||
/**
|
||||
* Exposed for legacy reasons
|
||||
*/
|
||||
_lifecycleHooks: LIFECYCLE_HOOKS
|
||||
} as unknown as Config
|
35
node_modules/vue/src/core/global-api/assets.ts
generated
vendored
Normal file
35
node_modules/vue/src/core/global-api/assets.ts
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
import { ASSET_TYPES } from 'shared/constants'
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
import { isFunction, isPlainObject, validateComponentName } from '../util/index'
|
||||
|
||||
export function initAssetRegisters(Vue: GlobalAPI) {
|
||||
/**
|
||||
* Create asset registration methods.
|
||||
*/
|
||||
ASSET_TYPES.forEach(type => {
|
||||
// @ts-expect-error function is not exact same type
|
||||
Vue[type] = function (
|
||||
id: string,
|
||||
definition?: Function | Object
|
||||
): Function | Object | void {
|
||||
if (!definition) {
|
||||
return this.options[type + 's'][id]
|
||||
} else {
|
||||
/* istanbul ignore if */
|
||||
if (__DEV__ && type === 'component') {
|
||||
validateComponentName(id)
|
||||
}
|
||||
if (type === 'component' && isPlainObject(definition)) {
|
||||
// @ts-expect-error
|
||||
definition.name = definition.name || id
|
||||
definition = this.options._base.extend(definition)
|
||||
}
|
||||
if (type === 'directive' && isFunction(definition)) {
|
||||
definition = { bind: definition, update: definition }
|
||||
}
|
||||
this.options[type + 's'][id] = definition
|
||||
return definition
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
94
node_modules/vue/src/core/global-api/extend.ts
generated
vendored
Normal file
94
node_modules/vue/src/core/global-api/extend.ts
generated
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
import { ASSET_TYPES } from 'shared/constants'
|
||||
import type { Component } from 'types/component'
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
import { defineComputed, proxy } from '../instance/state'
|
||||
import { extend, mergeOptions, validateComponentName } from '../util/index'
|
||||
import { getComponentName } from '../vdom/create-component'
|
||||
|
||||
export function initExtend(Vue: GlobalAPI) {
|
||||
/**
|
||||
* Each instance constructor, including Vue, has a unique
|
||||
* cid. This enables us to create wrapped "child
|
||||
* constructors" for prototypal inheritance and cache them.
|
||||
*/
|
||||
Vue.cid = 0
|
||||
let cid = 1
|
||||
|
||||
/**
|
||||
* Class inheritance
|
||||
*/
|
||||
Vue.extend = function (extendOptions: any): typeof Component {
|
||||
extendOptions = extendOptions || {}
|
||||
const Super = this
|
||||
const SuperId = Super.cid
|
||||
const cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {})
|
||||
if (cachedCtors[SuperId]) {
|
||||
return cachedCtors[SuperId]
|
||||
}
|
||||
|
||||
const name =
|
||||
getComponentName(extendOptions) || getComponentName(Super.options)
|
||||
if (__DEV__ && name) {
|
||||
validateComponentName(name)
|
||||
}
|
||||
|
||||
const Sub = function VueComponent(this: any, options: any) {
|
||||
this._init(options)
|
||||
} as unknown as typeof Component
|
||||
Sub.prototype = Object.create(Super.prototype)
|
||||
Sub.prototype.constructor = Sub
|
||||
Sub.cid = cid++
|
||||
Sub.options = mergeOptions(Super.options, extendOptions)
|
||||
Sub['super'] = Super
|
||||
|
||||
// For props and computed properties, we define the proxy getters on
|
||||
// the Vue instances at extension time, on the extended prototype. This
|
||||
// avoids Object.defineProperty calls for each instance created.
|
||||
if (Sub.options.props) {
|
||||
initProps(Sub)
|
||||
}
|
||||
if (Sub.options.computed) {
|
||||
initComputed(Sub)
|
||||
}
|
||||
|
||||
// allow further extension/mixin/plugin usage
|
||||
Sub.extend = Super.extend
|
||||
Sub.mixin = Super.mixin
|
||||
Sub.use = Super.use
|
||||
|
||||
// create asset registers, so extended classes
|
||||
// can have their private assets too.
|
||||
ASSET_TYPES.forEach(function (type) {
|
||||
Sub[type] = Super[type]
|
||||
})
|
||||
// enable recursive self-lookup
|
||||
if (name) {
|
||||
Sub.options.components[name] = Sub
|
||||
}
|
||||
|
||||
// keep a reference to the super options at extension time.
|
||||
// later at instantiation we can check if Super's options have
|
||||
// been updated.
|
||||
Sub.superOptions = Super.options
|
||||
Sub.extendOptions = extendOptions
|
||||
Sub.sealedOptions = extend({}, Sub.options)
|
||||
|
||||
// cache constructor
|
||||
cachedCtors[SuperId] = Sub
|
||||
return Sub
|
||||
}
|
||||
}
|
||||
|
||||
function initProps(Comp: typeof Component) {
|
||||
const props = Comp.options.props
|
||||
for (const key in props) {
|
||||
proxy(Comp.prototype, `_props`, key)
|
||||
}
|
||||
}
|
||||
|
||||
function initComputed(Comp: typeof Component) {
|
||||
const computed = Comp.options.computed
|
||||
for (const key in computed) {
|
||||
defineComputed(Comp.prototype, key, computed[key])
|
||||
}
|
||||
}
|
68
node_modules/vue/src/core/global-api/index.ts
generated
vendored
Normal file
68
node_modules/vue/src/core/global-api/index.ts
generated
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
import config from '../config'
|
||||
import { initUse } from './use'
|
||||
import { initMixin } from './mixin'
|
||||
import { initExtend } from './extend'
|
||||
import { initAssetRegisters } from './assets'
|
||||
import { set, del } from '../observer/index'
|
||||
import { ASSET_TYPES } from 'shared/constants'
|
||||
import builtInComponents from '../components/index'
|
||||
import { observe } from 'core/observer/index'
|
||||
|
||||
import {
|
||||
warn,
|
||||
extend,
|
||||
nextTick,
|
||||
mergeOptions,
|
||||
defineReactive
|
||||
} from '../util/index'
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
|
||||
export function initGlobalAPI(Vue: GlobalAPI) {
|
||||
// config
|
||||
const configDef: Record<string, any> = {}
|
||||
configDef.get = () => config
|
||||
if (__DEV__) {
|
||||
configDef.set = () => {
|
||||
warn(
|
||||
'Do not replace the Vue.config object, set individual fields instead.'
|
||||
)
|
||||
}
|
||||
}
|
||||
Object.defineProperty(Vue, 'config', configDef)
|
||||
|
||||
// exposed util methods.
|
||||
// NOTE: these are not considered part of the public API - avoid relying on
|
||||
// them unless you are aware of the risk.
|
||||
Vue.util = {
|
||||
warn,
|
||||
extend,
|
||||
mergeOptions,
|
||||
defineReactive
|
||||
}
|
||||
|
||||
Vue.set = set
|
||||
Vue.delete = del
|
||||
Vue.nextTick = nextTick
|
||||
|
||||
// 2.6 explicit observable API
|
||||
Vue.observable = <T>(obj: T): T => {
|
||||
observe(obj)
|
||||
return obj
|
||||
}
|
||||
|
||||
Vue.options = Object.create(null)
|
||||
ASSET_TYPES.forEach(type => {
|
||||
Vue.options[type + 's'] = Object.create(null)
|
||||
})
|
||||
|
||||
// this is used to identify the "base" constructor to extend all plain-object
|
||||
// components with in Weex's multi-instance scenarios.
|
||||
Vue.options._base = Vue
|
||||
|
||||
extend(Vue.options.components, builtInComponents)
|
||||
|
||||
initUse(Vue)
|
||||
initMixin(Vue)
|
||||
initExtend(Vue)
|
||||
initAssetRegisters(Vue)
|
||||
}
|
9
node_modules/vue/src/core/global-api/mixin.ts
generated
vendored
Normal file
9
node_modules/vue/src/core/global-api/mixin.ts
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
import { mergeOptions } from '../util/index'
|
||||
|
||||
export function initMixin(Vue: GlobalAPI) {
|
||||
Vue.mixin = function (mixin: Object) {
|
||||
this.options = mergeOptions(this.options, mixin)
|
||||
return this
|
||||
}
|
||||
}
|
23
node_modules/vue/src/core/global-api/use.ts
generated
vendored
Normal file
23
node_modules/vue/src/core/global-api/use.ts
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
import { toArray, isFunction } from '../util/index'
|
||||
|
||||
export function initUse(Vue: GlobalAPI) {
|
||||
Vue.use = function (plugin: Function | any) {
|
||||
const installedPlugins =
|
||||
this._installedPlugins || (this._installedPlugins = [])
|
||||
if (installedPlugins.indexOf(plugin) > -1) {
|
||||
return this
|
||||
}
|
||||
|
||||
// additional parameters
|
||||
const args = toArray(arguments, 1)
|
||||
args.unshift(this)
|
||||
if (isFunction(plugin.install)) {
|
||||
plugin.install.apply(plugin, args)
|
||||
} else if (isFunction(plugin)) {
|
||||
plugin.apply(null, args)
|
||||
}
|
||||
installedPlugins.push(plugin)
|
||||
return this
|
||||
}
|
||||
}
|
27
node_modules/vue/src/core/index.ts
generated
vendored
Normal file
27
node_modules/vue/src/core/index.ts
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
import Vue from './instance/index'
|
||||
import { initGlobalAPI } from './global-api/index'
|
||||
import { isServerRendering } from 'core/util/env'
|
||||
import { FunctionalRenderContext } from 'core/vdom/create-functional-component'
|
||||
import { version } from 'v3'
|
||||
|
||||
initGlobalAPI(Vue)
|
||||
|
||||
Object.defineProperty(Vue.prototype, '$isServer', {
|
||||
get: isServerRendering
|
||||
})
|
||||
|
||||
Object.defineProperty(Vue.prototype, '$ssrContext', {
|
||||
get() {
|
||||
/* istanbul ignore next */
|
||||
return this.$vnode && this.$vnode.ssrContext
|
||||
}
|
||||
})
|
||||
|
||||
// expose FunctionalRenderContext for ssr runtime helper installation
|
||||
Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
})
|
||||
|
||||
Vue.version = version
|
||||
|
||||
export default Vue
|
160
node_modules/vue/src/core/instance/events.ts
generated
vendored
Normal file
160
node_modules/vue/src/core/instance/events.ts
generated
vendored
Normal file
@ -0,0 +1,160 @@
|
||||
import type { Component } from 'types/component'
|
||||
import {
|
||||
tip,
|
||||
toArray,
|
||||
isArray,
|
||||
hyphenate,
|
||||
formatComponentName,
|
||||
invokeWithErrorHandling
|
||||
} from '../util/index'
|
||||
import { updateListeners } from '../vdom/helpers/index'
|
||||
|
||||
export function initEvents(vm: Component) {
|
||||
vm._events = Object.create(null)
|
||||
vm._hasHookEvent = false
|
||||
// init parent attached events
|
||||
const listeners = vm.$options._parentListeners
|
||||
if (listeners) {
|
||||
updateComponentListeners(vm, listeners)
|
||||
}
|
||||
}
|
||||
|
||||
let target: any
|
||||
|
||||
function add(event, fn) {
|
||||
target.$on(event, fn)
|
||||
}
|
||||
|
||||
function remove(event, fn) {
|
||||
target.$off(event, fn)
|
||||
}
|
||||
|
||||
function createOnceHandler(event, fn) {
|
||||
const _target = target
|
||||
return function onceHandler() {
|
||||
const res = fn.apply(null, arguments)
|
||||
if (res !== null) {
|
||||
_target.$off(event, onceHandler)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function updateComponentListeners(
|
||||
vm: Component,
|
||||
listeners: Object,
|
||||
oldListeners?: Object | null
|
||||
) {
|
||||
target = vm
|
||||
updateListeners(
|
||||
listeners,
|
||||
oldListeners || {},
|
||||
add,
|
||||
remove,
|
||||
createOnceHandler,
|
||||
vm
|
||||
)
|
||||
target = undefined
|
||||
}
|
||||
|
||||
export function eventsMixin(Vue: typeof Component) {
|
||||
const hookRE = /^hook:/
|
||||
Vue.prototype.$on = function (
|
||||
event: string | Array<string>,
|
||||
fn: Function
|
||||
): Component {
|
||||
const vm: Component = this
|
||||
if (isArray(event)) {
|
||||
for (let i = 0, l = event.length; i < l; i++) {
|
||||
vm.$on(event[i], fn)
|
||||
}
|
||||
} else {
|
||||
;(vm._events[event] || (vm._events[event] = [])).push(fn)
|
||||
// optimize hook:event cost by using a boolean flag marked at registration
|
||||
// instead of a hash lookup
|
||||
if (hookRE.test(event)) {
|
||||
vm._hasHookEvent = true
|
||||
}
|
||||
}
|
||||
return vm
|
||||
}
|
||||
|
||||
Vue.prototype.$once = function (event: string, fn: Function): Component {
|
||||
const vm: Component = this
|
||||
function on() {
|
||||
vm.$off(event, on)
|
||||
fn.apply(vm, arguments)
|
||||
}
|
||||
on.fn = fn
|
||||
vm.$on(event, on)
|
||||
return vm
|
||||
}
|
||||
|
||||
Vue.prototype.$off = function (
|
||||
event?: string | Array<string>,
|
||||
fn?: Function
|
||||
): Component {
|
||||
const vm: Component = this
|
||||
// all
|
||||
if (!arguments.length) {
|
||||
vm._events = Object.create(null)
|
||||
return vm
|
||||
}
|
||||
// array of events
|
||||
if (isArray(event)) {
|
||||
for (let i = 0, l = event.length; i < l; i++) {
|
||||
vm.$off(event[i], fn)
|
||||
}
|
||||
return vm
|
||||
}
|
||||
// specific event
|
||||
const cbs = vm._events[event!]
|
||||
if (!cbs) {
|
||||
return vm
|
||||
}
|
||||
if (!fn) {
|
||||
vm._events[event!] = null
|
||||
return vm
|
||||
}
|
||||
// specific handler
|
||||
let cb
|
||||
let i = cbs.length
|
||||
while (i--) {
|
||||
cb = cbs[i]
|
||||
if (cb === fn || cb.fn === fn) {
|
||||
cbs.splice(i, 1)
|
||||
break
|
||||
}
|
||||
}
|
||||
return vm
|
||||
}
|
||||
|
||||
Vue.prototype.$emit = function (event: string): Component {
|
||||
const vm: Component = this
|
||||
if (__DEV__) {
|
||||
const lowerCaseEvent = event.toLowerCase()
|
||||
if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {
|
||||
tip(
|
||||
`Event "${lowerCaseEvent}" is emitted in component ` +
|
||||
`${formatComponentName(
|
||||
vm
|
||||
)} but the handler is registered for "${event}". ` +
|
||||
`Note that HTML attributes are case-insensitive and you cannot use ` +
|
||||
`v-on to listen to camelCase events when using in-DOM templates. ` +
|
||||
`You should probably use "${hyphenate(
|
||||
event
|
||||
)}" instead of "${event}".`
|
||||
)
|
||||
}
|
||||
}
|
||||
let cbs = vm._events[event]
|
||||
if (cbs) {
|
||||
cbs = cbs.length > 1 ? toArray(cbs) : cbs
|
||||
const args = toArray(arguments, 1)
|
||||
const info = `event handler for "${event}"`
|
||||
for (let i = 0, l = cbs.length; i < l; i++) {
|
||||
invokeWithErrorHandling(cbs[i], vm, args, vm, info)
|
||||
}
|
||||
}
|
||||
return vm
|
||||
}
|
||||
}
|
27
node_modules/vue/src/core/instance/index.ts
generated
vendored
Normal file
27
node_modules/vue/src/core/instance/index.ts
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
import { initMixin } from './init'
|
||||
import { stateMixin } from './state'
|
||||
import { renderMixin } from './render'
|
||||
import { eventsMixin } from './events'
|
||||
import { lifecycleMixin } from './lifecycle'
|
||||
import { warn } from '../util/index'
|
||||
import type { GlobalAPI } from 'types/global-api'
|
||||
|
||||
function Vue(options) {
|
||||
if (__DEV__ && !(this instanceof Vue)) {
|
||||
warn('Vue is a constructor and should be called with the `new` keyword')
|
||||
}
|
||||
this._init(options)
|
||||
}
|
||||
|
||||
//@ts-expect-error Vue has function type
|
||||
initMixin(Vue)
|
||||
//@ts-expect-error Vue has function type
|
||||
stateMixin(Vue)
|
||||
//@ts-expect-error Vue has function type
|
||||
eventsMixin(Vue)
|
||||
//@ts-expect-error Vue has function type
|
||||
lifecycleMixin(Vue)
|
||||
//@ts-expect-error Vue has function type
|
||||
renderMixin(Vue)
|
||||
|
||||
export default Vue as unknown as GlobalAPI
|
140
node_modules/vue/src/core/instance/init.ts
generated
vendored
Normal file
140
node_modules/vue/src/core/instance/init.ts
generated
vendored
Normal file
@ -0,0 +1,140 @@
|
||||
import config from '../config'
|
||||
import { initProxy } from './proxy'
|
||||
import { initState } from './state'
|
||||
import { initRender } from './render'
|
||||
import { initEvents } from './events'
|
||||
import { mark, measure } from '../util/perf'
|
||||
import { initLifecycle, callHook } from './lifecycle'
|
||||
import { initProvide, initInjections } from './inject'
|
||||
import { extend, mergeOptions, formatComponentName } from '../util/index'
|
||||
import type { Component } from 'types/component'
|
||||
import type { InternalComponentOptions } from 'types/options'
|
||||
import { EffectScope } from 'v3/reactivity/effectScope'
|
||||
|
||||
let uid = 0
|
||||
|
||||
export function initMixin(Vue: typeof Component) {
|
||||
Vue.prototype._init = function (options?: Record<string, any>) {
|
||||
const vm: Component = this
|
||||
// a uid
|
||||
vm._uid = uid++
|
||||
|
||||
let startTag, endTag
|
||||
/* istanbul ignore if */
|
||||
if (__DEV__ && config.performance && mark) {
|
||||
startTag = `vue-perf-start:${vm._uid}`
|
||||
endTag = `vue-perf-end:${vm._uid}`
|
||||
mark(startTag)
|
||||
}
|
||||
|
||||
// a flag to mark this as a Vue instance without having to do instanceof
|
||||
// check
|
||||
vm._isVue = true
|
||||
// avoid instances from being observed
|
||||
vm.__v_skip = true
|
||||
// effect scope
|
||||
vm._scope = new EffectScope(true /* detached */)
|
||||
vm._scope._vm = true
|
||||
// merge options
|
||||
if (options && options._isComponent) {
|
||||
// optimize internal component instantiation
|
||||
// since dynamic options merging is pretty slow, and none of the
|
||||
// internal component options needs special treatment.
|
||||
initInternalComponent(vm, options as any)
|
||||
} else {
|
||||
vm.$options = mergeOptions(
|
||||
resolveConstructorOptions(vm.constructor as any),
|
||||
options || {},
|
||||
vm
|
||||
)
|
||||
}
|
||||
/* istanbul ignore else */
|
||||
if (__DEV__) {
|
||||
initProxy(vm)
|
||||
} else {
|
||||
vm._renderProxy = vm
|
||||
}
|
||||
// expose real self
|
||||
vm._self = vm
|
||||
initLifecycle(vm)
|
||||
initEvents(vm)
|
||||
initRender(vm)
|
||||
callHook(vm, 'beforeCreate', undefined, false /* setContext */)
|
||||
initInjections(vm) // resolve injections before data/props
|
||||
initState(vm)
|
||||
initProvide(vm) // resolve provide after data/props
|
||||
callHook(vm, 'created')
|
||||
|
||||
/* istanbul ignore if */
|
||||
if (__DEV__ && config.performance && mark) {
|
||||
vm._name = formatComponentName(vm, false)
|
||||
mark(endTag)
|
||||
measure(`vue ${vm._name} init`, startTag, endTag)
|
||||
}
|
||||
|
||||
if (vm.$options.el) {
|
||||
vm.$mount(vm.$options.el)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function initInternalComponent(
|
||||
vm: Component,
|
||||
options: InternalComponentOptions
|
||||
) {
|
||||
const opts = (vm.$options = Object.create((vm.constructor as any).options))
|
||||
// doing this because it's faster than dynamic enumeration.
|
||||
const parentVnode = options._parentVnode
|
||||
opts.parent = options.parent
|
||||
opts._parentVnode = parentVnode
|
||||
|
||||
const vnodeComponentOptions = parentVnode.componentOptions!
|
||||
opts.propsData = vnodeComponentOptions.propsData
|
||||
opts._parentListeners = vnodeComponentOptions.listeners
|
||||
opts._renderChildren = vnodeComponentOptions.children
|
||||
opts._componentTag = vnodeComponentOptions.tag
|
||||
|
||||
if (options.render) {
|
||||
opts.render = options.render
|
||||
opts.staticRenderFns = options.staticRenderFns
|
||||
}
|
||||
}
|
||||
|
||||
export function resolveConstructorOptions(Ctor: typeof Component) {
|
||||
let options = Ctor.options
|
||||
if (Ctor.super) {
|
||||
const superOptions = resolveConstructorOptions(Ctor.super)
|
||||
const cachedSuperOptions = Ctor.superOptions
|
||||
if (superOptions !== cachedSuperOptions) {
|
||||
// super option changed,
|
||||
// need to resolve new options.
|
||||
Ctor.superOptions = superOptions
|
||||
// check if there are any late-modified/attached options (#4976)
|
||||
const modifiedOptions = resolveModifiedOptions(Ctor)
|
||||
// update base extend options
|
||||
if (modifiedOptions) {
|
||||
extend(Ctor.extendOptions, modifiedOptions)
|
||||
}
|
||||
options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions)
|
||||
if (options.name) {
|
||||
options.components[options.name] = Ctor
|
||||
}
|
||||
}
|
||||
}
|
||||
return options
|
||||
}
|
||||
|
||||
function resolveModifiedOptions(
|
||||
Ctor: typeof Component
|
||||
): Record<string, any> | null {
|
||||
let modified
|
||||
const latest = Ctor.options
|
||||
const sealed = Ctor.sealedOptions
|
||||
for (const key in latest) {
|
||||
if (latest[key] !== sealed[key]) {
|
||||
if (!modified) modified = {}
|
||||
modified[key] = latest[key]
|
||||
}
|
||||
}
|
||||
return modified
|
||||
}
|
80
node_modules/vue/src/core/instance/inject.ts
generated
vendored
Normal file
80
node_modules/vue/src/core/instance/inject.ts
generated
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
import { warn, hasSymbol, isFunction, isObject } from '../util/index'
|
||||
import { defineReactive, toggleObserving } from '../observer/index'
|
||||
import type { Component } from 'types/component'
|
||||
import { resolveProvided } from 'v3/apiInject'
|
||||
|
||||
export function initProvide(vm: Component) {
|
||||
const provideOption = vm.$options.provide
|
||||
if (provideOption) {
|
||||
const provided = isFunction(provideOption)
|
||||
? provideOption.call(vm)
|
||||
: provideOption
|
||||
if (!isObject(provided)) {
|
||||
return
|
||||
}
|
||||
const source = resolveProvided(vm)
|
||||
// IE9 doesn't support Object.getOwnPropertyDescriptors so we have to
|
||||
// iterate the keys ourselves.
|
||||
const keys = hasSymbol ? Reflect.ownKeys(provided) : Object.keys(provided)
|
||||
for (let i = 0; i < keys.length; i++) {
|
||||
const key = keys[i]
|
||||
Object.defineProperty(
|
||||
source,
|
||||
key,
|
||||
Object.getOwnPropertyDescriptor(provided, key)!
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function initInjections(vm: Component) {
|
||||
const result = resolveInject(vm.$options.inject, vm)
|
||||
if (result) {
|
||||
toggleObserving(false)
|
||||
Object.keys(result).forEach(key => {
|
||||
/* istanbul ignore else */
|
||||
if (__DEV__) {
|
||||
defineReactive(vm, key, result[key], () => {
|
||||
warn(
|
||||
`Avoid mutating an injected value directly since the changes will be ` +
|
||||
`overwritten whenever the provided component re-renders. ` +
|
||||
`injection being mutated: "${key}"`,
|
||||
vm
|
||||
)
|
||||
})
|
||||
} else {
|
||||
defineReactive(vm, key, result[key])
|
||||
}
|
||||
})
|
||||
toggleObserving(true)
|
||||
}
|
||||
}
|
||||
|
||||
export function resolveInject(
|
||||
inject: any,
|
||||
vm: Component
|
||||
): Record<string, any> | undefined | null {
|
||||
if (inject) {
|
||||
// inject is :any because flow is not smart enough to figure out cached
|
||||
const result = Object.create(null)
|
||||
const keys = hasSymbol ? Reflect.ownKeys(inject) : Object.keys(inject)
|
||||
|
||||
for (let i = 0; i < keys.length; i++) {
|
||||
const key = keys[i]
|
||||
// #6574 in case the inject object is observed...
|
||||
if (key === '__ob__') continue
|
||||
const provideKey = inject[key].from
|
||||
if (provideKey in vm._provided) {
|
||||
result[key] = vm._provided[provideKey]
|
||||
} else if ('default' in inject[key]) {
|
||||
const provideDefault = inject[key].default
|
||||
result[key] = isFunction(provideDefault)
|
||||
? provideDefault.call(vm)
|
||||
: provideDefault
|
||||
} else if (__DEV__) {
|
||||
warn(`Injection "${key as string}" not found`, vm)
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
||||
}
|
415
node_modules/vue/src/core/instance/lifecycle.ts
generated
vendored
Normal file
415
node_modules/vue/src/core/instance/lifecycle.ts
generated
vendored
Normal file
@ -0,0 +1,415 @@
|
||||
import config from '../config'
|
||||
import Watcher, { WatcherOptions } from '../observer/watcher'
|
||||
import { mark, measure } from '../util/perf'
|
||||
import VNode, { createEmptyVNode } from '../vdom/vnode'
|
||||
import { updateComponentListeners } from './events'
|
||||
import { resolveSlots } from './render-helpers/resolve-slots'
|
||||
import { toggleObserving } from '../observer/index'
|
||||
import { pushTarget, popTarget } from '../observer/dep'
|
||||
import type { Component } from 'types/component'
|
||||
import type { MountedComponentVNode } from 'types/vnode'
|
||||
|
||||
import {
|
||||
warn,
|
||||
noop,
|
||||
remove,
|
||||
emptyObject,
|
||||
validateProp,
|
||||
invokeWithErrorHandling
|
||||
} from '../util/index'
|
||||
import { currentInstance, setCurrentInstance } from 'v3/currentInstance'
|
||||
import { syncSetupProxy } from 'v3/apiSetup'
|
||||
|
||||
export let activeInstance: any = null
|
||||
export let isUpdatingChildComponent: boolean = false
|
||||
|
||||
export function setActiveInstance(vm: Component) {
|
||||
const prevActiveInstance = activeInstance
|
||||
activeInstance = vm
|
||||
return () => {
|
||||
activeInstance = prevActiveInstance
|
||||
}
|
||||
}
|
||||
|
||||
export function initLifecycle(vm: Component) {
|
||||
const options = vm.$options
|
||||
|
||||
// locate first non-abstract parent
|
||||
let parent = options.parent
|
||||
if (parent && !options.abstract) {
|
||||
while (parent.$options.abstract && parent.$parent) {
|
||||
parent = parent.$parent
|
||||
}
|
||||
parent.$children.push(vm)
|
||||
}
|
||||
|
||||
vm.$parent = parent
|
||||
vm.$root = parent ? parent.$root : vm
|
||||
|
||||
vm.$children = []
|
||||
vm.$refs = {}
|
||||
|
||||
vm._provided = parent ? parent._provided : Object.create(null)
|
||||
vm._watcher = null
|
||||
vm._inactive = null
|
||||
vm._directInactive = false
|
||||
vm._isMounted = false
|
||||
vm._isDestroyed = false
|
||||
vm._isBeingDestroyed = false
|
||||
}
|
||||
|
||||
export function lifecycleMixin(Vue: typeof Component) {
|
||||
Vue.prototype._update = function (vnode: VNode, hydrating?: boolean) {
|
||||
const vm: Component = this
|
||||
const prevEl = vm.$el
|
||||
const prevVnode = vm._vnode
|
||||
const restoreActiveInstance = setActiveInstance(vm)
|
||||
vm._vnode = vnode
|
||||
// Vue.prototype.__patch__ is injected in entry points
|
||||
// based on the rendering backend used.
|
||||
if (!prevVnode) {
|
||||
// initial render
|
||||
vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */)
|
||||
} else {
|
||||
// updates
|
||||
vm.$el = vm.__patch__(prevVnode, vnode)
|
||||
}
|
||||
restoreActiveInstance()
|
||||
// update __vue__ reference
|
||||
if (prevEl) {
|
||||
prevEl.__vue__ = null
|
||||
}
|
||||
if (vm.$el) {
|
||||
vm.$el.__vue__ = vm
|
||||
}
|
||||
// if parent is an HOC, update its $el as well
|
||||
let wrapper: Component | undefined = vm
|
||||
while (
|
||||
wrapper &&
|
||||
wrapper.$vnode &&
|
||||
wrapper.$parent &&
|
||||
wrapper.$vnode === wrapper.$parent._vnode
|
||||
) {
|
||||
wrapper.$parent.$el = wrapper.$el
|
||||
wrapper = wrapper.$parent
|
||||
}
|
||||
// updated hook is called by the scheduler to ensure that children are
|
||||
// updated in a parent's updated hook.
|
||||
}
|
||||
|
||||
Vue.prototype.$forceUpdate = function () {
|
||||
const vm: Component = this
|
||||
if (vm._watcher) {
|
||||
vm._watcher.update()
|
||||
}
|
||||
}
|
||||
|
||||
Vue.prototype.$destroy = function () {
|
||||
const vm: Component = this
|
||||
if (vm._isBeingDestroyed) {
|
||||
return
|
||||
}
|
||||
callHook(vm, 'beforeDestroy')
|
||||
vm._isBeingDestroyed = true
|
||||
// remove self from parent
|
||||
const parent = vm.$parent
|
||||
if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {
|
||||
remove(parent.$children, vm)
|
||||
}
|
||||
// teardown scope. this includes both the render watcher and other
|
||||
// watchers created
|
||||
vm._scope.stop()
|
||||
// remove reference from data ob
|
||||
// frozen object may not have observer.
|
||||
if (vm._data.__ob__) {
|
||||
vm._data.__ob__.vmCount--
|
||||
}
|
||||
// call the last hook...
|
||||
vm._isDestroyed = true
|
||||
// invoke destroy hooks on current rendered tree
|
||||
vm.__patch__(vm._vnode, null)
|
||||
// fire destroyed hook
|
||||
callHook(vm, 'destroyed')
|
||||
// turn off all instance listeners.
|
||||
vm.$off()
|
||||
// remove __vue__ reference
|
||||
if (vm.$el) {
|
||||
vm.$el.__vue__ = null
|
||||
}
|
||||
// release circular reference (#6759)
|
||||
if (vm.$vnode) {
|
||||
vm.$vnode.parent = null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function mountComponent(
|
||||
vm: Component,
|
||||
el: Element | null | undefined,
|
||||
hydrating?: boolean
|
||||
): Component {
|
||||
vm.$el = el
|
||||
if (!vm.$options.render) {
|
||||
// @ts-expect-error invalid type
|
||||
vm.$options.render = createEmptyVNode
|
||||
if (__DEV__) {
|
||||
/* istanbul ignore if */
|
||||
if (
|
||||
(vm.$options.template && vm.$options.template.charAt(0) !== '#') ||
|
||||
vm.$options.el ||
|
||||
el
|
||||
) {
|
||||
warn(
|
||||
'You are using the runtime-only build of Vue where the template ' +
|
||||
'compiler is not available. Either pre-compile the templates into ' +
|
||||
'render functions, or use the compiler-included build.',
|
||||
vm
|
||||
)
|
||||
} else {
|
||||
warn(
|
||||
'Failed to mount component: template or render function not defined.',
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
callHook(vm, 'beforeMount')
|
||||
|
||||
let updateComponent
|
||||
/* istanbul ignore if */
|
||||
if (__DEV__ && config.performance && mark) {
|
||||
updateComponent = () => {
|
||||
const name = vm._name
|
||||
const id = vm._uid
|
||||
const startTag = `vue-perf-start:${id}`
|
||||
const endTag = `vue-perf-end:${id}`
|
||||
|
||||
mark(startTag)
|
||||
const vnode = vm._render()
|
||||
mark(endTag)
|
||||
measure(`vue ${name} render`, startTag, endTag)
|
||||
|
||||
mark(startTag)
|
||||
vm._update(vnode, hydrating)
|
||||
mark(endTag)
|
||||
measure(`vue ${name} patch`, startTag, endTag)
|
||||
}
|
||||
} else {
|
||||
updateComponent = () => {
|
||||
vm._update(vm._render(), hydrating)
|
||||
}
|
||||
}
|
||||
|
||||
const watcherOptions: WatcherOptions = {
|
||||
before() {
|
||||
if (vm._isMounted && !vm._isDestroyed) {
|
||||
callHook(vm, 'beforeUpdate')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (__DEV__) {
|
||||
watcherOptions.onTrack = e => callHook(vm, 'renderTracked', [e])
|
||||
watcherOptions.onTrigger = e => callHook(vm, 'renderTriggered', [e])
|
||||
}
|
||||
|
||||
// we set this to vm._watcher inside the watcher's constructor
|
||||
// since the watcher's initial patch may call $forceUpdate (e.g. inside child
|
||||
// component's mounted hook), which relies on vm._watcher being already defined
|
||||
new Watcher(
|
||||
vm,
|
||||
updateComponent,
|
||||
noop,
|
||||
watcherOptions,
|
||||
true /* isRenderWatcher */
|
||||
)
|
||||
hydrating = false
|
||||
|
||||
// flush buffer for flush: "pre" watchers queued in setup()
|
||||
const preWatchers = vm._preWatchers
|
||||
if (preWatchers) {
|
||||
for (let i = 0; i < preWatchers.length; i++) {
|
||||
preWatchers[i].run()
|
||||
}
|
||||
}
|
||||
|
||||
// manually mounted instance, call mounted on self
|
||||
// mounted is called for render-created child components in its inserted hook
|
||||
if (vm.$vnode == null) {
|
||||
vm._isMounted = true
|
||||
callHook(vm, 'mounted')
|
||||
}
|
||||
return vm
|
||||
}
|
||||
|
||||
export function updateChildComponent(
|
||||
vm: Component,
|
||||
propsData: Record<string, any> | null | undefined,
|
||||
listeners: Record<string, Function | Array<Function>> | undefined,
|
||||
parentVnode: MountedComponentVNode,
|
||||
renderChildren?: Array<VNode> | null
|
||||
) {
|
||||
if (__DEV__) {
|
||||
isUpdatingChildComponent = true
|
||||
}
|
||||
|
||||
// determine whether component has slot children
|
||||
// we need to do this before overwriting $options._renderChildren.
|
||||
|
||||
// check if there are dynamic scopedSlots (hand-written or compiled but with
|
||||
// dynamic slot names). Static scoped slots compiled from template has the
|
||||
// "$stable" marker.
|
||||
const newScopedSlots = parentVnode.data.scopedSlots
|
||||
const oldScopedSlots = vm.$scopedSlots
|
||||
const hasDynamicScopedSlot = !!(
|
||||
(newScopedSlots && !newScopedSlots.$stable) ||
|
||||
(oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||
|
||||
(newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key) ||
|
||||
(!newScopedSlots && vm.$scopedSlots.$key)
|
||||
)
|
||||
|
||||
// Any static slot children from the parent may have changed during parent's
|
||||
// update. Dynamic scoped slots may also have changed. In such cases, a forced
|
||||
// update is necessary to ensure correctness.
|
||||
let needsForceUpdate = !!(
|
||||
renderChildren || // has new static slots
|
||||
vm.$options._renderChildren || // has old static slots
|
||||
hasDynamicScopedSlot
|
||||
)
|
||||
|
||||
const prevVNode = vm.$vnode
|
||||
vm.$options._parentVnode = parentVnode
|
||||
vm.$vnode = parentVnode // update vm's placeholder node without re-render
|
||||
|
||||
if (vm._vnode) {
|
||||
// update child tree's parent
|
||||
vm._vnode.parent = parentVnode
|
||||
}
|
||||
vm.$options._renderChildren = renderChildren
|
||||
|
||||
// update $attrs and $listeners hash
|
||||
// these are also reactive so they may trigger child update if the child
|
||||
// used them during render
|
||||
const attrs = parentVnode.data.attrs || emptyObject
|
||||
if (vm._attrsProxy) {
|
||||
// force update if attrs are accessed and has changed since it may be
|
||||
// passed to a child component.
|
||||
if (
|
||||
syncSetupProxy(
|
||||
vm._attrsProxy,
|
||||
attrs,
|
||||
(prevVNode.data && prevVNode.data.attrs) || emptyObject,
|
||||
vm,
|
||||
'$attrs'
|
||||
)
|
||||
) {
|
||||
needsForceUpdate = true
|
||||
}
|
||||
}
|
||||
vm.$attrs = attrs
|
||||
|
||||
// update listeners
|
||||
listeners = listeners || emptyObject
|
||||
const prevListeners = vm.$options._parentListeners
|
||||
if (vm._listenersProxy) {
|
||||
syncSetupProxy(
|
||||
vm._listenersProxy,
|
||||
listeners,
|
||||
prevListeners || emptyObject,
|
||||
vm,
|
||||
'$listeners'
|
||||
)
|
||||
}
|
||||
vm.$listeners = vm.$options._parentListeners = listeners
|
||||
updateComponentListeners(vm, listeners, prevListeners)
|
||||
|
||||
// update props
|
||||
if (propsData && vm.$options.props) {
|
||||
toggleObserving(false)
|
||||
const props = vm._props
|
||||
const propKeys = vm.$options._propKeys || []
|
||||
for (let i = 0; i < propKeys.length; i++) {
|
||||
const key = propKeys[i]
|
||||
const propOptions: any = vm.$options.props // wtf flow?
|
||||
props[key] = validateProp(key, propOptions, propsData, vm)
|
||||
}
|
||||
toggleObserving(true)
|
||||
// keep a copy of raw propsData
|
||||
vm.$options.propsData = propsData
|
||||
}
|
||||
|
||||
// resolve slots + force update if has children
|
||||
if (needsForceUpdate) {
|
||||
vm.$slots = resolveSlots(renderChildren, parentVnode.context)
|
||||
vm.$forceUpdate()
|
||||
}
|
||||
|
||||
if (__DEV__) {
|
||||
isUpdatingChildComponent = false
|
||||
}
|
||||
}
|
||||
|
||||
function isInInactiveTree(vm) {
|
||||
while (vm && (vm = vm.$parent)) {
|
||||
if (vm._inactive) return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
export function activateChildComponent(vm: Component, direct?: boolean) {
|
||||
if (direct) {
|
||||
vm._directInactive = false
|
||||
if (isInInactiveTree(vm)) {
|
||||
return
|
||||
}
|
||||
} else if (vm._directInactive) {
|
||||
return
|
||||
}
|
||||
if (vm._inactive || vm._inactive === null) {
|
||||
vm._inactive = false
|
||||
for (let i = 0; i < vm.$children.length; i++) {
|
||||
activateChildComponent(vm.$children[i])
|
||||
}
|
||||
callHook(vm, 'activated')
|
||||
}
|
||||
}
|
||||
|
||||
export function deactivateChildComponent(vm: Component, direct?: boolean) {
|
||||
if (direct) {
|
||||
vm._directInactive = true
|
||||
if (isInInactiveTree(vm)) {
|
||||
return
|
||||
}
|
||||
}
|
||||
if (!vm._inactive) {
|
||||
vm._inactive = true
|
||||
for (let i = 0; i < vm.$children.length; i++) {
|
||||
deactivateChildComponent(vm.$children[i])
|
||||
}
|
||||
callHook(vm, 'deactivated')
|
||||
}
|
||||
}
|
||||
|
||||
export function callHook(
|
||||
vm: Component,
|
||||
hook: string,
|
||||
args?: any[],
|
||||
setContext = true
|
||||
) {
|
||||
// #7573 disable dep collection when invoking lifecycle hooks
|
||||
pushTarget()
|
||||
const prev = currentInstance
|
||||
setContext && setCurrentInstance(vm)
|
||||
const handlers = vm.$options[hook]
|
||||
const info = `${hook} hook`
|
||||
if (handlers) {
|
||||
for (let i = 0, j = handlers.length; i < j; i++) {
|
||||
invokeWithErrorHandling(handlers[i], vm, args || null, vm, info)
|
||||
}
|
||||
}
|
||||
if (vm._hasHookEvent) {
|
||||
vm.$emit('hook:' + hook)
|
||||
}
|
||||
setContext && setCurrentInstance(prev)
|
||||
popTarget()
|
||||
}
|
97
node_modules/vue/src/core/instance/proxy.ts
generated
vendored
Normal file
97
node_modules/vue/src/core/instance/proxy.ts
generated
vendored
Normal file
@ -0,0 +1,97 @@
|
||||
/* not type checking this file because flow doesn't play well with Proxy */
|
||||
|
||||
import config from 'core/config'
|
||||
import { warn, makeMap, isNative } from '../util/index'
|
||||
|
||||
let initProxy
|
||||
|
||||
if (__DEV__) {
|
||||
const allowedGlobals = makeMap(
|
||||
'Infinity,undefined,NaN,isFinite,isNaN,' +
|
||||
'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +
|
||||
'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,' +
|
||||
'require' // for Webpack/Browserify
|
||||
)
|
||||
|
||||
const warnNonPresent = (target, key) => {
|
||||
warn(
|
||||
`Property or method "${key}" is not defined on the instance but ` +
|
||||
'referenced during render. Make sure that this property is reactive, ' +
|
||||
'either in the data option, or for class-based components, by ' +
|
||||
'initializing the property. ' +
|
||||
'See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
|
||||
target
|
||||
)
|
||||
}
|
||||
|
||||
const warnReservedPrefix = (target, key) => {
|
||||
warn(
|
||||
`Property "${key}" must be accessed with "$data.${key}" because ` +
|
||||
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
|
||||
'prevent conflicts with Vue internals. ' +
|
||||
'See: https://v2.vuejs.org/v2/api/#data',
|
||||
target
|
||||
)
|
||||
}
|
||||
|
||||
const hasProxy = typeof Proxy !== 'undefined' && isNative(Proxy)
|
||||
|
||||
if (hasProxy) {
|
||||
const isBuiltInModifier = makeMap(
|
||||
'stop,prevent,self,ctrl,shift,alt,meta,exact'
|
||||
)
|
||||
config.keyCodes = new Proxy(config.keyCodes, {
|
||||
set(target, key: string, value) {
|
||||
if (isBuiltInModifier(key)) {
|
||||
warn(
|
||||
`Avoid overwriting built-in modifier in config.keyCodes: .${key}`
|
||||
)
|
||||
return false
|
||||
} else {
|
||||
target[key] = value
|
||||
return true
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const hasHandler = {
|
||||
has(target, key) {
|
||||
const has = key in target
|
||||
const isAllowed =
|
||||
allowedGlobals(key) ||
|
||||
(typeof key === 'string' &&
|
||||
key.charAt(0) === '_' &&
|
||||
!(key in target.$data))
|
||||
if (!has && !isAllowed) {
|
||||
if (key in target.$data) warnReservedPrefix(target, key)
|
||||
else warnNonPresent(target, key)
|
||||
}
|
||||
return has || !isAllowed
|
||||
}
|
||||
}
|
||||
|
||||
const getHandler = {
|
||||
get(target, key) {
|
||||
if (typeof key === 'string' && !(key in target)) {
|
||||
if (key in target.$data) warnReservedPrefix(target, key)
|
||||
else warnNonPresent(target, key)
|
||||
}
|
||||
return target[key]
|
||||
}
|
||||
}
|
||||
|
||||
initProxy = function initProxy(vm) {
|
||||
if (hasProxy) {
|
||||
// determine which proxy handler to use
|
||||
const options = vm.$options
|
||||
const handlers =
|
||||
options.render && options.render._withStripped ? getHandler : hasHandler
|
||||
vm._renderProxy = new Proxy(vm, handlers)
|
||||
} else {
|
||||
vm._renderProxy = vm
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export { initProxy }
|
36
node_modules/vue/src/core/instance/render-helpers/bind-dynamic-keys.ts
generated
vendored
Normal file
36
node_modules/vue/src/core/instance/render-helpers/bind-dynamic-keys.ts
generated
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
// helper to process dynamic keys for dynamic arguments in v-bind and v-on.
|
||||
// For example, the following template:
|
||||
//
|
||||
// <div id="app" :[key]="value">
|
||||
//
|
||||
// compiles to the following:
|
||||
//
|
||||
// _c('div', { attrs: bindDynamicKeys({ "id": "app" }, [key, value]) })
|
||||
|
||||
import { warn } from 'core/util/debug'
|
||||
|
||||
export function bindDynamicKeys(
|
||||
baseObj: Record<string, any>,
|
||||
values: Array<any>
|
||||
): Object {
|
||||
for (let i = 0; i < values.length; i += 2) {
|
||||
const key = values[i]
|
||||
if (typeof key === 'string' && key) {
|
||||
baseObj[values[i]] = values[i + 1]
|
||||
} else if (__DEV__ && key !== '' && key !== null) {
|
||||
// null is a special value for explicitly removing a binding
|
||||
warn(
|
||||
`Invalid value for dynamic directive argument (expected string or null): ${key}`,
|
||||
this
|
||||
)
|
||||
}
|
||||
}
|
||||
return baseObj
|
||||
}
|
||||
|
||||
// helper to dynamically append modifier runtime markers to event names.
|
||||
// ensure only append when value is already string, otherwise it will be cast
|
||||
// to string and cause the type check to miss.
|
||||
export function prependModifier(value: any, symbol: string): any {
|
||||
return typeof value === 'string' ? symbol + value : value
|
||||
}
|
18
node_modules/vue/src/core/instance/render-helpers/bind-object-listeners.ts
generated
vendored
Normal file
18
node_modules/vue/src/core/instance/render-helpers/bind-object-listeners.ts
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
import { warn, extend, isPlainObject } from 'core/util/index'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
|
||||
export function bindObjectListeners(data: any, value: any): VNodeData {
|
||||
if (value) {
|
||||
if (!isPlainObject(value)) {
|
||||
__DEV__ && warn('v-on without argument expects an Object value', this)
|
||||
} else {
|
||||
const on = (data.on = data.on ? extend({}, data.on) : {})
|
||||
for (const key in value) {
|
||||
const existing = on[key]
|
||||
const ours = value[key]
|
||||
on[key] = existing ? [].concat(existing, ours) : ours
|
||||
}
|
||||
}
|
||||
}
|
||||
return data
|
||||
}
|
59
node_modules/vue/src/core/instance/render-helpers/bind-object-props.ts
generated
vendored
Normal file
59
node_modules/vue/src/core/instance/render-helpers/bind-object-props.ts
generated
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
import config from 'core/config'
|
||||
|
||||
import {
|
||||
warn,
|
||||
isObject,
|
||||
toObject,
|
||||
isReservedAttribute,
|
||||
camelize,
|
||||
hyphenate,
|
||||
isArray
|
||||
} from 'core/util/index'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
|
||||
/**
|
||||
* Runtime helper for merging v-bind="object" into a VNode's data.
|
||||
*/
|
||||
export function bindObjectProps(
|
||||
data: any,
|
||||
tag: string,
|
||||
value: any,
|
||||
asProp: boolean,
|
||||
isSync?: boolean
|
||||
): VNodeData {
|
||||
if (value) {
|
||||
if (!isObject(value)) {
|
||||
__DEV__ &&
|
||||
warn('v-bind without argument expects an Object or Array value', this)
|
||||
} else {
|
||||
if (isArray(value)) {
|
||||
value = toObject(value)
|
||||
}
|
||||
let hash
|
||||
for (const key in value) {
|
||||
if (key === 'class' || key === 'style' || isReservedAttribute(key)) {
|
||||
hash = data
|
||||
} else {
|
||||
const type = data.attrs && data.attrs.type
|
||||
hash =
|
||||
asProp || config.mustUseProp(tag, type, key)
|
||||
? data.domProps || (data.domProps = {})
|
||||
: data.attrs || (data.attrs = {})
|
||||
}
|
||||
const camelizedKey = camelize(key)
|
||||
const hyphenatedKey = hyphenate(key)
|
||||
if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {
|
||||
hash[key] = value[key]
|
||||
|
||||
if (isSync) {
|
||||
const on = data.on || (data.on = {})
|
||||
on[`update:${key}`] = function ($event) {
|
||||
value[key] = $event
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return data
|
||||
}
|
33
node_modules/vue/src/core/instance/render-helpers/check-keycodes.ts
generated
vendored
Normal file
33
node_modules/vue/src/core/instance/render-helpers/check-keycodes.ts
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
import config from 'core/config'
|
||||
import { hyphenate, isArray } from 'shared/util'
|
||||
|
||||
function isKeyNotMatch<T>(expect: T | Array<T>, actual: T): boolean {
|
||||
if (isArray(expect)) {
|
||||
return expect.indexOf(actual) === -1
|
||||
} else {
|
||||
return expect !== actual
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Runtime helper for checking keyCodes from config.
|
||||
* exposed as Vue.prototype._k
|
||||
* passing in eventKeyName as last argument separately for backwards compat
|
||||
*/
|
||||
export function checkKeyCodes(
|
||||
eventKeyCode: number,
|
||||
key: string,
|
||||
builtInKeyCode?: number | Array<number>,
|
||||
eventKeyName?: string,
|
||||
builtInKeyName?: string | Array<string>
|
||||
): boolean | null | undefined {
|
||||
const mappedKeyCode = config.keyCodes[key] || builtInKeyCode
|
||||
if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {
|
||||
return isKeyNotMatch(builtInKeyName, eventKeyName)
|
||||
} else if (mappedKeyCode) {
|
||||
return isKeyNotMatch(mappedKeyCode, eventKeyCode)
|
||||
} else if (eventKeyName) {
|
||||
return hyphenate(eventKeyName) !== key
|
||||
}
|
||||
return eventKeyCode === undefined
|
||||
}
|
31
node_modules/vue/src/core/instance/render-helpers/index.ts
generated
vendored
Normal file
31
node_modules/vue/src/core/instance/render-helpers/index.ts
generated
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
import { toNumber, toString, looseEqual, looseIndexOf } from 'shared/util'
|
||||
import { createTextVNode, createEmptyVNode } from 'core/vdom/vnode'
|
||||
import { renderList } from './render-list'
|
||||
import { renderSlot } from './render-slot'
|
||||
import { resolveFilter } from './resolve-filter'
|
||||
import { checkKeyCodes } from './check-keycodes'
|
||||
import { bindObjectProps } from './bind-object-props'
|
||||
import { renderStatic, markOnce } from './render-static'
|
||||
import { bindObjectListeners } from './bind-object-listeners'
|
||||
import { resolveScopedSlots } from './resolve-scoped-slots'
|
||||
import { bindDynamicKeys, prependModifier } from './bind-dynamic-keys'
|
||||
|
||||
export function installRenderHelpers(target: any) {
|
||||
target._o = markOnce
|
||||
target._n = toNumber
|
||||
target._s = toString
|
||||
target._l = renderList
|
||||
target._t = renderSlot
|
||||
target._q = looseEqual
|
||||
target._i = looseIndexOf
|
||||
target._m = renderStatic
|
||||
target._f = resolveFilter
|
||||
target._k = checkKeyCodes
|
||||
target._b = bindObjectProps
|
||||
target._v = createTextVNode
|
||||
target._e = createEmptyVNode
|
||||
target._u = resolveScopedSlots
|
||||
target._g = bindObjectListeners
|
||||
target._d = bindDynamicKeys
|
||||
target._p = prependModifier
|
||||
}
|
49
node_modules/vue/src/core/instance/render-helpers/render-list.ts
generated
vendored
Normal file
49
node_modules/vue/src/core/instance/render-helpers/render-list.ts
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
import { isObject, isDef, hasSymbol, isArray } from 'core/util/index'
|
||||
import VNode from 'core/vdom/vnode'
|
||||
|
||||
/**
|
||||
* Runtime helper for rendering v-for lists.
|
||||
*/
|
||||
export function renderList(
|
||||
val: any,
|
||||
render: (val: any, keyOrIndex: string | number, index?: number) => VNode
|
||||
): Array<VNode> | null {
|
||||
let ret: Array<VNode> | null = null,
|
||||
i,
|
||||
l,
|
||||
keys,
|
||||
key
|
||||
if (isArray(val) || typeof val === 'string') {
|
||||
ret = new Array(val.length)
|
||||
for (i = 0, l = val.length; i < l; i++) {
|
||||
ret[i] = render(val[i], i)
|
||||
}
|
||||
} else if (typeof val === 'number') {
|
||||
ret = new Array(val)
|
||||
for (i = 0; i < val; i++) {
|
||||
ret[i] = render(i + 1, i)
|
||||
}
|
||||
} else if (isObject(val)) {
|
||||
if (hasSymbol && val[Symbol.iterator]) {
|
||||
ret = []
|
||||
const iterator: Iterator<any> = val[Symbol.iterator]()
|
||||
let result = iterator.next()
|
||||
while (!result.done) {
|
||||
ret.push(render(result.value, ret.length))
|
||||
result = iterator.next()
|
||||
}
|
||||
} else {
|
||||
keys = Object.keys(val)
|
||||
ret = new Array(keys.length)
|
||||
for (i = 0, l = keys.length; i < l; i++) {
|
||||
key = keys[i]
|
||||
ret[i] = render(val[key], key, i)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!isDef(ret)) {
|
||||
ret = []
|
||||
}
|
||||
;(ret as any)._isVList = true
|
||||
return ret
|
||||
}
|
39
node_modules/vue/src/core/instance/render-helpers/render-slot.ts
generated
vendored
Normal file
39
node_modules/vue/src/core/instance/render-helpers/render-slot.ts
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
import { extend, warn, isObject, isFunction } from 'core/util/index'
|
||||
import VNode from 'core/vdom/vnode'
|
||||
|
||||
/**
|
||||
* Runtime helper for rendering <slot>
|
||||
*/
|
||||
export function renderSlot(
|
||||
name: string,
|
||||
fallbackRender: ((() => Array<VNode>) | Array<VNode>) | null,
|
||||
props: Record<string, any> | null,
|
||||
bindObject: object | null
|
||||
): Array<VNode> | null {
|
||||
const scopedSlotFn = this.$scopedSlots[name]
|
||||
let nodes
|
||||
if (scopedSlotFn) {
|
||||
// scoped slot
|
||||
props = props || {}
|
||||
if (bindObject) {
|
||||
if (__DEV__ && !isObject(bindObject)) {
|
||||
warn('slot v-bind without argument expects an Object', this)
|
||||
}
|
||||
props = extend(extend({}, bindObject), props)
|
||||
}
|
||||
nodes =
|
||||
scopedSlotFn(props) ||
|
||||
(isFunction(fallbackRender) ? fallbackRender() : fallbackRender)
|
||||
} else {
|
||||
nodes =
|
||||
this.$slots[name] ||
|
||||
(isFunction(fallbackRender) ? fallbackRender() : fallbackRender)
|
||||
}
|
||||
|
||||
const target = props && props.slot
|
||||
if (target) {
|
||||
return this.$createElement('template', { slot: target }, nodes)
|
||||
} else {
|
||||
return nodes
|
||||
}
|
||||
}
|
57
node_modules/vue/src/core/instance/render-helpers/render-static.ts
generated
vendored
Normal file
57
node_modules/vue/src/core/instance/render-helpers/render-static.ts
generated
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
import VNode from 'core/vdom/vnode'
|
||||
import { isArray } from 'core/util'
|
||||
|
||||
/**
|
||||
* Runtime helper for rendering static trees.
|
||||
*/
|
||||
export function renderStatic(
|
||||
index: number,
|
||||
isInFor: boolean
|
||||
): VNode | Array<VNode> {
|
||||
const cached = this._staticTrees || (this._staticTrees = [])
|
||||
let tree = cached[index]
|
||||
// if has already-rendered static tree and not inside v-for,
|
||||
// we can reuse the same tree.
|
||||
if (tree && !isInFor) {
|
||||
return tree
|
||||
}
|
||||
// otherwise, render a fresh tree.
|
||||
tree = cached[index] = this.$options.staticRenderFns[index].call(
|
||||
this._renderProxy,
|
||||
this._c,
|
||||
this // for render fns generated for functional component templates
|
||||
)
|
||||
markStatic(tree, `__static__${index}`, false)
|
||||
return tree
|
||||
}
|
||||
|
||||
/**
|
||||
* Runtime helper for v-once.
|
||||
* Effectively it means marking the node as static with a unique key.
|
||||
*/
|
||||
export function markOnce(
|
||||
tree: VNode | Array<VNode>,
|
||||
index: number,
|
||||
key: string
|
||||
) {
|
||||
markStatic(tree, `__once__${index}${key ? `_${key}` : ``}`, true)
|
||||
return tree
|
||||
}
|
||||
|
||||
function markStatic(tree: VNode | Array<VNode>, key: string, isOnce: boolean) {
|
||||
if (isArray(tree)) {
|
||||
for (let i = 0; i < tree.length; i++) {
|
||||
if (tree[i] && typeof tree[i] !== 'string') {
|
||||
markStaticNode(tree[i], `${key}_${i}`, isOnce)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
markStaticNode(tree, key, isOnce)
|
||||
}
|
||||
}
|
||||
|
||||
function markStaticNode(node, key, isOnce) {
|
||||
node.isStatic = true
|
||||
node.key = key
|
||||
node.isOnce = isOnce
|
||||
}
|
8
node_modules/vue/src/core/instance/render-helpers/resolve-filter.ts
generated
vendored
Normal file
8
node_modules/vue/src/core/instance/render-helpers/resolve-filter.ts
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { identity, resolveAsset } from 'core/util/index'
|
||||
|
||||
/**
|
||||
* Runtime helper for resolving filters
|
||||
*/
|
||||
export function resolveFilter(id: string): Function {
|
||||
return resolveAsset(this.$options, 'filters', id, true) || identity
|
||||
}
|
30
node_modules/vue/src/core/instance/render-helpers/resolve-scoped-slots.ts
generated
vendored
Normal file
30
node_modules/vue/src/core/instance/render-helpers/resolve-scoped-slots.ts
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
import type { ScopedSlotsData } from 'types/vnode'
|
||||
import { isArray } from 'core/util'
|
||||
|
||||
export function resolveScopedSlots(
|
||||
fns: ScopedSlotsData,
|
||||
res?: Record<string, any>,
|
||||
// the following are added in 2.6
|
||||
hasDynamicKeys?: boolean,
|
||||
contentHashKey?: number
|
||||
): { $stable: boolean } & { [key: string]: Function } {
|
||||
res = res || { $stable: !hasDynamicKeys }
|
||||
for (let i = 0; i < fns.length; i++) {
|
||||
const slot = fns[i]
|
||||
if (isArray(slot)) {
|
||||
resolveScopedSlots(slot, res, hasDynamicKeys)
|
||||
} else if (slot) {
|
||||
// marker for reverse proxying v-slot without scope on this.$slots
|
||||
// @ts-expect-error
|
||||
if (slot.proxy) {
|
||||
// @ts-expect-error
|
||||
slot.fn.proxy = true
|
||||
}
|
||||
res[slot.key] = slot.fn
|
||||
}
|
||||
}
|
||||
if (contentHashKey) {
|
||||
;(res as any).$key = contentHashKey
|
||||
}
|
||||
return res as any
|
||||
}
|
51
node_modules/vue/src/core/instance/render-helpers/resolve-slots.ts
generated
vendored
Normal file
51
node_modules/vue/src/core/instance/render-helpers/resolve-slots.ts
generated
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
import type VNode from 'core/vdom/vnode'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
/**
|
||||
* Runtime helper for resolving raw children VNodes into a slot object.
|
||||
*/
|
||||
export function resolveSlots(
|
||||
children: Array<VNode> | null | undefined,
|
||||
context: Component | null
|
||||
): { [key: string]: Array<VNode> } {
|
||||
if (!children || !children.length) {
|
||||
return {}
|
||||
}
|
||||
const slots: Record<string, any> = {}
|
||||
for (let i = 0, l = children.length; i < l; i++) {
|
||||
const child = children[i]
|
||||
const data = child.data
|
||||
// remove slot attribute if the node is resolved as a Vue slot node
|
||||
if (data && data.attrs && data.attrs.slot) {
|
||||
delete data.attrs.slot
|
||||
}
|
||||
// named slots should only be respected if the vnode was rendered in the
|
||||
// same context.
|
||||
if (
|
||||
(child.context === context || child.fnContext === context) &&
|
||||
data &&
|
||||
data.slot != null
|
||||
) {
|
||||
const name = data.slot
|
||||
const slot = slots[name] || (slots[name] = [])
|
||||
if (child.tag === 'template') {
|
||||
slot.push.apply(slot, child.children || [])
|
||||
} else {
|
||||
slot.push(child)
|
||||
}
|
||||
} else {
|
||||
;(slots.default || (slots.default = [])).push(child)
|
||||
}
|
||||
}
|
||||
// ignore slots that contains only whitespace
|
||||
for (const name in slots) {
|
||||
if (slots[name].every(isWhitespace)) {
|
||||
delete slots[name]
|
||||
}
|
||||
}
|
||||
return slots
|
||||
}
|
||||
|
||||
function isWhitespace(node: VNode): boolean {
|
||||
return (node.isComment && !node.asyncFactory) || node.text === ' '
|
||||
}
|
173
node_modules/vue/src/core/instance/render.ts
generated
vendored
Normal file
173
node_modules/vue/src/core/instance/render.ts
generated
vendored
Normal file
@ -0,0 +1,173 @@
|
||||
import {
|
||||
warn,
|
||||
nextTick,
|
||||
emptyObject,
|
||||
handleError,
|
||||
defineReactive,
|
||||
isArray
|
||||
} from '../util/index'
|
||||
|
||||
import { createElement } from '../vdom/create-element'
|
||||
import { installRenderHelpers } from './render-helpers/index'
|
||||
import { resolveSlots } from './render-helpers/resolve-slots'
|
||||
import { normalizeScopedSlots } from '../vdom/helpers/normalize-scoped-slots'
|
||||
import VNode, { createEmptyVNode } from '../vdom/vnode'
|
||||
|
||||
import { isUpdatingChildComponent } from './lifecycle'
|
||||
import type { Component } from 'types/component'
|
||||
import { setCurrentInstance } from 'v3/currentInstance'
|
||||
import { syncSetupSlots } from 'v3/apiSetup'
|
||||
|
||||
export function initRender(vm: Component) {
|
||||
vm._vnode = null // the root of the child tree
|
||||
vm._staticTrees = null // v-once cached trees
|
||||
const options = vm.$options
|
||||
const parentVnode = (vm.$vnode = options._parentVnode!) // the placeholder node in parent tree
|
||||
const renderContext = parentVnode && (parentVnode.context as Component)
|
||||
vm.$slots = resolveSlots(options._renderChildren, renderContext)
|
||||
vm.$scopedSlots = parentVnode
|
||||
? normalizeScopedSlots(
|
||||
vm.$parent!,
|
||||
parentVnode.data!.scopedSlots,
|
||||
vm.$slots
|
||||
)
|
||||
: emptyObject
|
||||
// bind the createElement fn to this instance
|
||||
// so that we get proper render context inside it.
|
||||
// args order: tag, data, children, normalizationType, alwaysNormalize
|
||||
// internal version is used by render functions compiled from templates
|
||||
// @ts-expect-error
|
||||
vm._c = (a, b, c, d) => createElement(vm, a, b, c, d, false)
|
||||
// normalization is always applied for the public version, used in
|
||||
// user-written render functions.
|
||||
// @ts-expect-error
|
||||
vm.$createElement = (a, b, c, d) => createElement(vm, a, b, c, d, true)
|
||||
|
||||
// $attrs & $listeners are exposed for easier HOC creation.
|
||||
// they need to be reactive so that HOCs using them are always updated
|
||||
const parentData = parentVnode && parentVnode.data
|
||||
|
||||
/* istanbul ignore else */
|
||||
if (__DEV__) {
|
||||
defineReactive(
|
||||
vm,
|
||||
'$attrs',
|
||||
(parentData && parentData.attrs) || emptyObject,
|
||||
() => {
|
||||
!isUpdatingChildComponent && warn(`$attrs is readonly.`, vm)
|
||||
},
|
||||
true
|
||||
)
|
||||
defineReactive(
|
||||
vm,
|
||||
'$listeners',
|
||||
options._parentListeners || emptyObject,
|
||||
() => {
|
||||
!isUpdatingChildComponent && warn(`$listeners is readonly.`, vm)
|
||||
},
|
||||
true
|
||||
)
|
||||
} else {
|
||||
defineReactive(
|
||||
vm,
|
||||
'$attrs',
|
||||
(parentData && parentData.attrs) || emptyObject,
|
||||
null,
|
||||
true
|
||||
)
|
||||
defineReactive(
|
||||
vm,
|
||||
'$listeners',
|
||||
options._parentListeners || emptyObject,
|
||||
null,
|
||||
true
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export let currentRenderingInstance: Component | null = null
|
||||
|
||||
// for testing only
|
||||
export function setCurrentRenderingInstance(vm: Component) {
|
||||
currentRenderingInstance = vm
|
||||
}
|
||||
|
||||
export function renderMixin(Vue: typeof Component) {
|
||||
// install runtime convenience helpers
|
||||
installRenderHelpers(Vue.prototype)
|
||||
|
||||
Vue.prototype.$nextTick = function (fn: (...args: any[]) => any) {
|
||||
return nextTick(fn, this)
|
||||
}
|
||||
|
||||
Vue.prototype._render = function (): VNode {
|
||||
const vm: Component = this
|
||||
const { render, _parentVnode } = vm.$options
|
||||
|
||||
if (_parentVnode && vm._isMounted) {
|
||||
vm.$scopedSlots = normalizeScopedSlots(
|
||||
vm.$parent!,
|
||||
_parentVnode.data!.scopedSlots,
|
||||
vm.$slots,
|
||||
vm.$scopedSlots
|
||||
)
|
||||
if (vm._slotsProxy) {
|
||||
syncSetupSlots(vm._slotsProxy, vm.$scopedSlots)
|
||||
}
|
||||
}
|
||||
|
||||
// set parent vnode. this allows render functions to have access
|
||||
// to the data on the placeholder node.
|
||||
vm.$vnode = _parentVnode!
|
||||
// render self
|
||||
let vnode
|
||||
try {
|
||||
// There's no need to maintain a stack because all render fns are called
|
||||
// separately from one another. Nested component's render fns are called
|
||||
// when parent component is patched.
|
||||
setCurrentInstance(vm)
|
||||
currentRenderingInstance = vm
|
||||
vnode = render.call(vm._renderProxy, vm.$createElement)
|
||||
} catch (e: any) {
|
||||
handleError(e, vm, `render`)
|
||||
// return error render result,
|
||||
// or previous vnode to prevent render error causing blank component
|
||||
/* istanbul ignore else */
|
||||
if (__DEV__ && vm.$options.renderError) {
|
||||
try {
|
||||
vnode = vm.$options.renderError.call(
|
||||
vm._renderProxy,
|
||||
vm.$createElement,
|
||||
e
|
||||
)
|
||||
} catch (e: any) {
|
||||
handleError(e, vm, `renderError`)
|
||||
vnode = vm._vnode
|
||||
}
|
||||
} else {
|
||||
vnode = vm._vnode
|
||||
}
|
||||
} finally {
|
||||
currentRenderingInstance = null
|
||||
setCurrentInstance()
|
||||
}
|
||||
// if the returned array contains only a single node, allow it
|
||||
if (isArray(vnode) && vnode.length === 1) {
|
||||
vnode = vnode[0]
|
||||
}
|
||||
// return empty vnode in case the render function errored out
|
||||
if (!(vnode instanceof VNode)) {
|
||||
if (__DEV__ && isArray(vnode)) {
|
||||
warn(
|
||||
'Multiple root nodes returned from render function. Render function ' +
|
||||
'should return a single root node.',
|
||||
vm
|
||||
)
|
||||
}
|
||||
vnode = createEmptyVNode()
|
||||
}
|
||||
// set parent
|
||||
vnode.parent = _parentVnode
|
||||
return vnode
|
||||
}
|
||||
}
|
387
node_modules/vue/src/core/instance/state.ts
generated
vendored
Normal file
387
node_modules/vue/src/core/instance/state.ts
generated
vendored
Normal file
@ -0,0 +1,387 @@
|
||||
import config from '../config'
|
||||
import Watcher from '../observer/watcher'
|
||||
import Dep, { pushTarget, popTarget } from '../observer/dep'
|
||||
import { isUpdatingChildComponent } from './lifecycle'
|
||||
import { initSetup } from 'v3/apiSetup'
|
||||
|
||||
import {
|
||||
set,
|
||||
del,
|
||||
observe,
|
||||
defineReactive,
|
||||
toggleObserving
|
||||
} from '../observer/index'
|
||||
|
||||
import {
|
||||
warn,
|
||||
bind,
|
||||
noop,
|
||||
hasOwn,
|
||||
isArray,
|
||||
hyphenate,
|
||||
isReserved,
|
||||
handleError,
|
||||
nativeWatch,
|
||||
validateProp,
|
||||
isPlainObject,
|
||||
isServerRendering,
|
||||
isReservedAttribute,
|
||||
invokeWithErrorHandling,
|
||||
isFunction
|
||||
} from '../util/index'
|
||||
import type { Component } from 'types/component'
|
||||
import { shallowReactive, TrackOpTypes } from 'v3'
|
||||
|
||||
const sharedPropertyDefinition = {
|
||||
enumerable: true,
|
||||
configurable: true,
|
||||
get: noop,
|
||||
set: noop
|
||||
}
|
||||
|
||||
export function proxy(target: Object, sourceKey: string, key: string) {
|
||||
sharedPropertyDefinition.get = function proxyGetter() {
|
||||
return this[sourceKey][key]
|
||||
}
|
||||
sharedPropertyDefinition.set = function proxySetter(val) {
|
||||
this[sourceKey][key] = val
|
||||
}
|
||||
Object.defineProperty(target, key, sharedPropertyDefinition)
|
||||
}
|
||||
|
||||
export function initState(vm: Component) {
|
||||
const opts = vm.$options
|
||||
if (opts.props) initProps(vm, opts.props)
|
||||
|
||||
// Composition API
|
||||
initSetup(vm)
|
||||
|
||||
if (opts.methods) initMethods(vm, opts.methods)
|
||||
if (opts.data) {
|
||||
initData(vm)
|
||||
} else {
|
||||
const ob = observe((vm._data = {}))
|
||||
ob && ob.vmCount++
|
||||
}
|
||||
if (opts.computed) initComputed(vm, opts.computed)
|
||||
if (opts.watch && opts.watch !== nativeWatch) {
|
||||
initWatch(vm, opts.watch)
|
||||
}
|
||||
}
|
||||
|
||||
function initProps(vm: Component, propsOptions: Object) {
|
||||
const propsData = vm.$options.propsData || {}
|
||||
const props = (vm._props = shallowReactive({}))
|
||||
// cache prop keys so that future props updates can iterate using Array
|
||||
// instead of dynamic object key enumeration.
|
||||
const keys: string[] = (vm.$options._propKeys = [])
|
||||
const isRoot = !vm.$parent
|
||||
// root instance props should be converted
|
||||
if (!isRoot) {
|
||||
toggleObserving(false)
|
||||
}
|
||||
for (const key in propsOptions) {
|
||||
keys.push(key)
|
||||
const value = validateProp(key, propsOptions, propsData, vm)
|
||||
/* istanbul ignore else */
|
||||
if (__DEV__) {
|
||||
const hyphenatedKey = hyphenate(key)
|
||||
if (
|
||||
isReservedAttribute(hyphenatedKey) ||
|
||||
config.isReservedAttr(hyphenatedKey)
|
||||
) {
|
||||
warn(
|
||||
`"${hyphenatedKey}" is a reserved attribute and cannot be used as component prop.`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
defineReactive(props, key, value, () => {
|
||||
if (!isRoot && !isUpdatingChildComponent) {
|
||||
warn(
|
||||
`Avoid mutating a prop directly since the value will be ` +
|
||||
`overwritten whenever the parent component re-renders. ` +
|
||||
`Instead, use a data or computed property based on the prop's ` +
|
||||
`value. Prop being mutated: "${key}"`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
})
|
||||
} else {
|
||||
defineReactive(props, key, value)
|
||||
}
|
||||
// static props are already proxied on the component's prototype
|
||||
// during Vue.extend(). We only need to proxy props defined at
|
||||
// instantiation here.
|
||||
if (!(key in vm)) {
|
||||
proxy(vm, `_props`, key)
|
||||
}
|
||||
}
|
||||
toggleObserving(true)
|
||||
}
|
||||
|
||||
function initData(vm: Component) {
|
||||
let data: any = vm.$options.data
|
||||
data = vm._data = isFunction(data) ? getData(data, vm) : data || {}
|
||||
if (!isPlainObject(data)) {
|
||||
data = {}
|
||||
__DEV__ &&
|
||||
warn(
|
||||
'data functions should return an object:\n' +
|
||||
'https://v2.vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
|
||||
vm
|
||||
)
|
||||
}
|
||||
// proxy data on instance
|
||||
const keys = Object.keys(data)
|
||||
const props = vm.$options.props
|
||||
const methods = vm.$options.methods
|
||||
let i = keys.length
|
||||
while (i--) {
|
||||
const key = keys[i]
|
||||
if (__DEV__) {
|
||||
if (methods && hasOwn(methods, key)) {
|
||||
warn(`Method "${key}" has already been defined as a data property.`, vm)
|
||||
}
|
||||
}
|
||||
if (props && hasOwn(props, key)) {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
`The data property "${key}" is already declared as a prop. ` +
|
||||
`Use prop default value instead.`,
|
||||
vm
|
||||
)
|
||||
} else if (!isReserved(key)) {
|
||||
proxy(vm, `_data`, key)
|
||||
}
|
||||
}
|
||||
// observe data
|
||||
const ob = observe(data)
|
||||
ob && ob.vmCount++
|
||||
}
|
||||
|
||||
export function getData(data: Function, vm: Component): any {
|
||||
// #7573 disable dep collection when invoking data getters
|
||||
pushTarget()
|
||||
try {
|
||||
return data.call(vm, vm)
|
||||
} catch (e: any) {
|
||||
handleError(e, vm, `data()`)
|
||||
return {}
|
||||
} finally {
|
||||
popTarget()
|
||||
}
|
||||
}
|
||||
|
||||
const computedWatcherOptions = { lazy: true }
|
||||
|
||||
function initComputed(vm: Component, computed: Object) {
|
||||
// $flow-disable-line
|
||||
const watchers = (vm._computedWatchers = Object.create(null))
|
||||
// computed properties are just getters during SSR
|
||||
const isSSR = isServerRendering()
|
||||
|
||||
for (const key in computed) {
|
||||
const userDef = computed[key]
|
||||
const getter = isFunction(userDef) ? userDef : userDef.get
|
||||
if (__DEV__ && getter == null) {
|
||||
warn(`Getter is missing for computed property "${key}".`, vm)
|
||||
}
|
||||
|
||||
if (!isSSR) {
|
||||
// create internal watcher for the computed property.
|
||||
watchers[key] = new Watcher(
|
||||
vm,
|
||||
getter || noop,
|
||||
noop,
|
||||
computedWatcherOptions
|
||||
)
|
||||
}
|
||||
|
||||
// component-defined computed properties are already defined on the
|
||||
// component prototype. We only need to define computed properties defined
|
||||
// at instantiation here.
|
||||
if (!(key in vm)) {
|
||||
defineComputed(vm, key, userDef)
|
||||
} else if (__DEV__) {
|
||||
if (key in vm.$data) {
|
||||
warn(`The computed property "${key}" is already defined in data.`, vm)
|
||||
} else if (vm.$options.props && key in vm.$options.props) {
|
||||
warn(`The computed property "${key}" is already defined as a prop.`, vm)
|
||||
} else if (vm.$options.methods && key in vm.$options.methods) {
|
||||
warn(
|
||||
`The computed property "${key}" is already defined as a method.`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function defineComputed(
|
||||
target: any,
|
||||
key: string,
|
||||
userDef: Record<string, any> | (() => any)
|
||||
) {
|
||||
const shouldCache = !isServerRendering()
|
||||
if (isFunction(userDef)) {
|
||||
sharedPropertyDefinition.get = shouldCache
|
||||
? createComputedGetter(key)
|
||||
: createGetterInvoker(userDef)
|
||||
sharedPropertyDefinition.set = noop
|
||||
} else {
|
||||
sharedPropertyDefinition.get = userDef.get
|
||||
? shouldCache && userDef.cache !== false
|
||||
? createComputedGetter(key)
|
||||
: createGetterInvoker(userDef.get)
|
||||
: noop
|
||||
sharedPropertyDefinition.set = userDef.set || noop
|
||||
}
|
||||
if (__DEV__ && sharedPropertyDefinition.set === noop) {
|
||||
sharedPropertyDefinition.set = function () {
|
||||
warn(
|
||||
`Computed property "${key}" was assigned to but it has no setter.`,
|
||||
this
|
||||
)
|
||||
}
|
||||
}
|
||||
Object.defineProperty(target, key, sharedPropertyDefinition)
|
||||
}
|
||||
|
||||
function createComputedGetter(key) {
|
||||
return function computedGetter() {
|
||||
const watcher = this._computedWatchers && this._computedWatchers[key]
|
||||
if (watcher) {
|
||||
if (watcher.dirty) {
|
||||
watcher.evaluate()
|
||||
}
|
||||
if (Dep.target) {
|
||||
if (__DEV__ && Dep.target.onTrack) {
|
||||
Dep.target.onTrack({
|
||||
effect: Dep.target,
|
||||
target: this,
|
||||
type: TrackOpTypes.GET,
|
||||
key
|
||||
})
|
||||
}
|
||||
watcher.depend()
|
||||
}
|
||||
return watcher.value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createGetterInvoker(fn) {
|
||||
return function computedGetter() {
|
||||
return fn.call(this, this)
|
||||
}
|
||||
}
|
||||
|
||||
function initMethods(vm: Component, methods: Object) {
|
||||
const props = vm.$options.props
|
||||
for (const key in methods) {
|
||||
if (__DEV__) {
|
||||
if (typeof methods[key] !== 'function') {
|
||||
warn(
|
||||
`Method "${key}" has type "${typeof methods[
|
||||
key
|
||||
]}" in the component definition. ` +
|
||||
`Did you reference the function correctly?`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
if (props && hasOwn(props, key)) {
|
||||
warn(`Method "${key}" has already been defined as a prop.`, vm)
|
||||
}
|
||||
if (key in vm && isReserved(key)) {
|
||||
warn(
|
||||
`Method "${key}" conflicts with an existing Vue instance method. ` +
|
||||
`Avoid defining component methods that start with _ or $.`
|
||||
)
|
||||
}
|
||||
}
|
||||
vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm)
|
||||
}
|
||||
}
|
||||
|
||||
function initWatch(vm: Component, watch: Object) {
|
||||
for (const key in watch) {
|
||||
const handler = watch[key]
|
||||
if (isArray(handler)) {
|
||||
for (let i = 0; i < handler.length; i++) {
|
||||
createWatcher(vm, key, handler[i])
|
||||
}
|
||||
} else {
|
||||
createWatcher(vm, key, handler)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createWatcher(
|
||||
vm: Component,
|
||||
expOrFn: string | (() => any),
|
||||
handler: any,
|
||||
options?: Object
|
||||
) {
|
||||
if (isPlainObject(handler)) {
|
||||
options = handler
|
||||
handler = handler.handler
|
||||
}
|
||||
if (typeof handler === 'string') {
|
||||
handler = vm[handler]
|
||||
}
|
||||
return vm.$watch(expOrFn, handler, options)
|
||||
}
|
||||
|
||||
export function stateMixin(Vue: typeof Component) {
|
||||
// flow somehow has problems with directly declared definition object
|
||||
// when using Object.defineProperty, so we have to procedurally build up
|
||||
// the object here.
|
||||
const dataDef: any = {}
|
||||
dataDef.get = function () {
|
||||
return this._data
|
||||
}
|
||||
const propsDef: any = {}
|
||||
propsDef.get = function () {
|
||||
return this._props
|
||||
}
|
||||
if (__DEV__) {
|
||||
dataDef.set = function () {
|
||||
warn(
|
||||
'Avoid replacing instance root $data. ' +
|
||||
'Use nested data properties instead.',
|
||||
this
|
||||
)
|
||||
}
|
||||
propsDef.set = function () {
|
||||
warn(`$props is readonly.`, this)
|
||||
}
|
||||
}
|
||||
Object.defineProperty(Vue.prototype, '$data', dataDef)
|
||||
Object.defineProperty(Vue.prototype, '$props', propsDef)
|
||||
|
||||
Vue.prototype.$set = set
|
||||
Vue.prototype.$delete = del
|
||||
|
||||
Vue.prototype.$watch = function (
|
||||
expOrFn: string | (() => any),
|
||||
cb: any,
|
||||
options?: Record<string, any>
|
||||
): Function {
|
||||
const vm: Component = this
|
||||
if (isPlainObject(cb)) {
|
||||
return createWatcher(vm, expOrFn, cb, options)
|
||||
}
|
||||
options = options || {}
|
||||
options.user = true
|
||||
const watcher = new Watcher(vm, expOrFn, cb, options)
|
||||
if (options.immediate) {
|
||||
const info = `callback for immediate watcher "${watcher.expression}"`
|
||||
pushTarget()
|
||||
invokeWithErrorHandling(cb, vm, [watcher.value], vm, info)
|
||||
popTarget()
|
||||
}
|
||||
return function unwatchFn() {
|
||||
watcher.teardown()
|
||||
}
|
||||
}
|
||||
}
|
54
node_modules/vue/src/core/observer/array.ts
generated
vendored
Normal file
54
node_modules/vue/src/core/observer/array.ts
generated
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
* not type checking this file because flow doesn't play well with
|
||||
* dynamically accessing methods on Array prototype
|
||||
*/
|
||||
|
||||
import { TriggerOpTypes } from '../../v3'
|
||||
import { def } from '../util/index'
|
||||
|
||||
const arrayProto = Array.prototype
|
||||
export const arrayMethods = Object.create(arrayProto)
|
||||
|
||||
const methodsToPatch = [
|
||||
'push',
|
||||
'pop',
|
||||
'shift',
|
||||
'unshift',
|
||||
'splice',
|
||||
'sort',
|
||||
'reverse'
|
||||
]
|
||||
|
||||
/**
|
||||
* Intercept mutating methods and emit events
|
||||
*/
|
||||
methodsToPatch.forEach(function (method) {
|
||||
// cache original method
|
||||
const original = arrayProto[method]
|
||||
def(arrayMethods, method, function mutator(...args) {
|
||||
const result = original.apply(this, args)
|
||||
const ob = this.__ob__
|
||||
let inserted
|
||||
switch (method) {
|
||||
case 'push':
|
||||
case 'unshift':
|
||||
inserted = args
|
||||
break
|
||||
case 'splice':
|
||||
inserted = args.slice(2)
|
||||
break
|
||||
}
|
||||
if (inserted) ob.observeArray(inserted)
|
||||
// notify change
|
||||
if (__DEV__) {
|
||||
ob.dep.notify({
|
||||
type: TriggerOpTypes.ARRAY_MUTATION,
|
||||
target: this,
|
||||
key: method
|
||||
})
|
||||
} else {
|
||||
ob.dep.notify()
|
||||
}
|
||||
return result
|
||||
})
|
||||
})
|
108
node_modules/vue/src/core/observer/dep.ts
generated
vendored
Normal file
108
node_modules/vue/src/core/observer/dep.ts
generated
vendored
Normal file
@ -0,0 +1,108 @@
|
||||
import config from '../config'
|
||||
import { DebuggerOptions, DebuggerEventExtraInfo } from 'v3'
|
||||
|
||||
let uid = 0
|
||||
|
||||
const pendingCleanupDeps: Dep[] = []
|
||||
|
||||
export const cleanupDeps = () => {
|
||||
for (let i = 0; i < pendingCleanupDeps.length; i++) {
|
||||
const dep = pendingCleanupDeps[i]
|
||||
dep.subs = dep.subs.filter(s => s)
|
||||
dep._pending = false
|
||||
}
|
||||
pendingCleanupDeps.length = 0
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export interface DepTarget extends DebuggerOptions {
|
||||
id: number
|
||||
addDep(dep: Dep): void
|
||||
update(): void
|
||||
}
|
||||
|
||||
/**
|
||||
* A dep is an observable that can have multiple
|
||||
* directives subscribing to it.
|
||||
* @internal
|
||||
*/
|
||||
export default class Dep {
|
||||
static target?: DepTarget | null
|
||||
id: number
|
||||
subs: Array<DepTarget | null>
|
||||
// pending subs cleanup
|
||||
_pending = false
|
||||
|
||||
constructor() {
|
||||
this.id = uid++
|
||||
this.subs = []
|
||||
}
|
||||
|
||||
addSub(sub: DepTarget) {
|
||||
this.subs.push(sub)
|
||||
}
|
||||
|
||||
removeSub(sub: DepTarget) {
|
||||
// #12696 deps with massive amount of subscribers are extremely slow to
|
||||
// clean up in Chromium
|
||||
// to workaround this, we unset the sub for now, and clear them on
|
||||
// next scheduler flush.
|
||||
this.subs[this.subs.indexOf(sub)] = null
|
||||
if (!this._pending) {
|
||||
this._pending = true
|
||||
pendingCleanupDeps.push(this)
|
||||
}
|
||||
}
|
||||
|
||||
depend(info?: DebuggerEventExtraInfo) {
|
||||
if (Dep.target) {
|
||||
Dep.target.addDep(this)
|
||||
if (__DEV__ && info && Dep.target.onTrack) {
|
||||
Dep.target.onTrack({
|
||||
effect: Dep.target,
|
||||
...info
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
notify(info?: DebuggerEventExtraInfo) {
|
||||
// stabilize the subscriber list first
|
||||
const subs = this.subs.filter(s => s) as DepTarget[]
|
||||
if (__DEV__ && !config.async) {
|
||||
// subs aren't sorted in scheduler if not running async
|
||||
// we need to sort them now to make sure they fire in correct
|
||||
// order
|
||||
subs.sort((a, b) => a.id - b.id)
|
||||
}
|
||||
for (let i = 0, l = subs.length; i < l; i++) {
|
||||
const sub = subs[i]
|
||||
if (__DEV__ && info) {
|
||||
sub.onTrigger &&
|
||||
sub.onTrigger({
|
||||
effect: subs[i],
|
||||
...info
|
||||
})
|
||||
}
|
||||
sub.update()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The current target watcher being evaluated.
|
||||
// This is globally unique because only one watcher
|
||||
// can be evaluated at a time.
|
||||
Dep.target = null
|
||||
const targetStack: Array<DepTarget | null | undefined> = []
|
||||
|
||||
export function pushTarget(target?: DepTarget | null) {
|
||||
targetStack.push(target)
|
||||
Dep.target = target
|
||||
}
|
||||
|
||||
export function popTarget() {
|
||||
targetStack.pop()
|
||||
Dep.target = targetStack[targetStack.length - 1]
|
||||
}
|
338
node_modules/vue/src/core/observer/index.ts
generated
vendored
Normal file
338
node_modules/vue/src/core/observer/index.ts
generated
vendored
Normal file
@ -0,0 +1,338 @@
|
||||
import Dep from './dep'
|
||||
import VNode from '../vdom/vnode'
|
||||
import { arrayMethods } from './array'
|
||||
import {
|
||||
def,
|
||||
warn,
|
||||
hasOwn,
|
||||
isArray,
|
||||
hasProto,
|
||||
isPlainObject,
|
||||
isPrimitive,
|
||||
isUndef,
|
||||
isValidArrayIndex,
|
||||
isServerRendering,
|
||||
hasChanged,
|
||||
noop
|
||||
} from '../util/index'
|
||||
import { isReadonly, isRef, TrackOpTypes, TriggerOpTypes } from '../../v3'
|
||||
|
||||
const arrayKeys = Object.getOwnPropertyNames(arrayMethods)
|
||||
|
||||
const NO_INIITIAL_VALUE = {}
|
||||
|
||||
/**
|
||||
* In some cases we may want to disable observation inside a component's
|
||||
* update computation.
|
||||
*/
|
||||
export let shouldObserve: boolean = true
|
||||
|
||||
export function toggleObserving(value: boolean) {
|
||||
shouldObserve = value
|
||||
}
|
||||
|
||||
// ssr mock dep
|
||||
const mockDep = {
|
||||
notify: noop,
|
||||
depend: noop,
|
||||
addSub: noop,
|
||||
removeSub: noop
|
||||
} as Dep
|
||||
|
||||
/**
|
||||
* Observer class that is attached to each observed
|
||||
* object. Once attached, the observer converts the target
|
||||
* object's property keys into getter/setters that
|
||||
* collect dependencies and dispatch updates.
|
||||
*/
|
||||
export class Observer {
|
||||
dep: Dep
|
||||
vmCount: number // number of vms that have this object as root $data
|
||||
|
||||
constructor(public value: any, public shallow = false, public mock = false) {
|
||||
// this.value = value
|
||||
this.dep = mock ? mockDep : new Dep()
|
||||
this.vmCount = 0
|
||||
def(value, '__ob__', this)
|
||||
if (isArray(value)) {
|
||||
if (!mock) {
|
||||
if (hasProto) {
|
||||
/* eslint-disable no-proto */
|
||||
;(value as any).__proto__ = arrayMethods
|
||||
/* eslint-enable no-proto */
|
||||
} else {
|
||||
for (let i = 0, l = arrayKeys.length; i < l; i++) {
|
||||
const key = arrayKeys[i]
|
||||
def(value, key, arrayMethods[key])
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!shallow) {
|
||||
this.observeArray(value)
|
||||
}
|
||||
} else {
|
||||
/**
|
||||
* Walk through all properties and convert them into
|
||||
* getter/setters. This method should only be called when
|
||||
* value type is Object.
|
||||
*/
|
||||
const keys = Object.keys(value)
|
||||
for (let i = 0; i < keys.length; i++) {
|
||||
const key = keys[i]
|
||||
defineReactive(value, key, NO_INIITIAL_VALUE, undefined, shallow, mock)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Observe a list of Array items.
|
||||
*/
|
||||
observeArray(value: any[]) {
|
||||
for (let i = 0, l = value.length; i < l; i++) {
|
||||
observe(value[i], false, this.mock)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// helpers
|
||||
|
||||
/**
|
||||
* Attempt to create an observer instance for a value,
|
||||
* returns the new observer if successfully observed,
|
||||
* or the existing observer if the value already has one.
|
||||
*/
|
||||
export function observe(
|
||||
value: any,
|
||||
shallow?: boolean,
|
||||
ssrMockReactivity?: boolean
|
||||
): Observer | void {
|
||||
if (value && hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
|
||||
return value.__ob__
|
||||
}
|
||||
if (
|
||||
shouldObserve &&
|
||||
(ssrMockReactivity || !isServerRendering()) &&
|
||||
(isArray(value) || isPlainObject(value)) &&
|
||||
Object.isExtensible(value) &&
|
||||
!value.__v_skip /* ReactiveFlags.SKIP */ &&
|
||||
!isRef(value) &&
|
||||
!(value instanceof VNode)
|
||||
) {
|
||||
return new Observer(value, shallow, ssrMockReactivity)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Define a reactive property on an Object.
|
||||
*/
|
||||
export function defineReactive(
|
||||
obj: object,
|
||||
key: string,
|
||||
val?: any,
|
||||
customSetter?: Function | null,
|
||||
shallow?: boolean,
|
||||
mock?: boolean
|
||||
) {
|
||||
const dep = new Dep()
|
||||
|
||||
const property = Object.getOwnPropertyDescriptor(obj, key)
|
||||
if (property && property.configurable === false) {
|
||||
return
|
||||
}
|
||||
|
||||
// cater for pre-defined getter/setters
|
||||
const getter = property && property.get
|
||||
const setter = property && property.set
|
||||
if (
|
||||
(!getter || setter) &&
|
||||
(val === NO_INIITIAL_VALUE || arguments.length === 2)
|
||||
) {
|
||||
val = obj[key]
|
||||
}
|
||||
|
||||
let childOb = !shallow && observe(val, false, mock)
|
||||
Object.defineProperty(obj, key, {
|
||||
enumerable: true,
|
||||
configurable: true,
|
||||
get: function reactiveGetter() {
|
||||
const value = getter ? getter.call(obj) : val
|
||||
if (Dep.target) {
|
||||
if (__DEV__) {
|
||||
dep.depend({
|
||||
target: obj,
|
||||
type: TrackOpTypes.GET,
|
||||
key
|
||||
})
|
||||
} else {
|
||||
dep.depend()
|
||||
}
|
||||
if (childOb) {
|
||||
childOb.dep.depend()
|
||||
if (isArray(value)) {
|
||||
dependArray(value)
|
||||
}
|
||||
}
|
||||
}
|
||||
return isRef(value) && !shallow ? value.value : value
|
||||
},
|
||||
set: function reactiveSetter(newVal) {
|
||||
const value = getter ? getter.call(obj) : val
|
||||
if (!hasChanged(value, newVal)) {
|
||||
return
|
||||
}
|
||||
if (__DEV__ && customSetter) {
|
||||
customSetter()
|
||||
}
|
||||
if (setter) {
|
||||
setter.call(obj, newVal)
|
||||
} else if (getter) {
|
||||
// #7981: for accessor properties without setter
|
||||
return
|
||||
} else if (!shallow && isRef(value) && !isRef(newVal)) {
|
||||
value.value = newVal
|
||||
return
|
||||
} else {
|
||||
val = newVal
|
||||
}
|
||||
childOb = !shallow && observe(newVal, false, mock)
|
||||
if (__DEV__) {
|
||||
dep.notify({
|
||||
type: TriggerOpTypes.SET,
|
||||
target: obj,
|
||||
key,
|
||||
newValue: newVal,
|
||||
oldValue: value
|
||||
})
|
||||
} else {
|
||||
dep.notify()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return dep
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a property on an object. Adds the new property and
|
||||
* triggers change notification if the property doesn't
|
||||
* already exist.
|
||||
*/
|
||||
export function set<T>(array: T[], key: number, value: T): T
|
||||
export function set<T>(object: object, key: string | number, value: T): T
|
||||
export function set(
|
||||
target: any[] | Record<string, any>,
|
||||
key: any,
|
||||
val: any
|
||||
): any {
|
||||
if (__DEV__ && (isUndef(target) || isPrimitive(target))) {
|
||||
warn(
|
||||
`Cannot set reactive property on undefined, null, or primitive value: ${target}`
|
||||
)
|
||||
}
|
||||
if (isReadonly(target)) {
|
||||
__DEV__ && warn(`Set operation on key "${key}" failed: target is readonly.`)
|
||||
return
|
||||
}
|
||||
const ob = (target as any).__ob__
|
||||
if (isArray(target) && isValidArrayIndex(key)) {
|
||||
target.length = Math.max(target.length, key)
|
||||
target.splice(key, 1, val)
|
||||
// when mocking for SSR, array methods are not hijacked
|
||||
if (ob && !ob.shallow && ob.mock) {
|
||||
observe(val, false, true)
|
||||
}
|
||||
return val
|
||||
}
|
||||
if (key in target && !(key in Object.prototype)) {
|
||||
target[key] = val
|
||||
return val
|
||||
}
|
||||
if ((target as any)._isVue || (ob && ob.vmCount)) {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
'Avoid adding reactive properties to a Vue instance or its root $data ' +
|
||||
'at runtime - declare it upfront in the data option.'
|
||||
)
|
||||
return val
|
||||
}
|
||||
if (!ob) {
|
||||
target[key] = val
|
||||
return val
|
||||
}
|
||||
defineReactive(ob.value, key, val, undefined, ob.shallow, ob.mock)
|
||||
if (__DEV__) {
|
||||
ob.dep.notify({
|
||||
type: TriggerOpTypes.ADD,
|
||||
target: target,
|
||||
key,
|
||||
newValue: val,
|
||||
oldValue: undefined
|
||||
})
|
||||
} else {
|
||||
ob.dep.notify()
|
||||
}
|
||||
return val
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a property and trigger change if necessary.
|
||||
*/
|
||||
export function del<T>(array: T[], key: number): void
|
||||
export function del(object: object, key: string | number): void
|
||||
export function del(target: any[] | object, key: any) {
|
||||
if (__DEV__ && (isUndef(target) || isPrimitive(target))) {
|
||||
warn(
|
||||
`Cannot delete reactive property on undefined, null, or primitive value: ${target}`
|
||||
)
|
||||
}
|
||||
if (isArray(target) && isValidArrayIndex(key)) {
|
||||
target.splice(key, 1)
|
||||
return
|
||||
}
|
||||
const ob = (target as any).__ob__
|
||||
if ((target as any)._isVue || (ob && ob.vmCount)) {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
'Avoid deleting properties on a Vue instance or its root $data ' +
|
||||
'- just set it to null.'
|
||||
)
|
||||
return
|
||||
}
|
||||
if (isReadonly(target)) {
|
||||
__DEV__ &&
|
||||
warn(`Delete operation on key "${key}" failed: target is readonly.`)
|
||||
return
|
||||
}
|
||||
if (!hasOwn(target, key)) {
|
||||
return
|
||||
}
|
||||
delete target[key]
|
||||
if (!ob) {
|
||||
return
|
||||
}
|
||||
if (__DEV__) {
|
||||
ob.dep.notify({
|
||||
type: TriggerOpTypes.DELETE,
|
||||
target: target,
|
||||
key
|
||||
})
|
||||
} else {
|
||||
ob.dep.notify()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Collect dependencies on array elements when the array is touched, since
|
||||
* we cannot intercept array element access like property getters.
|
||||
*/
|
||||
function dependArray(value: Array<any>) {
|
||||
for (let e, i = 0, l = value.length; i < l; i++) {
|
||||
e = value[i]
|
||||
if (e && e.__ob__) {
|
||||
e.__ob__.dep.depend()
|
||||
}
|
||||
if (isArray(e)) {
|
||||
dependArray(e)
|
||||
}
|
||||
}
|
||||
}
|
199
node_modules/vue/src/core/observer/scheduler.ts
generated
vendored
Normal file
199
node_modules/vue/src/core/observer/scheduler.ts
generated
vendored
Normal file
@ -0,0 +1,199 @@
|
||||
import type Watcher from './watcher'
|
||||
import config from '../config'
|
||||
import Dep, { cleanupDeps } from './dep'
|
||||
import { callHook, activateChildComponent } from '../instance/lifecycle'
|
||||
|
||||
import { warn, nextTick, devtools, inBrowser, isIE } from '../util/index'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
export const MAX_UPDATE_COUNT = 100
|
||||
|
||||
const queue: Array<Watcher> = []
|
||||
const activatedChildren: Array<Component> = []
|
||||
let has: { [key: number]: true | undefined | null } = {}
|
||||
let circular: { [key: number]: number } = {}
|
||||
let waiting = false
|
||||
let flushing = false
|
||||
let index = 0
|
||||
|
||||
/**
|
||||
* Reset the scheduler's state.
|
||||
*/
|
||||
function resetSchedulerState() {
|
||||
index = queue.length = activatedChildren.length = 0
|
||||
has = {}
|
||||
if (__DEV__) {
|
||||
circular = {}
|
||||
}
|
||||
waiting = flushing = false
|
||||
}
|
||||
|
||||
// Async edge case #6566 requires saving the timestamp when event listeners are
|
||||
// attached. However, calling performance.now() has a perf overhead especially
|
||||
// if the page has thousands of event listeners. Instead, we take a timestamp
|
||||
// every time the scheduler flushes and use that for all event listeners
|
||||
// attached during that flush.
|
||||
export let currentFlushTimestamp = 0
|
||||
|
||||
// Async edge case fix requires storing an event listener's attach timestamp.
|
||||
let getNow: () => number = Date.now
|
||||
|
||||
// Determine what event timestamp the browser is using. Annoyingly, the
|
||||
// timestamp can either be hi-res (relative to page load) or low-res
|
||||
// (relative to UNIX epoch), so in order to compare time we have to use the
|
||||
// same timestamp type when saving the flush timestamp.
|
||||
// All IE versions use low-res event timestamps, and have problematic clock
|
||||
// implementations (#9632)
|
||||
if (inBrowser && !isIE) {
|
||||
const performance = window.performance
|
||||
if (
|
||||
performance &&
|
||||
typeof performance.now === 'function' &&
|
||||
getNow() > document.createEvent('Event').timeStamp
|
||||
) {
|
||||
// if the event timestamp, although evaluated AFTER the Date.now(), is
|
||||
// smaller than it, it means the event is using a hi-res timestamp,
|
||||
// and we need to use the hi-res version for event listener timestamps as
|
||||
// well.
|
||||
getNow = () => performance.now()
|
||||
}
|
||||
}
|
||||
|
||||
const sortCompareFn = (a: Watcher, b: Watcher): number => {
|
||||
if (a.post) {
|
||||
if (!b.post) return 1
|
||||
} else if (b.post) {
|
||||
return -1
|
||||
}
|
||||
return a.id - b.id
|
||||
}
|
||||
|
||||
/**
|
||||
* Flush both queues and run the watchers.
|
||||
*/
|
||||
function flushSchedulerQueue() {
|
||||
currentFlushTimestamp = getNow()
|
||||
flushing = true
|
||||
let watcher, id
|
||||
|
||||
// Sort queue before flush.
|
||||
// This ensures that:
|
||||
// 1. Components are updated from parent to child. (because parent is always
|
||||
// created before the child)
|
||||
// 2. A component's user watchers are run before its render watcher (because
|
||||
// user watchers are created before the render watcher)
|
||||
// 3. If a component is destroyed during a parent component's watcher run,
|
||||
// its watchers can be skipped.
|
||||
queue.sort(sortCompareFn)
|
||||
|
||||
// do not cache length because more watchers might be pushed
|
||||
// as we run existing watchers
|
||||
for (index = 0; index < queue.length; index++) {
|
||||
watcher = queue[index]
|
||||
if (watcher.before) {
|
||||
watcher.before()
|
||||
}
|
||||
id = watcher.id
|
||||
has[id] = null
|
||||
watcher.run()
|
||||
// in dev build, check and stop circular updates.
|
||||
if (__DEV__ && has[id] != null) {
|
||||
circular[id] = (circular[id] || 0) + 1
|
||||
if (circular[id] > MAX_UPDATE_COUNT) {
|
||||
warn(
|
||||
'You may have an infinite update loop ' +
|
||||
(watcher.user
|
||||
? `in watcher with expression "${watcher.expression}"`
|
||||
: `in a component render function.`),
|
||||
watcher.vm
|
||||
)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// keep copies of post queues before resetting state
|
||||
const activatedQueue = activatedChildren.slice()
|
||||
const updatedQueue = queue.slice()
|
||||
|
||||
resetSchedulerState()
|
||||
|
||||
// call component updated and activated hooks
|
||||
callActivatedHooks(activatedQueue)
|
||||
callUpdatedHooks(updatedQueue)
|
||||
cleanupDeps()
|
||||
|
||||
// devtool hook
|
||||
/* istanbul ignore if */
|
||||
if (devtools && config.devtools) {
|
||||
devtools.emit('flush')
|
||||
}
|
||||
}
|
||||
|
||||
function callUpdatedHooks(queue: Watcher[]) {
|
||||
let i = queue.length
|
||||
while (i--) {
|
||||
const watcher = queue[i]
|
||||
const vm = watcher.vm
|
||||
if (vm && vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {
|
||||
callHook(vm, 'updated')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Queue a kept-alive component that was activated during patch.
|
||||
* The queue will be processed after the entire tree has been patched.
|
||||
*/
|
||||
export function queueActivatedComponent(vm: Component) {
|
||||
// setting _inactive to false here so that a render function can
|
||||
// rely on checking whether it's in an inactive tree (e.g. router-view)
|
||||
vm._inactive = false
|
||||
activatedChildren.push(vm)
|
||||
}
|
||||
|
||||
function callActivatedHooks(queue) {
|
||||
for (let i = 0; i < queue.length; i++) {
|
||||
queue[i]._inactive = true
|
||||
activateChildComponent(queue[i], true /* true */)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Push a watcher into the watcher queue.
|
||||
* Jobs with duplicate IDs will be skipped unless it's
|
||||
* pushed when the queue is being flushed.
|
||||
*/
|
||||
export function queueWatcher(watcher: Watcher) {
|
||||
const id = watcher.id
|
||||
if (has[id] != null) {
|
||||
return
|
||||
}
|
||||
|
||||
if (watcher === Dep.target && watcher.noRecurse) {
|
||||
return
|
||||
}
|
||||
|
||||
has[id] = true
|
||||
if (!flushing) {
|
||||
queue.push(watcher)
|
||||
} else {
|
||||
// if already flushing, splice the watcher based on its id
|
||||
// if already past its id, it will be run next immediately.
|
||||
let i = queue.length - 1
|
||||
while (i > index && queue[i].id > watcher.id) {
|
||||
i--
|
||||
}
|
||||
queue.splice(i + 1, 0, watcher)
|
||||
}
|
||||
// queue the flush
|
||||
if (!waiting) {
|
||||
waiting = true
|
||||
|
||||
if (__DEV__ && !config.async) {
|
||||
flushSchedulerQueue()
|
||||
return
|
||||
}
|
||||
nextTick(flushSchedulerQueue)
|
||||
}
|
||||
}
|
47
node_modules/vue/src/core/observer/traverse.ts
generated
vendored
Normal file
47
node_modules/vue/src/core/observer/traverse.ts
generated
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
import { _Set as Set, isObject, isArray } from '../util/index'
|
||||
import type { SimpleSet } from '../util/index'
|
||||
import VNode from '../vdom/vnode'
|
||||
import { isRef } from '../../v3'
|
||||
|
||||
const seenObjects = new Set()
|
||||
|
||||
/**
|
||||
* Recursively traverse an object to evoke all converted
|
||||
* getters, so that every nested property inside the object
|
||||
* is collected as a "deep" dependency.
|
||||
*/
|
||||
export function traverse(val: any) {
|
||||
_traverse(val, seenObjects)
|
||||
seenObjects.clear()
|
||||
return val
|
||||
}
|
||||
|
||||
function _traverse(val: any, seen: SimpleSet) {
|
||||
let i, keys
|
||||
const isA = isArray(val)
|
||||
if (
|
||||
(!isA && !isObject(val)) ||
|
||||
val.__v_skip /* ReactiveFlags.SKIP */ ||
|
||||
Object.isFrozen(val) ||
|
||||
val instanceof VNode
|
||||
) {
|
||||
return
|
||||
}
|
||||
if (val.__ob__) {
|
||||
const depId = val.__ob__.dep.id
|
||||
if (seen.has(depId)) {
|
||||
return
|
||||
}
|
||||
seen.add(depId)
|
||||
}
|
||||
if (isA) {
|
||||
i = val.length
|
||||
while (i--) _traverse(val[i], seen)
|
||||
} else if (isRef(val)) {
|
||||
_traverse(val.value, seen)
|
||||
} else {
|
||||
keys = Object.keys(val)
|
||||
i = keys.length
|
||||
while (i--) _traverse(val[keys[i]], seen)
|
||||
}
|
||||
}
|
278
node_modules/vue/src/core/observer/watcher.ts
generated
vendored
Normal file
278
node_modules/vue/src/core/observer/watcher.ts
generated
vendored
Normal file
@ -0,0 +1,278 @@
|
||||
import {
|
||||
warn,
|
||||
remove,
|
||||
isObject,
|
||||
parsePath,
|
||||
_Set as Set,
|
||||
handleError,
|
||||
invokeWithErrorHandling,
|
||||
noop,
|
||||
isFunction
|
||||
} from '../util/index'
|
||||
|
||||
import { traverse } from './traverse'
|
||||
import { queueWatcher } from './scheduler'
|
||||
import Dep, { pushTarget, popTarget, DepTarget } from './dep'
|
||||
import { DebuggerEvent, DebuggerOptions } from 'v3/debug'
|
||||
|
||||
import type { SimpleSet } from '../util/index'
|
||||
import type { Component } from 'types/component'
|
||||
import { activeEffectScope, recordEffectScope } from 'v3/reactivity/effectScope'
|
||||
|
||||
let uid = 0
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export interface WatcherOptions extends DebuggerOptions {
|
||||
deep?: boolean
|
||||
user?: boolean
|
||||
lazy?: boolean
|
||||
sync?: boolean
|
||||
before?: Function
|
||||
}
|
||||
|
||||
/**
|
||||
* A watcher parses an expression, collects dependencies,
|
||||
* and fires callback when the expression value changes.
|
||||
* This is used for both the $watch() api and directives.
|
||||
* @internal
|
||||
*/
|
||||
export default class Watcher implements DepTarget {
|
||||
vm?: Component | null
|
||||
expression: string
|
||||
cb: Function
|
||||
id: number
|
||||
deep: boolean
|
||||
user: boolean
|
||||
lazy: boolean
|
||||
sync: boolean
|
||||
dirty: boolean
|
||||
active: boolean
|
||||
deps: Array<Dep>
|
||||
newDeps: Array<Dep>
|
||||
depIds: SimpleSet
|
||||
newDepIds: SimpleSet
|
||||
before?: Function
|
||||
onStop?: Function
|
||||
noRecurse?: boolean
|
||||
getter: Function
|
||||
value: any
|
||||
post: boolean
|
||||
|
||||
// dev only
|
||||
onTrack?: ((event: DebuggerEvent) => void) | undefined
|
||||
onTrigger?: ((event: DebuggerEvent) => void) | undefined
|
||||
|
||||
constructor(
|
||||
vm: Component | null,
|
||||
expOrFn: string | (() => any),
|
||||
cb: Function,
|
||||
options?: WatcherOptions | null,
|
||||
isRenderWatcher?: boolean
|
||||
) {
|
||||
recordEffectScope(
|
||||
this,
|
||||
// if the active effect scope is manually created (not a component scope),
|
||||
// prioritize it
|
||||
activeEffectScope && !activeEffectScope._vm
|
||||
? activeEffectScope
|
||||
: vm
|
||||
? vm._scope
|
||||
: undefined
|
||||
)
|
||||
if ((this.vm = vm) && isRenderWatcher) {
|
||||
vm._watcher = this
|
||||
}
|
||||
// options
|
||||
if (options) {
|
||||
this.deep = !!options.deep
|
||||
this.user = !!options.user
|
||||
this.lazy = !!options.lazy
|
||||
this.sync = !!options.sync
|
||||
this.before = options.before
|
||||
if (__DEV__) {
|
||||
this.onTrack = options.onTrack
|
||||
this.onTrigger = options.onTrigger
|
||||
}
|
||||
} else {
|
||||
this.deep = this.user = this.lazy = this.sync = false
|
||||
}
|
||||
this.cb = cb
|
||||
this.id = ++uid // uid for batching
|
||||
this.active = true
|
||||
this.post = false
|
||||
this.dirty = this.lazy // for lazy watchers
|
||||
this.deps = []
|
||||
this.newDeps = []
|
||||
this.depIds = new Set()
|
||||
this.newDepIds = new Set()
|
||||
this.expression = __DEV__ ? expOrFn.toString() : ''
|
||||
// parse expression for getter
|
||||
if (isFunction(expOrFn)) {
|
||||
this.getter = expOrFn
|
||||
} else {
|
||||
this.getter = parsePath(expOrFn)
|
||||
if (!this.getter) {
|
||||
this.getter = noop
|
||||
__DEV__ &&
|
||||
warn(
|
||||
`Failed watching path: "${expOrFn}" ` +
|
||||
'Watcher only accepts simple dot-delimited paths. ' +
|
||||
'For full control, use a function instead.',
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
this.value = this.lazy ? undefined : this.get()
|
||||
}
|
||||
|
||||
/**
|
||||
* Evaluate the getter, and re-collect dependencies.
|
||||
*/
|
||||
get() {
|
||||
pushTarget(this)
|
||||
let value
|
||||
const vm = this.vm
|
||||
try {
|
||||
value = this.getter.call(vm, vm)
|
||||
} catch (e: any) {
|
||||
if (this.user) {
|
||||
handleError(e, vm, `getter for watcher "${this.expression}"`)
|
||||
} else {
|
||||
throw e
|
||||
}
|
||||
} finally {
|
||||
// "touch" every property so they are all tracked as
|
||||
// dependencies for deep watching
|
||||
if (this.deep) {
|
||||
traverse(value)
|
||||
}
|
||||
popTarget()
|
||||
this.cleanupDeps()
|
||||
}
|
||||
return value
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a dependency to this directive.
|
||||
*/
|
||||
addDep(dep: Dep) {
|
||||
const id = dep.id
|
||||
if (!this.newDepIds.has(id)) {
|
||||
this.newDepIds.add(id)
|
||||
this.newDeps.push(dep)
|
||||
if (!this.depIds.has(id)) {
|
||||
dep.addSub(this)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean up for dependency collection.
|
||||
*/
|
||||
cleanupDeps() {
|
||||
let i = this.deps.length
|
||||
while (i--) {
|
||||
const dep = this.deps[i]
|
||||
if (!this.newDepIds.has(dep.id)) {
|
||||
dep.removeSub(this)
|
||||
}
|
||||
}
|
||||
let tmp: any = this.depIds
|
||||
this.depIds = this.newDepIds
|
||||
this.newDepIds = tmp
|
||||
this.newDepIds.clear()
|
||||
tmp = this.deps
|
||||
this.deps = this.newDeps
|
||||
this.newDeps = tmp
|
||||
this.newDeps.length = 0
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscriber interface.
|
||||
* Will be called when a dependency changes.
|
||||
*/
|
||||
update() {
|
||||
/* istanbul ignore else */
|
||||
if (this.lazy) {
|
||||
this.dirty = true
|
||||
} else if (this.sync) {
|
||||
this.run()
|
||||
} else {
|
||||
queueWatcher(this)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Scheduler job interface.
|
||||
* Will be called by the scheduler.
|
||||
*/
|
||||
run() {
|
||||
if (this.active) {
|
||||
const value = this.get()
|
||||
if (
|
||||
value !== this.value ||
|
||||
// Deep watchers and watchers on Object/Arrays should fire even
|
||||
// when the value is the same, because the value may
|
||||
// have mutated.
|
||||
isObject(value) ||
|
||||
this.deep
|
||||
) {
|
||||
// set new value
|
||||
const oldValue = this.value
|
||||
this.value = value
|
||||
if (this.user) {
|
||||
const info = `callback for watcher "${this.expression}"`
|
||||
invokeWithErrorHandling(
|
||||
this.cb,
|
||||
this.vm,
|
||||
[value, oldValue],
|
||||
this.vm,
|
||||
info
|
||||
)
|
||||
} else {
|
||||
this.cb.call(this.vm, value, oldValue)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Evaluate the value of the watcher.
|
||||
* This only gets called for lazy watchers.
|
||||
*/
|
||||
evaluate() {
|
||||
this.value = this.get()
|
||||
this.dirty = false
|
||||
}
|
||||
|
||||
/**
|
||||
* Depend on all deps collected by this watcher.
|
||||
*/
|
||||
depend() {
|
||||
let i = this.deps.length
|
||||
while (i--) {
|
||||
this.deps[i].depend()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove self from all dependencies' subscriber list.
|
||||
*/
|
||||
teardown() {
|
||||
if (this.vm && !this.vm._isBeingDestroyed) {
|
||||
remove(this.vm._scope.effects, this)
|
||||
}
|
||||
if (this.active) {
|
||||
let i = this.deps.length
|
||||
while (i--) {
|
||||
this.deps[i].removeSub(this)
|
||||
}
|
||||
this.active = false
|
||||
if (this.onStop) {
|
||||
this.onStop()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
105
node_modules/vue/src/core/util/debug.ts
generated
vendored
Normal file
105
node_modules/vue/src/core/util/debug.ts
generated
vendored
Normal file
@ -0,0 +1,105 @@
|
||||
import config from '../config'
|
||||
import { noop, isArray, isFunction } from 'shared/util'
|
||||
import type { Component } from 'types/component'
|
||||
import { currentInstance } from 'v3/currentInstance'
|
||||
import { getComponentName } from '../vdom/create-component'
|
||||
|
||||
export let warn: (msg: string, vm?: Component | null) => void = noop
|
||||
export let tip = noop
|
||||
export let generateComponentTrace: (vm: Component) => string // work around flow check
|
||||
export let formatComponentName: (vm: Component, includeFile?: false) => string
|
||||
|
||||
if (__DEV__) {
|
||||
const hasConsole = typeof console !== 'undefined'
|
||||
const classifyRE = /(?:^|[-_])(\w)/g
|
||||
const classify = str =>
|
||||
str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '')
|
||||
|
||||
warn = (msg, vm = currentInstance) => {
|
||||
const trace = vm ? generateComponentTrace(vm) : ''
|
||||
|
||||
if (config.warnHandler) {
|
||||
config.warnHandler.call(null, msg, vm, trace)
|
||||
} else if (hasConsole && !config.silent) {
|
||||
console.error(`[Vue warn]: ${msg}${trace}`)
|
||||
}
|
||||
}
|
||||
|
||||
tip = (msg, vm) => {
|
||||
if (hasConsole && !config.silent) {
|
||||
console.warn(`[Vue tip]: ${msg}` + (vm ? generateComponentTrace(vm) : ''))
|
||||
}
|
||||
}
|
||||
|
||||
formatComponentName = (vm, includeFile) => {
|
||||
if (vm.$root === vm) {
|
||||
return '<Root>'
|
||||
}
|
||||
const options =
|
||||
isFunction(vm) && (vm as any).cid != null
|
||||
? (vm as any).options
|
||||
: vm._isVue
|
||||
? vm.$options || (vm.constructor as any).options
|
||||
: vm
|
||||
let name = getComponentName(options)
|
||||
const file = options.__file
|
||||
if (!name && file) {
|
||||
const match = file.match(/([^/\\]+)\.vue$/)
|
||||
name = match && match[1]
|
||||
}
|
||||
|
||||
return (
|
||||
(name ? `<${classify(name)}>` : `<Anonymous>`) +
|
||||
(file && includeFile !== false ? ` at ${file}` : '')
|
||||
)
|
||||
}
|
||||
|
||||
const repeat = (str, n) => {
|
||||
let res = ''
|
||||
while (n) {
|
||||
if (n % 2 === 1) res += str
|
||||
if (n > 1) str += str
|
||||
n >>= 1
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
generateComponentTrace = (vm: Component | undefined) => {
|
||||
if ((vm as any)._isVue && vm!.$parent) {
|
||||
const tree: any[] = []
|
||||
let currentRecursiveSequence = 0
|
||||
while (vm) {
|
||||
if (tree.length > 0) {
|
||||
const last = tree[tree.length - 1]
|
||||
if (last.constructor === vm.constructor) {
|
||||
currentRecursiveSequence++
|
||||
vm = vm.$parent!
|
||||
continue
|
||||
} else if (currentRecursiveSequence > 0) {
|
||||
tree[tree.length - 1] = [last, currentRecursiveSequence]
|
||||
currentRecursiveSequence = 0
|
||||
}
|
||||
}
|
||||
tree.push(vm)
|
||||
vm = vm.$parent!
|
||||
}
|
||||
return (
|
||||
'\n\nfound in\n\n' +
|
||||
tree
|
||||
.map(
|
||||
(vm, i) =>
|
||||
`${i === 0 ? '---> ' : repeat(' ', 5 + i * 2)}${
|
||||
isArray(vm)
|
||||
? `${formatComponentName(vm[0])}... (${
|
||||
vm[1]
|
||||
} recursive calls)`
|
||||
: formatComponentName(vm)
|
||||
}`
|
||||
)
|
||||
.join('\n')
|
||||
)
|
||||
} else {
|
||||
return `\n\n(found in ${formatComponentName(vm!)})`
|
||||
}
|
||||
}
|
||||
}
|
93
node_modules/vue/src/core/util/env.ts
generated
vendored
Normal file
93
node_modules/vue/src/core/util/env.ts
generated
vendored
Normal file
@ -0,0 +1,93 @@
|
||||
// can we use __proto__?
|
||||
export const hasProto = '__proto__' in {}
|
||||
|
||||
// Browser environment sniffing
|
||||
export const inBrowser = typeof window !== 'undefined'
|
||||
export const UA = inBrowser && window.navigator.userAgent.toLowerCase()
|
||||
export const isIE = UA && /msie|trident/.test(UA)
|
||||
export const isIE9 = UA && UA.indexOf('msie 9.0') > 0
|
||||
export const isEdge = UA && UA.indexOf('edge/') > 0
|
||||
export const isAndroid = UA && UA.indexOf('android') > 0
|
||||
export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)
|
||||
export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge
|
||||
export const isPhantomJS = UA && /phantomjs/.test(UA)
|
||||
export const isFF = UA && UA.match(/firefox\/(\d+)/)
|
||||
|
||||
// Firefox has a "watch" function on Object.prototype...
|
||||
// @ts-expect-error firebox support
|
||||
export const nativeWatch = {}.watch
|
||||
|
||||
export let supportsPassive = false
|
||||
if (inBrowser) {
|
||||
try {
|
||||
const opts = {}
|
||||
Object.defineProperty(opts, 'passive', {
|
||||
get() {
|
||||
/* istanbul ignore next */
|
||||
supportsPassive = true
|
||||
}
|
||||
} as object) // https://github.com/facebook/flow/issues/285
|
||||
window.addEventListener('test-passive', null as any, opts)
|
||||
} catch (e: any) {}
|
||||
}
|
||||
|
||||
// this needs to be lazy-evaled because vue may be required before
|
||||
// vue-server-renderer can set VUE_ENV
|
||||
let _isServer
|
||||
export const isServerRendering = () => {
|
||||
if (_isServer === undefined) {
|
||||
/* istanbul ignore if */
|
||||
if (!inBrowser && typeof global !== 'undefined') {
|
||||
// detect presence of vue-server-renderer and avoid
|
||||
// Webpack shimming the process
|
||||
_isServer =
|
||||
global['process'] && global['process'].env.VUE_ENV === 'server'
|
||||
} else {
|
||||
_isServer = false
|
||||
}
|
||||
}
|
||||
return _isServer
|
||||
}
|
||||
|
||||
// detect devtools
|
||||
export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__
|
||||
|
||||
/* istanbul ignore next */
|
||||
export function isNative(Ctor: any): boolean {
|
||||
return typeof Ctor === 'function' && /native code/.test(Ctor.toString())
|
||||
}
|
||||
|
||||
export const hasSymbol =
|
||||
typeof Symbol !== 'undefined' &&
|
||||
isNative(Symbol) &&
|
||||
typeof Reflect !== 'undefined' &&
|
||||
isNative(Reflect.ownKeys)
|
||||
|
||||
let _Set // $flow-disable-line
|
||||
/* istanbul ignore if */ if (typeof Set !== 'undefined' && isNative(Set)) {
|
||||
// use native Set when available.
|
||||
_Set = Set
|
||||
} else {
|
||||
// a non-standard Set polyfill that only works with primitive keys.
|
||||
_Set = class Set implements SimpleSet {
|
||||
set: Record<string, boolean> = Object.create(null)
|
||||
|
||||
has(key: string | number) {
|
||||
return this.set[key] === true
|
||||
}
|
||||
add(key: string | number) {
|
||||
this.set[key] = true
|
||||
}
|
||||
clear() {
|
||||
this.set = Object.create(null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export interface SimpleSet {
|
||||
has(key: string | number): boolean
|
||||
add(key: string | number): any
|
||||
clear(): void
|
||||
}
|
||||
|
||||
export { _Set }
|
81
node_modules/vue/src/core/util/error.ts
generated
vendored
Normal file
81
node_modules/vue/src/core/util/error.ts
generated
vendored
Normal file
@ -0,0 +1,81 @@
|
||||
import config from '../config'
|
||||
import { warn } from './debug'
|
||||
import { inBrowser } from './env'
|
||||
import { isPromise } from 'shared/util'
|
||||
import { pushTarget, popTarget } from '../observer/dep'
|
||||
|
||||
export function handleError(err: Error, vm: any, info: string) {
|
||||
// Deactivate deps tracking while processing error handler to avoid possible infinite rendering.
|
||||
// See: https://github.com/vuejs/vuex/issues/1505
|
||||
pushTarget()
|
||||
try {
|
||||
if (vm) {
|
||||
let cur = vm
|
||||
while ((cur = cur.$parent)) {
|
||||
const hooks = cur.$options.errorCaptured
|
||||
if (hooks) {
|
||||
for (let i = 0; i < hooks.length; i++) {
|
||||
try {
|
||||
const capture = hooks[i].call(cur, err, vm, info) === false
|
||||
if (capture) return
|
||||
} catch (e: any) {
|
||||
globalHandleError(e, cur, 'errorCaptured hook')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
globalHandleError(err, vm, info)
|
||||
} finally {
|
||||
popTarget()
|
||||
}
|
||||
}
|
||||
|
||||
export function invokeWithErrorHandling(
|
||||
handler: Function,
|
||||
context: any,
|
||||
args: null | any[],
|
||||
vm: any,
|
||||
info: string
|
||||
) {
|
||||
let res
|
||||
try {
|
||||
res = args ? handler.apply(context, args) : handler.call(context)
|
||||
if (res && !res._isVue && isPromise(res) && !(res as any)._handled) {
|
||||
res.catch(e => handleError(e, vm, info + ` (Promise/async)`))
|
||||
// issue #9511
|
||||
// avoid catch triggering multiple times when nested calls
|
||||
;(res as any)._handled = true
|
||||
}
|
||||
} catch (e: any) {
|
||||
handleError(e, vm, info)
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
function globalHandleError(err, vm, info) {
|
||||
if (config.errorHandler) {
|
||||
try {
|
||||
return config.errorHandler.call(null, err, vm, info)
|
||||
} catch (e: any) {
|
||||
// if the user intentionally throws the original error in the handler,
|
||||
// do not log it twice
|
||||
if (e !== err) {
|
||||
logError(e, null, 'config.errorHandler')
|
||||
}
|
||||
}
|
||||
}
|
||||
logError(err, vm, info)
|
||||
}
|
||||
|
||||
function logError(err, vm, info) {
|
||||
if (__DEV__) {
|
||||
warn(`Error in ${info}: "${err.toString()}"`, vm)
|
||||
}
|
||||
/* istanbul ignore else */
|
||||
if (inBrowser && typeof console !== 'undefined') {
|
||||
console.error(err)
|
||||
} else {
|
||||
throw err
|
||||
}
|
||||
}
|
9
node_modules/vue/src/core/util/index.ts
generated
vendored
Normal file
9
node_modules/vue/src/core/util/index.ts
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
export * from 'shared/util'
|
||||
export * from './lang'
|
||||
export * from './env'
|
||||
export * from './options'
|
||||
export * from './debug'
|
||||
export * from './props'
|
||||
export * from './error'
|
||||
export * from './next-tick'
|
||||
export { defineReactive } from '../observer/index'
|
45
node_modules/vue/src/core/util/lang.ts
generated
vendored
Normal file
45
node_modules/vue/src/core/util/lang.ts
generated
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
/**
|
||||
* unicode letters used for parsing html tags, component names and property paths.
|
||||
* using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname
|
||||
* skipping \u10000-\uEFFFF due to it freezing up PhantomJS
|
||||
*/
|
||||
export const unicodeRegExp =
|
||||
/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/
|
||||
|
||||
/**
|
||||
* Check if a string starts with $ or _
|
||||
*/
|
||||
export function isReserved(str: string): boolean {
|
||||
const c = (str + '').charCodeAt(0)
|
||||
return c === 0x24 || c === 0x5f
|
||||
}
|
||||
|
||||
/**
|
||||
* Define a property.
|
||||
*/
|
||||
export function def(obj: Object, key: string, val: any, enumerable?: boolean) {
|
||||
Object.defineProperty(obj, key, {
|
||||
value: val,
|
||||
enumerable: !!enumerable,
|
||||
writable: true,
|
||||
configurable: true
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse simple path.
|
||||
*/
|
||||
const bailRE = new RegExp(`[^${unicodeRegExp.source}.$_\\d]`)
|
||||
export function parsePath(path: string): any {
|
||||
if (bailRE.test(path)) {
|
||||
return
|
||||
}
|
||||
const segments = path.split('.')
|
||||
return function (obj) {
|
||||
for (let i = 0; i < segments.length; i++) {
|
||||
if (!obj) return
|
||||
obj = obj[segments[i]]
|
||||
}
|
||||
return obj
|
||||
}
|
||||
}
|
117
node_modules/vue/src/core/util/next-tick.ts
generated
vendored
Normal file
117
node_modules/vue/src/core/util/next-tick.ts
generated
vendored
Normal file
@ -0,0 +1,117 @@
|
||||
/* globals MutationObserver */
|
||||
|
||||
import { noop } from 'shared/util'
|
||||
import { handleError } from './error'
|
||||
import { isIE, isIOS, isNative } from './env'
|
||||
|
||||
export let isUsingMicroTask = false
|
||||
|
||||
const callbacks: Array<Function> = []
|
||||
let pending = false
|
||||
|
||||
function flushCallbacks() {
|
||||
pending = false
|
||||
const copies = callbacks.slice(0)
|
||||
callbacks.length = 0
|
||||
for (let i = 0; i < copies.length; i++) {
|
||||
copies[i]()
|
||||
}
|
||||
}
|
||||
|
||||
// Here we have async deferring wrappers using microtasks.
|
||||
// In 2.5 we used (macro) tasks (in combination with microtasks).
|
||||
// However, it has subtle problems when state is changed right before repaint
|
||||
// (e.g. #6813, out-in transitions).
|
||||
// Also, using (macro) tasks in event handler would cause some weird behaviors
|
||||
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
|
||||
// So we now use microtasks everywhere, again.
|
||||
// A major drawback of this tradeoff is that there are some scenarios
|
||||
// where microtasks have too high a priority and fire in between supposedly
|
||||
// sequential events (e.g. #4521, #6690, which have workarounds)
|
||||
// or even between bubbling of the same event (#6566).
|
||||
let timerFunc
|
||||
|
||||
// The nextTick behavior leverages the microtask queue, which can be accessed
|
||||
// via either native Promise.then or MutationObserver.
|
||||
// MutationObserver has wider support, however it is seriously bugged in
|
||||
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
|
||||
// completely stops working after triggering a few times... so, if native
|
||||
// Promise is available, we will use it:
|
||||
/* istanbul ignore next, $flow-disable-line */
|
||||
if (typeof Promise !== 'undefined' && isNative(Promise)) {
|
||||
const p = Promise.resolve()
|
||||
timerFunc = () => {
|
||||
p.then(flushCallbacks)
|
||||
// In problematic UIWebViews, Promise.then doesn't completely break, but
|
||||
// it can get stuck in a weird state where callbacks are pushed into the
|
||||
// microtask queue but the queue isn't being flushed, until the browser
|
||||
// needs to do some other work, e.g. handle a timer. Therefore we can
|
||||
// "force" the microtask queue to be flushed by adding an empty timer.
|
||||
if (isIOS) setTimeout(noop)
|
||||
}
|
||||
isUsingMicroTask = true
|
||||
} else if (
|
||||
!isIE &&
|
||||
typeof MutationObserver !== 'undefined' &&
|
||||
(isNative(MutationObserver) ||
|
||||
// PhantomJS and iOS 7.x
|
||||
MutationObserver.toString() === '[object MutationObserverConstructor]')
|
||||
) {
|
||||
// Use MutationObserver where native Promise is not available,
|
||||
// e.g. PhantomJS, iOS7, Android 4.4
|
||||
// (#6466 MutationObserver is unreliable in IE11)
|
||||
let counter = 1
|
||||
const observer = new MutationObserver(flushCallbacks)
|
||||
const textNode = document.createTextNode(String(counter))
|
||||
observer.observe(textNode, {
|
||||
characterData: true
|
||||
})
|
||||
timerFunc = () => {
|
||||
counter = (counter + 1) % 2
|
||||
textNode.data = String(counter)
|
||||
}
|
||||
isUsingMicroTask = true
|
||||
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
|
||||
// Fallback to setImmediate.
|
||||
// Technically it leverages the (macro) task queue,
|
||||
// but it is still a better choice than setTimeout.
|
||||
timerFunc = () => {
|
||||
setImmediate(flushCallbacks)
|
||||
}
|
||||
} else {
|
||||
// Fallback to setTimeout.
|
||||
timerFunc = () => {
|
||||
setTimeout(flushCallbacks, 0)
|
||||
}
|
||||
}
|
||||
|
||||
export function nextTick(): Promise<void>
|
||||
export function nextTick<T>(this: T, cb: (this: T, ...args: any[]) => any): void
|
||||
export function nextTick<T>(cb: (this: T, ...args: any[]) => any, ctx: T): void
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export function nextTick(cb?: (...args: any[]) => any, ctx?: object) {
|
||||
let _resolve
|
||||
callbacks.push(() => {
|
||||
if (cb) {
|
||||
try {
|
||||
cb.call(ctx)
|
||||
} catch (e: any) {
|
||||
handleError(e, ctx, 'nextTick')
|
||||
}
|
||||
} else if (_resolve) {
|
||||
_resolve(ctx)
|
||||
}
|
||||
})
|
||||
if (!pending) {
|
||||
pending = true
|
||||
timerFunc()
|
||||
}
|
||||
// $flow-disable-line
|
||||
if (!cb && typeof Promise !== 'undefined') {
|
||||
return new Promise(resolve => {
|
||||
_resolve = resolve
|
||||
})
|
||||
}
|
||||
}
|
489
node_modules/vue/src/core/util/options.ts
generated
vendored
Normal file
489
node_modules/vue/src/core/util/options.ts
generated
vendored
Normal file
@ -0,0 +1,489 @@
|
||||
import config from '../config'
|
||||
import { warn } from './debug'
|
||||
import { set } from '../observer/index'
|
||||
import { unicodeRegExp } from './lang'
|
||||
import { nativeWatch, hasSymbol } from './env'
|
||||
import { isArray, isFunction } from 'shared/util'
|
||||
|
||||
import { ASSET_TYPES, LIFECYCLE_HOOKS } from 'shared/constants'
|
||||
|
||||
import {
|
||||
extend,
|
||||
hasOwn,
|
||||
camelize,
|
||||
toRawType,
|
||||
capitalize,
|
||||
isBuiltInTag,
|
||||
isPlainObject
|
||||
} from 'shared/util'
|
||||
import type { Component } from 'types/component'
|
||||
import type { ComponentOptions } from 'types/options'
|
||||
|
||||
/**
|
||||
* Option overwriting strategies are functions that handle
|
||||
* how to merge a parent option value and a child option
|
||||
* value into the final value.
|
||||
*/
|
||||
const strats = config.optionMergeStrategies
|
||||
|
||||
/**
|
||||
* Options with restrictions
|
||||
*/
|
||||
if (__DEV__) {
|
||||
strats.el = strats.propsData = function (
|
||||
parent: any,
|
||||
child: any,
|
||||
vm: any,
|
||||
key: any
|
||||
) {
|
||||
if (!vm) {
|
||||
warn(
|
||||
`option "${key}" can only be used during instance ` +
|
||||
'creation with the `new` keyword.'
|
||||
)
|
||||
}
|
||||
return defaultStrat(parent, child)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper that recursively merges two data objects together.
|
||||
*/
|
||||
function mergeData(
|
||||
to: Record<string | symbol, any>,
|
||||
from: Record<string | symbol, any> | null,
|
||||
recursive = true
|
||||
): Record<PropertyKey, any> {
|
||||
if (!from) return to
|
||||
let key, toVal, fromVal
|
||||
|
||||
const keys = hasSymbol
|
||||
? (Reflect.ownKeys(from) as string[])
|
||||
: Object.keys(from)
|
||||
|
||||
for (let i = 0; i < keys.length; i++) {
|
||||
key = keys[i]
|
||||
// in case the object is already observed...
|
||||
if (key === '__ob__') continue
|
||||
toVal = to[key]
|
||||
fromVal = from[key]
|
||||
if (!recursive || !hasOwn(to, key)) {
|
||||
set(to, key, fromVal)
|
||||
} else if (
|
||||
toVal !== fromVal &&
|
||||
isPlainObject(toVal) &&
|
||||
isPlainObject(fromVal)
|
||||
) {
|
||||
mergeData(toVal, fromVal)
|
||||
}
|
||||
}
|
||||
return to
|
||||
}
|
||||
|
||||
/**
|
||||
* Data
|
||||
*/
|
||||
export function mergeDataOrFn(
|
||||
parentVal: any,
|
||||
childVal: any,
|
||||
vm?: Component
|
||||
): Function | null {
|
||||
if (!vm) {
|
||||
// in a Vue.extend merge, both should be functions
|
||||
if (!childVal) {
|
||||
return parentVal
|
||||
}
|
||||
if (!parentVal) {
|
||||
return childVal
|
||||
}
|
||||
// when parentVal & childVal are both present,
|
||||
// we need to return a function that returns the
|
||||
// merged result of both functions... no need to
|
||||
// check if parentVal is a function here because
|
||||
// it has to be a function to pass previous merges.
|
||||
return function mergedDataFn() {
|
||||
return mergeData(
|
||||
isFunction(childVal) ? childVal.call(this, this) : childVal,
|
||||
isFunction(parentVal) ? parentVal.call(this, this) : parentVal
|
||||
)
|
||||
}
|
||||
} else {
|
||||
return function mergedInstanceDataFn() {
|
||||
// instance merge
|
||||
const instanceData = isFunction(childVal)
|
||||
? childVal.call(vm, vm)
|
||||
: childVal
|
||||
const defaultData = isFunction(parentVal)
|
||||
? parentVal.call(vm, vm)
|
||||
: parentVal
|
||||
if (instanceData) {
|
||||
return mergeData(instanceData, defaultData)
|
||||
} else {
|
||||
return defaultData
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
strats.data = function (
|
||||
parentVal: any,
|
||||
childVal: any,
|
||||
vm?: Component
|
||||
): Function | null {
|
||||
if (!vm) {
|
||||
if (childVal && typeof childVal !== 'function') {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
'The "data" option should be a function ' +
|
||||
'that returns a per-instance value in component ' +
|
||||
'definitions.',
|
||||
vm
|
||||
)
|
||||
|
||||
return parentVal
|
||||
}
|
||||
return mergeDataOrFn(parentVal, childVal)
|
||||
}
|
||||
|
||||
return mergeDataOrFn(parentVal, childVal, vm)
|
||||
}
|
||||
|
||||
/**
|
||||
* Hooks and props are merged as arrays.
|
||||
*/
|
||||
export function mergeLifecycleHook(
|
||||
parentVal: Array<Function> | null,
|
||||
childVal: Function | Array<Function> | null
|
||||
): Array<Function> | null {
|
||||
const res = childVal
|
||||
? parentVal
|
||||
? parentVal.concat(childVal)
|
||||
: isArray(childVal)
|
||||
? childVal
|
||||
: [childVal]
|
||||
: parentVal
|
||||
return res ? dedupeHooks(res) : res
|
||||
}
|
||||
|
||||
function dedupeHooks(hooks: any) {
|
||||
const res: Array<any> = []
|
||||
for (let i = 0; i < hooks.length; i++) {
|
||||
if (res.indexOf(hooks[i]) === -1) {
|
||||
res.push(hooks[i])
|
||||
}
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
LIFECYCLE_HOOKS.forEach(hook => {
|
||||
strats[hook] = mergeLifecycleHook
|
||||
})
|
||||
|
||||
/**
|
||||
* Assets
|
||||
*
|
||||
* When a vm is present (instance creation), we need to do
|
||||
* a three-way merge between constructor options, instance
|
||||
* options and parent options.
|
||||
*/
|
||||
function mergeAssets(
|
||||
parentVal: Object | null,
|
||||
childVal: Object | null,
|
||||
vm: Component | null,
|
||||
key: string
|
||||
): Object {
|
||||
const res = Object.create(parentVal || null)
|
||||
if (childVal) {
|
||||
__DEV__ && assertObjectType(key, childVal, vm)
|
||||
return extend(res, childVal)
|
||||
} else {
|
||||
return res
|
||||
}
|
||||
}
|
||||
|
||||
ASSET_TYPES.forEach(function (type) {
|
||||
strats[type + 's'] = mergeAssets
|
||||
})
|
||||
|
||||
/**
|
||||
* Watchers.
|
||||
*
|
||||
* Watchers hashes should not overwrite one
|
||||
* another, so we merge them as arrays.
|
||||
*/
|
||||
strats.watch = function (
|
||||
parentVal: Record<string, any> | null,
|
||||
childVal: Record<string, any> | null,
|
||||
vm: Component | null,
|
||||
key: string
|
||||
): Object | null {
|
||||
// work around Firefox's Object.prototype.watch...
|
||||
//@ts-expect-error work around
|
||||
if (parentVal === nativeWatch) parentVal = undefined
|
||||
//@ts-expect-error work around
|
||||
if (childVal === nativeWatch) childVal = undefined
|
||||
/* istanbul ignore if */
|
||||
if (!childVal) return Object.create(parentVal || null)
|
||||
if (__DEV__) {
|
||||
assertObjectType(key, childVal, vm)
|
||||
}
|
||||
if (!parentVal) return childVal
|
||||
const ret: Record<string, any> = {}
|
||||
extend(ret, parentVal)
|
||||
for (const key in childVal) {
|
||||
let parent = ret[key]
|
||||
const child = childVal[key]
|
||||
if (parent && !isArray(parent)) {
|
||||
parent = [parent]
|
||||
}
|
||||
ret[key] = parent ? parent.concat(child) : isArray(child) ? child : [child]
|
||||
}
|
||||
return ret
|
||||
}
|
||||
|
||||
/**
|
||||
* Other object hashes.
|
||||
*/
|
||||
strats.props =
|
||||
strats.methods =
|
||||
strats.inject =
|
||||
strats.computed =
|
||||
function (
|
||||
parentVal: Object | null,
|
||||
childVal: Object | null,
|
||||
vm: Component | null,
|
||||
key: string
|
||||
): Object | null {
|
||||
if (childVal && __DEV__) {
|
||||
assertObjectType(key, childVal, vm)
|
||||
}
|
||||
if (!parentVal) return childVal
|
||||
const ret = Object.create(null)
|
||||
extend(ret, parentVal)
|
||||
if (childVal) extend(ret, childVal)
|
||||
return ret
|
||||
}
|
||||
|
||||
strats.provide = function (parentVal: Object | null, childVal: Object | null) {
|
||||
if (!parentVal) return childVal
|
||||
return function () {
|
||||
const ret = Object.create(null)
|
||||
mergeData(ret, isFunction(parentVal) ? parentVal.call(this) : parentVal)
|
||||
if (childVal) {
|
||||
mergeData(
|
||||
ret,
|
||||
isFunction(childVal) ? childVal.call(this) : childVal,
|
||||
false // non-recursive
|
||||
)
|
||||
}
|
||||
return ret
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Default strategy.
|
||||
*/
|
||||
const defaultStrat = function (parentVal: any, childVal: any): any {
|
||||
return childVal === undefined ? parentVal : childVal
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate component names
|
||||
*/
|
||||
function checkComponents(options: Record<string, any>) {
|
||||
for (const key in options.components) {
|
||||
validateComponentName(key)
|
||||
}
|
||||
}
|
||||
|
||||
export function validateComponentName(name: string) {
|
||||
if (
|
||||
!new RegExp(`^[a-zA-Z][\\-\\.0-9_${unicodeRegExp.source}]*$`).test(name)
|
||||
) {
|
||||
warn(
|
||||
'Invalid component name: "' +
|
||||
name +
|
||||
'". Component names ' +
|
||||
'should conform to valid custom element name in html5 specification.'
|
||||
)
|
||||
}
|
||||
if (isBuiltInTag(name) || config.isReservedTag(name)) {
|
||||
warn(
|
||||
'Do not use built-in or reserved HTML elements as component ' +
|
||||
'id: ' +
|
||||
name
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensure all props option syntax are normalized into the
|
||||
* Object-based format.
|
||||
*/
|
||||
function normalizeProps(options: Record<string, any>, vm?: Component | null) {
|
||||
const props = options.props
|
||||
if (!props) return
|
||||
const res: Record<string, any> = {}
|
||||
let i, val, name
|
||||
if (isArray(props)) {
|
||||
i = props.length
|
||||
while (i--) {
|
||||
val = props[i]
|
||||
if (typeof val === 'string') {
|
||||
name = camelize(val)
|
||||
res[name] = { type: null }
|
||||
} else if (__DEV__) {
|
||||
warn('props must be strings when using array syntax.')
|
||||
}
|
||||
}
|
||||
} else if (isPlainObject(props)) {
|
||||
for (const key in props) {
|
||||
val = props[key]
|
||||
name = camelize(key)
|
||||
res[name] = isPlainObject(val) ? val : { type: val }
|
||||
}
|
||||
} else if (__DEV__) {
|
||||
warn(
|
||||
`Invalid value for option "props": expected an Array or an Object, ` +
|
||||
`but got ${toRawType(props)}.`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
options.props = res
|
||||
}
|
||||
|
||||
/**
|
||||
* Normalize all injections into Object-based format
|
||||
*/
|
||||
function normalizeInject(options: Record<string, any>, vm?: Component | null) {
|
||||
const inject = options.inject
|
||||
if (!inject) return
|
||||
const normalized: Record<string, any> = (options.inject = {})
|
||||
if (isArray(inject)) {
|
||||
for (let i = 0; i < inject.length; i++) {
|
||||
normalized[inject[i]] = { from: inject[i] }
|
||||
}
|
||||
} else if (isPlainObject(inject)) {
|
||||
for (const key in inject) {
|
||||
const val = inject[key]
|
||||
normalized[key] = isPlainObject(val)
|
||||
? extend({ from: key }, val)
|
||||
: { from: val }
|
||||
}
|
||||
} else if (__DEV__) {
|
||||
warn(
|
||||
`Invalid value for option "inject": expected an Array or an Object, ` +
|
||||
`but got ${toRawType(inject)}.`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Normalize raw function directives into object format.
|
||||
*/
|
||||
function normalizeDirectives(options: Record<string, any>) {
|
||||
const dirs = options.directives
|
||||
if (dirs) {
|
||||
for (const key in dirs) {
|
||||
const def = dirs[key]
|
||||
if (isFunction(def)) {
|
||||
dirs[key] = { bind: def, update: def }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function assertObjectType(name: string, value: any, vm: Component | null) {
|
||||
if (!isPlainObject(value)) {
|
||||
warn(
|
||||
`Invalid value for option "${name}": expected an Object, ` +
|
||||
`but got ${toRawType(value)}.`,
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Merge two option objects into a new one.
|
||||
* Core utility used in both instantiation and inheritance.
|
||||
*/
|
||||
export function mergeOptions(
|
||||
parent: Record<string, any>,
|
||||
child: Record<string, any>,
|
||||
vm?: Component | null
|
||||
): ComponentOptions {
|
||||
if (__DEV__) {
|
||||
checkComponents(child)
|
||||
}
|
||||
|
||||
if (isFunction(child)) {
|
||||
// @ts-expect-error
|
||||
child = child.options
|
||||
}
|
||||
|
||||
normalizeProps(child, vm)
|
||||
normalizeInject(child, vm)
|
||||
normalizeDirectives(child)
|
||||
|
||||
// Apply extends and mixins on the child options,
|
||||
// but only if it is a raw options object that isn't
|
||||
// the result of another mergeOptions call.
|
||||
// Only merged options has the _base property.
|
||||
if (!child._base) {
|
||||
if (child.extends) {
|
||||
parent = mergeOptions(parent, child.extends, vm)
|
||||
}
|
||||
if (child.mixins) {
|
||||
for (let i = 0, l = child.mixins.length; i < l; i++) {
|
||||
parent = mergeOptions(parent, child.mixins[i], vm)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const options: ComponentOptions = {} as any
|
||||
let key
|
||||
for (key in parent) {
|
||||
mergeField(key)
|
||||
}
|
||||
for (key in child) {
|
||||
if (!hasOwn(parent, key)) {
|
||||
mergeField(key)
|
||||
}
|
||||
}
|
||||
function mergeField(key: any) {
|
||||
const strat = strats[key] || defaultStrat
|
||||
options[key] = strat(parent[key], child[key], vm, key)
|
||||
}
|
||||
return options
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolve an asset.
|
||||
* This function is used because child instances need access
|
||||
* to assets defined in its ancestor chain.
|
||||
*/
|
||||
export function resolveAsset(
|
||||
options: Record<string, any>,
|
||||
type: string,
|
||||
id: string,
|
||||
warnMissing?: boolean
|
||||
): any {
|
||||
/* istanbul ignore if */
|
||||
if (typeof id !== 'string') {
|
||||
return
|
||||
}
|
||||
const assets = options[type]
|
||||
// check local registration variations first
|
||||
if (hasOwn(assets, id)) return assets[id]
|
||||
const camelizedId = camelize(id)
|
||||
if (hasOwn(assets, camelizedId)) return assets[camelizedId]
|
||||
const PascalCaseId = capitalize(camelizedId)
|
||||
if (hasOwn(assets, PascalCaseId)) return assets[PascalCaseId]
|
||||
// fallback to prototype chain
|
||||
const res = assets[id] || assets[camelizedId] || assets[PascalCaseId]
|
||||
if (__DEV__ && warnMissing && !res) {
|
||||
warn('Failed to resolve ' + type.slice(0, -1) + ': ' + id)
|
||||
}
|
||||
return res
|
||||
}
|
28
node_modules/vue/src/core/util/perf.ts
generated
vendored
Normal file
28
node_modules/vue/src/core/util/perf.ts
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
import { inBrowser } from './env'
|
||||
|
||||
export let mark
|
||||
export let measure
|
||||
|
||||
if (__DEV__) {
|
||||
const perf = inBrowser && window.performance
|
||||
/* istanbul ignore if */
|
||||
if (
|
||||
perf &&
|
||||
// @ts-ignore
|
||||
perf.mark &&
|
||||
// @ts-ignore
|
||||
perf.measure &&
|
||||
// @ts-ignore
|
||||
perf.clearMarks &&
|
||||
// @ts-ignore
|
||||
perf.clearMeasures
|
||||
) {
|
||||
mark = tag => perf.mark(tag)
|
||||
measure = (name, startTag, endTag) => {
|
||||
perf.measure(name, startTag, endTag)
|
||||
perf.clearMarks(startTag)
|
||||
perf.clearMarks(endTag)
|
||||
// perf.clearMeasures(name)
|
||||
}
|
||||
}
|
||||
}
|
254
node_modules/vue/src/core/util/props.ts
generated
vendored
Normal file
254
node_modules/vue/src/core/util/props.ts
generated
vendored
Normal file
@ -0,0 +1,254 @@
|
||||
import { warn } from './debug'
|
||||
import { observe, toggleObserving, shouldObserve } from '../observer/index'
|
||||
import {
|
||||
hasOwn,
|
||||
isArray,
|
||||
isObject,
|
||||
isFunction,
|
||||
toRawType,
|
||||
hyphenate,
|
||||
capitalize,
|
||||
isPlainObject
|
||||
} from 'shared/util'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
type PropOptions = {
|
||||
type: Function | Array<Function> | null
|
||||
default: any
|
||||
required?: boolean
|
||||
validator?: Function
|
||||
}
|
||||
|
||||
export function validateProp(
|
||||
key: string,
|
||||
propOptions: Object,
|
||||
propsData: Object,
|
||||
vm?: Component
|
||||
): any {
|
||||
const prop = propOptions[key]
|
||||
const absent = !hasOwn(propsData, key)
|
||||
let value = propsData[key]
|
||||
// boolean casting
|
||||
const booleanIndex = getTypeIndex(Boolean, prop.type)
|
||||
if (booleanIndex > -1) {
|
||||
if (absent && !hasOwn(prop, 'default')) {
|
||||
value = false
|
||||
} else if (value === '' || value === hyphenate(key)) {
|
||||
// only cast empty string / same name to boolean if
|
||||
// boolean has higher priority
|
||||
const stringIndex = getTypeIndex(String, prop.type)
|
||||
if (stringIndex < 0 || booleanIndex < stringIndex) {
|
||||
value = true
|
||||
}
|
||||
}
|
||||
}
|
||||
// check default value
|
||||
if (value === undefined) {
|
||||
value = getPropDefaultValue(vm, prop, key)
|
||||
// since the default value is a fresh copy,
|
||||
// make sure to observe it.
|
||||
const prevShouldObserve = shouldObserve
|
||||
toggleObserving(true)
|
||||
observe(value)
|
||||
toggleObserving(prevShouldObserve)
|
||||
}
|
||||
if (__DEV__) {
|
||||
assertProp(prop, key, value, vm, absent)
|
||||
}
|
||||
return value
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the default value of a prop.
|
||||
*/
|
||||
function getPropDefaultValue(
|
||||
vm: Component | undefined,
|
||||
prop: PropOptions,
|
||||
key: string
|
||||
): any {
|
||||
// no default, return undefined
|
||||
if (!hasOwn(prop, 'default')) {
|
||||
return undefined
|
||||
}
|
||||
const def = prop.default
|
||||
// warn against non-factory defaults for Object & Array
|
||||
if (__DEV__ && isObject(def)) {
|
||||
warn(
|
||||
'Invalid default value for prop "' +
|
||||
key +
|
||||
'": ' +
|
||||
'Props with type Object/Array must use a factory function ' +
|
||||
'to return the default value.',
|
||||
vm
|
||||
)
|
||||
}
|
||||
// the raw prop value was also undefined from previous render,
|
||||
// return previous default value to avoid unnecessary watcher trigger
|
||||
if (
|
||||
vm &&
|
||||
vm.$options.propsData &&
|
||||
vm.$options.propsData[key] === undefined &&
|
||||
vm._props[key] !== undefined
|
||||
) {
|
||||
return vm._props[key]
|
||||
}
|
||||
// call factory function for non-Function types
|
||||
// a value is Function if its prototype is function even across different execution context
|
||||
return isFunction(def) && getType(prop.type) !== 'Function'
|
||||
? def.call(vm)
|
||||
: def
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert whether a prop is valid.
|
||||
*/
|
||||
function assertProp(
|
||||
prop: PropOptions,
|
||||
name: string,
|
||||
value: any,
|
||||
vm?: Component,
|
||||
absent?: boolean
|
||||
) {
|
||||
if (prop.required && absent) {
|
||||
warn('Missing required prop: "' + name + '"', vm)
|
||||
return
|
||||
}
|
||||
if (value == null && !prop.required) {
|
||||
return
|
||||
}
|
||||
let type = prop.type
|
||||
let valid = !type || (type as any) === true
|
||||
const expectedTypes: string[] = []
|
||||
if (type) {
|
||||
if (!isArray(type)) {
|
||||
type = [type]
|
||||
}
|
||||
for (let i = 0; i < type.length && !valid; i++) {
|
||||
const assertedType = assertType(value, type[i], vm)
|
||||
expectedTypes.push(assertedType.expectedType || '')
|
||||
valid = assertedType.valid
|
||||
}
|
||||
}
|
||||
|
||||
const haveExpectedTypes = expectedTypes.some(t => t)
|
||||
if (!valid && haveExpectedTypes) {
|
||||
warn(getInvalidTypeMessage(name, value, expectedTypes), vm)
|
||||
return
|
||||
}
|
||||
const validator = prop.validator
|
||||
if (validator) {
|
||||
if (!validator(value)) {
|
||||
warn(
|
||||
'Invalid prop: custom validator check failed for prop "' + name + '".',
|
||||
vm
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const simpleCheckRE = /^(String|Number|Boolean|Function|Symbol|BigInt)$/
|
||||
|
||||
function assertType(
|
||||
value: any,
|
||||
type: Function,
|
||||
vm?: Component
|
||||
): {
|
||||
valid: boolean
|
||||
expectedType: string
|
||||
} {
|
||||
let valid
|
||||
const expectedType = getType(type)
|
||||
if (simpleCheckRE.test(expectedType)) {
|
||||
const t = typeof value
|
||||
valid = t === expectedType.toLowerCase()
|
||||
// for primitive wrapper objects
|
||||
if (!valid && t === 'object') {
|
||||
valid = value instanceof type
|
||||
}
|
||||
} else if (expectedType === 'Object') {
|
||||
valid = isPlainObject(value)
|
||||
} else if (expectedType === 'Array') {
|
||||
valid = isArray(value)
|
||||
} else {
|
||||
try {
|
||||
valid = value instanceof type
|
||||
} catch (e: any) {
|
||||
warn('Invalid prop type: "' + String(type) + '" is not a constructor', vm)
|
||||
valid = false
|
||||
}
|
||||
}
|
||||
return {
|
||||
valid,
|
||||
expectedType
|
||||
}
|
||||
}
|
||||
|
||||
const functionTypeCheckRE = /^\s*function (\w+)/
|
||||
|
||||
/**
|
||||
* Use function string name to check built-in types,
|
||||
* because a simple equality check will fail when running
|
||||
* across different vms / iframes.
|
||||
*/
|
||||
function getType(fn) {
|
||||
const match = fn && fn.toString().match(functionTypeCheckRE)
|
||||
return match ? match[1] : ''
|
||||
}
|
||||
|
||||
function isSameType(a, b) {
|
||||
return getType(a) === getType(b)
|
||||
}
|
||||
|
||||
function getTypeIndex(type, expectedTypes): number {
|
||||
if (!isArray(expectedTypes)) {
|
||||
return isSameType(expectedTypes, type) ? 0 : -1
|
||||
}
|
||||
for (let i = 0, len = expectedTypes.length; i < len; i++) {
|
||||
if (isSameType(expectedTypes[i], type)) {
|
||||
return i
|
||||
}
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
function getInvalidTypeMessage(name, value, expectedTypes) {
|
||||
let message =
|
||||
`Invalid prop: type check failed for prop "${name}".` +
|
||||
` Expected ${expectedTypes.map(capitalize).join(', ')}`
|
||||
const expectedType = expectedTypes[0]
|
||||
const receivedType = toRawType(value)
|
||||
// check if we need to specify expected value
|
||||
if (
|
||||
expectedTypes.length === 1 &&
|
||||
isExplicable(expectedType) &&
|
||||
isExplicable(typeof value) &&
|
||||
!isBoolean(expectedType, receivedType)
|
||||
) {
|
||||
message += ` with value ${styleValue(value, expectedType)}`
|
||||
}
|
||||
message += `, got ${receivedType} `
|
||||
// check if we need to specify received value
|
||||
if (isExplicable(receivedType)) {
|
||||
message += `with value ${styleValue(value, receivedType)}.`
|
||||
}
|
||||
return message
|
||||
}
|
||||
|
||||
function styleValue(value, type) {
|
||||
if (type === 'String') {
|
||||
return `"${value}"`
|
||||
} else if (type === 'Number') {
|
||||
return `${Number(value)}`
|
||||
} else {
|
||||
return `${value}`
|
||||
}
|
||||
}
|
||||
|
||||
const EXPLICABLE_TYPES = ['string', 'number', 'boolean']
|
||||
function isExplicable(value) {
|
||||
return EXPLICABLE_TYPES.some(elem => value.toLowerCase() === elem)
|
||||
}
|
||||
|
||||
function isBoolean(...args) {
|
||||
return args.some(elem => elem.toLowerCase() === 'boolean')
|
||||
}
|
275
node_modules/vue/src/core/vdom/create-component.ts
generated
vendored
Normal file
275
node_modules/vue/src/core/vdom/create-component.ts
generated
vendored
Normal file
@ -0,0 +1,275 @@
|
||||
import VNode from './vnode'
|
||||
import { isArray } from 'core/util'
|
||||
import { resolveConstructorOptions } from 'core/instance/init'
|
||||
import { queueActivatedComponent } from 'core/observer/scheduler'
|
||||
import { createFunctionalComponent } from './create-functional-component'
|
||||
|
||||
import { warn, isDef, isUndef, isTrue, isObject } from '../util/index'
|
||||
|
||||
import {
|
||||
resolveAsyncComponent,
|
||||
createAsyncPlaceholder,
|
||||
extractPropsFromVNodeData
|
||||
} from './helpers/index'
|
||||
|
||||
import {
|
||||
callHook,
|
||||
activeInstance,
|
||||
updateChildComponent,
|
||||
activateChildComponent,
|
||||
deactivateChildComponent
|
||||
} from '../instance/lifecycle'
|
||||
|
||||
import type {
|
||||
MountedComponentVNode,
|
||||
VNodeData,
|
||||
VNodeWithData
|
||||
} from 'types/vnode'
|
||||
import type { Component } from 'types/component'
|
||||
import type { ComponentOptions, InternalComponentOptions } from 'types/options'
|
||||
|
||||
export function getComponentName(options: ComponentOptions) {
|
||||
return options.name || options.__name || options._componentTag
|
||||
}
|
||||
|
||||
// inline hooks to be invoked on component VNodes during patch
|
||||
const componentVNodeHooks = {
|
||||
init(vnode: VNodeWithData, hydrating: boolean): boolean | void {
|
||||
if (
|
||||
vnode.componentInstance &&
|
||||
!vnode.componentInstance._isDestroyed &&
|
||||
vnode.data.keepAlive
|
||||
) {
|
||||
// kept-alive components, treat as a patch
|
||||
const mountedNode: any = vnode // work around flow
|
||||
componentVNodeHooks.prepatch(mountedNode, mountedNode)
|
||||
} else {
|
||||
const child = (vnode.componentInstance = createComponentInstanceForVnode(
|
||||
vnode,
|
||||
activeInstance
|
||||
))
|
||||
child.$mount(hydrating ? vnode.elm : undefined, hydrating)
|
||||
}
|
||||
},
|
||||
|
||||
prepatch(oldVnode: MountedComponentVNode, vnode: MountedComponentVNode) {
|
||||
const options = vnode.componentOptions
|
||||
const child = (vnode.componentInstance = oldVnode.componentInstance)
|
||||
updateChildComponent(
|
||||
child,
|
||||
options.propsData, // updated props
|
||||
options.listeners, // updated listeners
|
||||
vnode, // new parent vnode
|
||||
options.children // new children
|
||||
)
|
||||
},
|
||||
|
||||
insert(vnode: MountedComponentVNode) {
|
||||
const { context, componentInstance } = vnode
|
||||
if (!componentInstance._isMounted) {
|
||||
componentInstance._isMounted = true
|
||||
callHook(componentInstance, 'mounted')
|
||||
}
|
||||
if (vnode.data.keepAlive) {
|
||||
if (context._isMounted) {
|
||||
// vue-router#1212
|
||||
// During updates, a kept-alive component's child components may
|
||||
// change, so directly walking the tree here may call activated hooks
|
||||
// on incorrect children. Instead we push them into a queue which will
|
||||
// be processed after the whole patch process ended.
|
||||
queueActivatedComponent(componentInstance)
|
||||
} else {
|
||||
activateChildComponent(componentInstance, true /* direct */)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
destroy(vnode: MountedComponentVNode) {
|
||||
const { componentInstance } = vnode
|
||||
if (!componentInstance._isDestroyed) {
|
||||
if (!vnode.data.keepAlive) {
|
||||
componentInstance.$destroy()
|
||||
} else {
|
||||
deactivateChildComponent(componentInstance, true /* direct */)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const hooksToMerge = Object.keys(componentVNodeHooks)
|
||||
|
||||
export function createComponent(
|
||||
Ctor: typeof Component | Function | ComponentOptions | void,
|
||||
data: VNodeData | undefined,
|
||||
context: Component,
|
||||
children?: Array<VNode>,
|
||||
tag?: string
|
||||
): VNode | Array<VNode> | void {
|
||||
if (isUndef(Ctor)) {
|
||||
return
|
||||
}
|
||||
|
||||
const baseCtor = context.$options._base
|
||||
|
||||
// plain options object: turn it into a constructor
|
||||
if (isObject(Ctor)) {
|
||||
Ctor = baseCtor.extend(Ctor as typeof Component)
|
||||
}
|
||||
|
||||
// if at this stage it's not a constructor or an async component factory,
|
||||
// reject.
|
||||
if (typeof Ctor !== 'function') {
|
||||
if (__DEV__) {
|
||||
warn(`Invalid Component definition: ${String(Ctor)}`, context)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// async component
|
||||
let asyncFactory
|
||||
// @ts-expect-error
|
||||
if (isUndef(Ctor.cid)) {
|
||||
asyncFactory = Ctor
|
||||
Ctor = resolveAsyncComponent(asyncFactory, baseCtor)
|
||||
if (Ctor === undefined) {
|
||||
// return a placeholder node for async component, which is rendered
|
||||
// as a comment node but preserves all the raw information for the node.
|
||||
// the information will be used for async server-rendering and hydration.
|
||||
return createAsyncPlaceholder(asyncFactory, data, context, children, tag)
|
||||
}
|
||||
}
|
||||
|
||||
data = data || {}
|
||||
|
||||
// resolve constructor options in case global mixins are applied after
|
||||
// component constructor creation
|
||||
resolveConstructorOptions(Ctor as typeof Component)
|
||||
|
||||
// transform component v-model data into props & events
|
||||
if (isDef(data.model)) {
|
||||
// @ts-expect-error
|
||||
transformModel(Ctor.options, data)
|
||||
}
|
||||
|
||||
// extract props
|
||||
// @ts-expect-error
|
||||
const propsData = extractPropsFromVNodeData(data, Ctor, tag)
|
||||
|
||||
// functional component
|
||||
// @ts-expect-error
|
||||
if (isTrue(Ctor.options.functional)) {
|
||||
return createFunctionalComponent(
|
||||
Ctor as typeof Component,
|
||||
propsData,
|
||||
data,
|
||||
context,
|
||||
children
|
||||
)
|
||||
}
|
||||
|
||||
// extract listeners, since these needs to be treated as
|
||||
// child component listeners instead of DOM listeners
|
||||
const listeners = data.on
|
||||
// replace with listeners with .native modifier
|
||||
// so it gets processed during parent component patch.
|
||||
data.on = data.nativeOn
|
||||
|
||||
// @ts-expect-error
|
||||
if (isTrue(Ctor.options.abstract)) {
|
||||
// abstract components do not keep anything
|
||||
// other than props & listeners & slot
|
||||
|
||||
// work around flow
|
||||
const slot = data.slot
|
||||
data = {}
|
||||
if (slot) {
|
||||
data.slot = slot
|
||||
}
|
||||
}
|
||||
|
||||
// install component management hooks onto the placeholder node
|
||||
installComponentHooks(data)
|
||||
|
||||
// return a placeholder vnode
|
||||
// @ts-expect-error
|
||||
const name = getComponentName(Ctor.options) || tag
|
||||
const vnode = new VNode(
|
||||
// @ts-expect-error
|
||||
`vue-component-${Ctor.cid}${name ? `-${name}` : ''}`,
|
||||
data,
|
||||
undefined,
|
||||
undefined,
|
||||
undefined,
|
||||
context,
|
||||
// @ts-expect-error
|
||||
{ Ctor, propsData, listeners, tag, children },
|
||||
asyncFactory
|
||||
)
|
||||
|
||||
return vnode
|
||||
}
|
||||
|
||||
export function createComponentInstanceForVnode(
|
||||
// we know it's MountedComponentVNode but flow doesn't
|
||||
vnode: any,
|
||||
// activeInstance in lifecycle state
|
||||
parent?: any
|
||||
): Component {
|
||||
const options: InternalComponentOptions = {
|
||||
_isComponent: true,
|
||||
_parentVnode: vnode,
|
||||
parent
|
||||
}
|
||||
// check inline-template render functions
|
||||
const inlineTemplate = vnode.data.inlineTemplate
|
||||
if (isDef(inlineTemplate)) {
|
||||
options.render = inlineTemplate.render
|
||||
options.staticRenderFns = inlineTemplate.staticRenderFns
|
||||
}
|
||||
return new vnode.componentOptions.Ctor(options)
|
||||
}
|
||||
|
||||
function installComponentHooks(data: VNodeData) {
|
||||
const hooks = data.hook || (data.hook = {})
|
||||
for (let i = 0; i < hooksToMerge.length; i++) {
|
||||
const key = hooksToMerge[i]
|
||||
const existing = hooks[key]
|
||||
const toMerge = componentVNodeHooks[key]
|
||||
// @ts-expect-error
|
||||
if (existing !== toMerge && !(existing && existing._merged)) {
|
||||
hooks[key] = existing ? mergeHook(toMerge, existing) : toMerge
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function mergeHook(f1: any, f2: any): Function {
|
||||
const merged = (a, b) => {
|
||||
// flow complains about extra args which is why we use any
|
||||
f1(a, b)
|
||||
f2(a, b)
|
||||
}
|
||||
merged._merged = true
|
||||
return merged
|
||||
}
|
||||
|
||||
// transform component v-model info (value and callback) into
|
||||
// prop and event handler respectively.
|
||||
function transformModel(options, data: any) {
|
||||
const prop = (options.model && options.model.prop) || 'value'
|
||||
const event = (options.model && options.model.event) || 'input'
|
||||
;(data.attrs || (data.attrs = {}))[prop] = data.model.value
|
||||
const on = data.on || (data.on = {})
|
||||
const existing = on[event]
|
||||
const callback = data.model.callback
|
||||
if (isDef(existing)) {
|
||||
if (
|
||||
isArray(existing)
|
||||
? existing.indexOf(callback) === -1
|
||||
: existing !== callback
|
||||
) {
|
||||
on[event] = [callback].concat(existing)
|
||||
}
|
||||
} else {
|
||||
on[event] = callback
|
||||
}
|
||||
}
|
172
node_modules/vue/src/core/vdom/create-element.ts
generated
vendored
Normal file
172
node_modules/vue/src/core/vdom/create-element.ts
generated
vendored
Normal file
@ -0,0 +1,172 @@
|
||||
import config from '../config'
|
||||
import VNode, { createEmptyVNode } from './vnode'
|
||||
import { createComponent } from './create-component'
|
||||
import { traverse } from '../observer/traverse'
|
||||
|
||||
import {
|
||||
warn,
|
||||
isDef,
|
||||
isUndef,
|
||||
isArray,
|
||||
isTrue,
|
||||
isObject,
|
||||
isPrimitive,
|
||||
resolveAsset,
|
||||
isFunction
|
||||
} from '../util/index'
|
||||
|
||||
import { normalizeChildren, simpleNormalizeChildren } from './helpers/index'
|
||||
import type { Component } from 'types/component'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
|
||||
const SIMPLE_NORMALIZE = 1
|
||||
const ALWAYS_NORMALIZE = 2
|
||||
|
||||
// wrapper function for providing a more flexible interface
|
||||
// without getting yelled at by flow
|
||||
export function createElement(
|
||||
context: Component,
|
||||
tag: any,
|
||||
data: any,
|
||||
children: any,
|
||||
normalizationType: any,
|
||||
alwaysNormalize: boolean
|
||||
): VNode | Array<VNode> {
|
||||
if (isArray(data) || isPrimitive(data)) {
|
||||
normalizationType = children
|
||||
children = data
|
||||
data = undefined
|
||||
}
|
||||
if (isTrue(alwaysNormalize)) {
|
||||
normalizationType = ALWAYS_NORMALIZE
|
||||
}
|
||||
return _createElement(context, tag, data, children, normalizationType)
|
||||
}
|
||||
|
||||
export function _createElement(
|
||||
context: Component,
|
||||
tag?: string | Component | Function | Object,
|
||||
data?: VNodeData,
|
||||
children?: any,
|
||||
normalizationType?: number
|
||||
): VNode | Array<VNode> {
|
||||
if (isDef(data) && isDef((data as any).__ob__)) {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
`Avoid using observed data object as vnode data: ${JSON.stringify(
|
||||
data
|
||||
)}\n` + 'Always create fresh vnode data objects in each render!',
|
||||
context
|
||||
)
|
||||
return createEmptyVNode()
|
||||
}
|
||||
// object syntax in v-bind
|
||||
if (isDef(data) && isDef(data.is)) {
|
||||
tag = data.is
|
||||
}
|
||||
if (!tag) {
|
||||
// in case of component :is set to falsy value
|
||||
return createEmptyVNode()
|
||||
}
|
||||
// warn against non-primitive key
|
||||
if (__DEV__ && isDef(data) && isDef(data.key) && !isPrimitive(data.key)) {
|
||||
warn(
|
||||
'Avoid using non-primitive value as key, ' +
|
||||
'use string/number value instead.',
|
||||
context
|
||||
)
|
||||
}
|
||||
// support single function children as default scoped slot
|
||||
if (isArray(children) && isFunction(children[0])) {
|
||||
data = data || {}
|
||||
data.scopedSlots = { default: children[0] }
|
||||
children.length = 0
|
||||
}
|
||||
if (normalizationType === ALWAYS_NORMALIZE) {
|
||||
children = normalizeChildren(children)
|
||||
} else if (normalizationType === SIMPLE_NORMALIZE) {
|
||||
children = simpleNormalizeChildren(children)
|
||||
}
|
||||
let vnode, ns
|
||||
if (typeof tag === 'string') {
|
||||
let Ctor
|
||||
ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag)
|
||||
if (config.isReservedTag(tag)) {
|
||||
// platform built-in elements
|
||||
if (
|
||||
__DEV__ &&
|
||||
isDef(data) &&
|
||||
isDef(data.nativeOn) &&
|
||||
data.tag !== 'component'
|
||||
) {
|
||||
warn(
|
||||
`The .native modifier for v-on is only valid on components but it was used on <${tag}>.`,
|
||||
context
|
||||
)
|
||||
}
|
||||
vnode = new VNode(
|
||||
config.parsePlatformTagName(tag),
|
||||
data,
|
||||
children,
|
||||
undefined,
|
||||
undefined,
|
||||
context
|
||||
)
|
||||
} else if (
|
||||
(!data || !data.pre) &&
|
||||
isDef((Ctor = resolveAsset(context.$options, 'components', tag)))
|
||||
) {
|
||||
// component
|
||||
vnode = createComponent(Ctor, data, context, children, tag)
|
||||
} else {
|
||||
// unknown or unlisted namespaced elements
|
||||
// check at runtime because it may get assigned a namespace when its
|
||||
// parent normalizes children
|
||||
vnode = new VNode(tag, data, children, undefined, undefined, context)
|
||||
}
|
||||
} else {
|
||||
// direct component options / constructor
|
||||
vnode = createComponent(tag as any, data, context, children)
|
||||
}
|
||||
if (isArray(vnode)) {
|
||||
return vnode
|
||||
} else if (isDef(vnode)) {
|
||||
if (isDef(ns)) applyNS(vnode, ns)
|
||||
if (isDef(data)) registerDeepBindings(data)
|
||||
return vnode
|
||||
} else {
|
||||
return createEmptyVNode()
|
||||
}
|
||||
}
|
||||
|
||||
function applyNS(vnode, ns, force?: boolean) {
|
||||
vnode.ns = ns
|
||||
if (vnode.tag === 'foreignObject') {
|
||||
// use default namespace inside foreignObject
|
||||
ns = undefined
|
||||
force = true
|
||||
}
|
||||
if (isDef(vnode.children)) {
|
||||
for (let i = 0, l = vnode.children.length; i < l; i++) {
|
||||
const child = vnode.children[i]
|
||||
if (
|
||||
isDef(child.tag) &&
|
||||
(isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))
|
||||
) {
|
||||
applyNS(child, ns, force)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ref #5318
|
||||
// necessary to ensure parent re-render when deep bindings like :style and
|
||||
// :class are used on slot nodes
|
||||
function registerDeepBindings(data) {
|
||||
if (isObject(data.style)) {
|
||||
traverse(data.style)
|
||||
}
|
||||
if (isObject(data.class)) {
|
||||
traverse(data.class)
|
||||
}
|
||||
}
|
180
node_modules/vue/src/core/vdom/create-functional-component.ts
generated
vendored
Normal file
180
node_modules/vue/src/core/vdom/create-functional-component.ts
generated
vendored
Normal file
@ -0,0 +1,180 @@
|
||||
import VNode, { cloneVNode } from './vnode'
|
||||
import { createElement } from './create-element'
|
||||
import { resolveInject } from '../instance/inject'
|
||||
import { normalizeChildren } from '../vdom/helpers/normalize-children'
|
||||
import { resolveSlots } from '../instance/render-helpers/resolve-slots'
|
||||
import { normalizeScopedSlots } from '../vdom/helpers/normalize-scoped-slots'
|
||||
import { installRenderHelpers } from '../instance/render-helpers/index'
|
||||
|
||||
import {
|
||||
isDef,
|
||||
isTrue,
|
||||
hasOwn,
|
||||
isArray,
|
||||
camelize,
|
||||
emptyObject,
|
||||
validateProp
|
||||
} from '../util/index'
|
||||
import type { Component } from 'types/component'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
|
||||
export function FunctionalRenderContext(
|
||||
data: VNodeData,
|
||||
props: Object,
|
||||
children: Array<VNode> | undefined,
|
||||
parent: Component,
|
||||
Ctor: typeof Component
|
||||
) {
|
||||
const options = Ctor.options
|
||||
// ensure the createElement function in functional components
|
||||
// gets a unique context - this is necessary for correct named slot check
|
||||
let contextVm
|
||||
if (hasOwn(parent, '_uid')) {
|
||||
contextVm = Object.create(parent)
|
||||
contextVm._original = parent
|
||||
} else {
|
||||
// the context vm passed in is a functional context as well.
|
||||
// in this case we want to make sure we are able to get a hold to the
|
||||
// real context instance.
|
||||
contextVm = parent
|
||||
// @ts-ignore
|
||||
parent = parent._original
|
||||
}
|
||||
const isCompiled = isTrue(options._compiled)
|
||||
const needNormalization = !isCompiled
|
||||
|
||||
this.data = data
|
||||
this.props = props
|
||||
this.children = children
|
||||
this.parent = parent
|
||||
this.listeners = data.on || emptyObject
|
||||
this.injections = resolveInject(options.inject, parent)
|
||||
this.slots = () => {
|
||||
if (!this.$slots) {
|
||||
normalizeScopedSlots(
|
||||
parent,
|
||||
data.scopedSlots,
|
||||
(this.$slots = resolveSlots(children, parent))
|
||||
)
|
||||
}
|
||||
return this.$slots
|
||||
}
|
||||
|
||||
Object.defineProperty(this, 'scopedSlots', {
|
||||
enumerable: true,
|
||||
get() {
|
||||
return normalizeScopedSlots(parent, data.scopedSlots, this.slots())
|
||||
}
|
||||
} as any)
|
||||
|
||||
// support for compiled functional template
|
||||
if (isCompiled) {
|
||||
// exposing $options for renderStatic()
|
||||
this.$options = options
|
||||
// pre-resolve slots for renderSlot()
|
||||
this.$slots = this.slots()
|
||||
this.$scopedSlots = normalizeScopedSlots(
|
||||
parent,
|
||||
data.scopedSlots,
|
||||
this.$slots
|
||||
)
|
||||
}
|
||||
|
||||
if (options._scopeId) {
|
||||
this._c = (a, b, c, d) => {
|
||||
const vnode = createElement(contextVm, a, b, c, d, needNormalization)
|
||||
if (vnode && !isArray(vnode)) {
|
||||
vnode.fnScopeId = options._scopeId
|
||||
vnode.fnContext = parent
|
||||
}
|
||||
return vnode
|
||||
}
|
||||
} else {
|
||||
this._c = (a, b, c, d) =>
|
||||
createElement(contextVm, a, b, c, d, needNormalization)
|
||||
}
|
||||
}
|
||||
|
||||
installRenderHelpers(FunctionalRenderContext.prototype)
|
||||
|
||||
export function createFunctionalComponent(
|
||||
Ctor: typeof Component,
|
||||
propsData: Object | undefined,
|
||||
data: VNodeData,
|
||||
contextVm: Component,
|
||||
children?: Array<VNode>
|
||||
): VNode | Array<VNode> | void {
|
||||
const options = Ctor.options
|
||||
const props = {}
|
||||
const propOptions = options.props
|
||||
if (isDef(propOptions)) {
|
||||
for (const key in propOptions) {
|
||||
props[key] = validateProp(key, propOptions, propsData || emptyObject)
|
||||
}
|
||||
} else {
|
||||
if (isDef(data.attrs)) mergeProps(props, data.attrs)
|
||||
if (isDef(data.props)) mergeProps(props, data.props)
|
||||
}
|
||||
|
||||
const renderContext = new FunctionalRenderContext(
|
||||
data,
|
||||
props,
|
||||
children,
|
||||
contextVm,
|
||||
Ctor
|
||||
)
|
||||
|
||||
const vnode = options.render.call(null, renderContext._c, renderContext)
|
||||
|
||||
if (vnode instanceof VNode) {
|
||||
return cloneAndMarkFunctionalResult(
|
||||
vnode,
|
||||
data,
|
||||
renderContext.parent,
|
||||
options,
|
||||
renderContext
|
||||
)
|
||||
} else if (isArray(vnode)) {
|
||||
const vnodes = normalizeChildren(vnode) || []
|
||||
const res = new Array(vnodes.length)
|
||||
for (let i = 0; i < vnodes.length; i++) {
|
||||
res[i] = cloneAndMarkFunctionalResult(
|
||||
vnodes[i],
|
||||
data,
|
||||
renderContext.parent,
|
||||
options,
|
||||
renderContext
|
||||
)
|
||||
}
|
||||
return res
|
||||
}
|
||||
}
|
||||
|
||||
function cloneAndMarkFunctionalResult(
|
||||
vnode,
|
||||
data,
|
||||
contextVm,
|
||||
options,
|
||||
renderContext
|
||||
) {
|
||||
// #7817 clone node before setting fnContext, otherwise if the node is reused
|
||||
// (e.g. it was from a cached normal slot) the fnContext causes named slots
|
||||
// that should not be matched to match.
|
||||
const clone = cloneVNode(vnode)
|
||||
clone.fnContext = contextVm
|
||||
clone.fnOptions = options
|
||||
if (__DEV__) {
|
||||
;(clone.devtoolsMeta = clone.devtoolsMeta || ({} as any)).renderContext =
|
||||
renderContext
|
||||
}
|
||||
if (data.slot) {
|
||||
;(clone.data || (clone.data = {})).slot = data.slot
|
||||
}
|
||||
return clone
|
||||
}
|
||||
|
||||
function mergeProps(to, from) {
|
||||
for (const key in from) {
|
||||
to[camelize(key)] = from[key]
|
||||
}
|
||||
}
|
75
node_modules/vue/src/core/vdom/helpers/extract-props.ts
generated
vendored
Normal file
75
node_modules/vue/src/core/vdom/helpers/extract-props.ts
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
import {
|
||||
tip,
|
||||
hasOwn,
|
||||
isDef,
|
||||
isUndef,
|
||||
hyphenate,
|
||||
formatComponentName
|
||||
} from 'core/util/index'
|
||||
import type { Component } from 'types/component'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
|
||||
export function extractPropsFromVNodeData(
|
||||
data: VNodeData,
|
||||
Ctor: typeof Component,
|
||||
tag?: string
|
||||
): object | undefined {
|
||||
// we are only extracting raw values here.
|
||||
// validation and default values are handled in the child
|
||||
// component itself.
|
||||
const propOptions = Ctor.options.props
|
||||
if (isUndef(propOptions)) {
|
||||
return
|
||||
}
|
||||
const res = {}
|
||||
const { attrs, props } = data
|
||||
if (isDef(attrs) || isDef(props)) {
|
||||
for (const key in propOptions) {
|
||||
const altKey = hyphenate(key)
|
||||
if (__DEV__) {
|
||||
const keyInLowerCase = key.toLowerCase()
|
||||
if (key !== keyInLowerCase && attrs && hasOwn(attrs, keyInLowerCase)) {
|
||||
tip(
|
||||
`Prop "${keyInLowerCase}" is passed to component ` +
|
||||
`${formatComponentName(
|
||||
// @ts-expect-error tag is string
|
||||
tag || Ctor
|
||||
)}, but the declared prop name is` +
|
||||
` "${key}". ` +
|
||||
`Note that HTML attributes are case-insensitive and camelCased ` +
|
||||
`props need to use their kebab-case equivalents when using in-DOM ` +
|
||||
`templates. You should probably use "${altKey}" instead of "${key}".`
|
||||
)
|
||||
}
|
||||
}
|
||||
checkProp(res, props, key, altKey, true) ||
|
||||
checkProp(res, attrs, key, altKey, false)
|
||||
}
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
function checkProp(
|
||||
res: Object,
|
||||
hash: Object | undefined,
|
||||
key: string,
|
||||
altKey: string,
|
||||
preserve: boolean
|
||||
): boolean {
|
||||
if (isDef(hash)) {
|
||||
if (hasOwn(hash, key)) {
|
||||
res[key] = hash[key]
|
||||
if (!preserve) {
|
||||
delete hash[key]
|
||||
}
|
||||
return true
|
||||
} else if (hasOwn(hash, altKey)) {
|
||||
res[key] = hash[altKey]
|
||||
if (!preserve) {
|
||||
delete hash[altKey]
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
16
node_modules/vue/src/core/vdom/helpers/get-first-component-child.ts
generated
vendored
Normal file
16
node_modules/vue/src/core/vdom/helpers/get-first-component-child.ts
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
import { isDef, isArray } from 'shared/util'
|
||||
import VNode from '../vnode'
|
||||
import { isAsyncPlaceholder } from './is-async-placeholder'
|
||||
|
||||
export function getFirstComponentChild(
|
||||
children?: Array<VNode>
|
||||
): VNode | undefined {
|
||||
if (isArray(children)) {
|
||||
for (let i = 0; i < children.length; i++) {
|
||||
const c = children[i]
|
||||
if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {
|
||||
return c
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
node_modules/vue/src/core/vdom/helpers/index.ts
generated
vendored
Normal file
7
node_modules/vue/src/core/vdom/helpers/index.ts
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
export * from './merge-hook'
|
||||
export * from './extract-props'
|
||||
export * from './update-listeners'
|
||||
export * from './normalize-children'
|
||||
export * from './resolve-async-component'
|
||||
export * from './get-first-component-child'
|
||||
export * from './is-async-placeholder'
|
6
node_modules/vue/src/core/vdom/helpers/is-async-placeholder.ts
generated
vendored
Normal file
6
node_modules/vue/src/core/vdom/helpers/is-async-placeholder.ts
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
import VNode from '../vnode'
|
||||
|
||||
export function isAsyncPlaceholder(node: VNode): boolean {
|
||||
// @ts-expect-error not really boolean type
|
||||
return node.isComment && node.asyncFactory
|
||||
}
|
40
node_modules/vue/src/core/vdom/helpers/merge-hook.ts
generated
vendored
Normal file
40
node_modules/vue/src/core/vdom/helpers/merge-hook.ts
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
import VNode from '../vnode'
|
||||
import { createFnInvoker } from './update-listeners'
|
||||
import { remove, isDef, isUndef, isTrue } from 'shared/util'
|
||||
|
||||
export function mergeVNodeHook(
|
||||
def: Record<string, any>,
|
||||
hookKey: string,
|
||||
hook: Function
|
||||
) {
|
||||
if (def instanceof VNode) {
|
||||
def = def.data!.hook || (def.data!.hook = {})
|
||||
}
|
||||
let invoker
|
||||
const oldHook = def[hookKey]
|
||||
|
||||
function wrappedHook() {
|
||||
hook.apply(this, arguments)
|
||||
// important: remove merged hook to ensure it's called only once
|
||||
// and prevent memory leak
|
||||
remove(invoker.fns, wrappedHook)
|
||||
}
|
||||
|
||||
if (isUndef(oldHook)) {
|
||||
// no existing hook
|
||||
invoker = createFnInvoker([wrappedHook])
|
||||
} else {
|
||||
/* istanbul ignore if */
|
||||
if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {
|
||||
// already a merged invoker
|
||||
invoker = oldHook
|
||||
invoker.fns.push(wrappedHook)
|
||||
} else {
|
||||
// existing plain hook
|
||||
invoker = createFnInvoker([oldHook, wrappedHook])
|
||||
}
|
||||
}
|
||||
|
||||
invoker.merged = true
|
||||
def[hookKey] = invoker
|
||||
}
|
99
node_modules/vue/src/core/vdom/helpers/normalize-children.ts
generated
vendored
Normal file
99
node_modules/vue/src/core/vdom/helpers/normalize-children.ts
generated
vendored
Normal file
@ -0,0 +1,99 @@
|
||||
import VNode, { createTextVNode } from 'core/vdom/vnode'
|
||||
import {
|
||||
isFalse,
|
||||
isTrue,
|
||||
isArray,
|
||||
isDef,
|
||||
isUndef,
|
||||
isPrimitive
|
||||
} from 'shared/util'
|
||||
|
||||
// The template compiler attempts to minimize the need for normalization by
|
||||
// statically analyzing the template at compile time.
|
||||
//
|
||||
// For plain HTML markup, normalization can be completely skipped because the
|
||||
// generated render function is guaranteed to return Array<VNode>. There are
|
||||
// two cases where extra normalization is needed:
|
||||
|
||||
// 1. When the children contains components - because a functional component
|
||||
// may return an Array instead of a single root. In this case, just a simple
|
||||
// normalization is needed - if any child is an Array, we flatten the whole
|
||||
// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep
|
||||
// because functional components already normalize their own children.
|
||||
export function simpleNormalizeChildren(children: any) {
|
||||
for (let i = 0; i < children.length; i++) {
|
||||
if (isArray(children[i])) {
|
||||
return Array.prototype.concat.apply([], children)
|
||||
}
|
||||
}
|
||||
return children
|
||||
}
|
||||
|
||||
// 2. When the children contains constructs that always generated nested Arrays,
|
||||
// e.g. <template>, <slot>, v-for, or when the children is provided by user
|
||||
// with hand-written render functions / JSX. In such cases a full normalization
|
||||
// is needed to cater to all possible types of children values.
|
||||
export function normalizeChildren(children: any): Array<VNode> | undefined {
|
||||
return isPrimitive(children)
|
||||
? [createTextVNode(children)]
|
||||
: isArray(children)
|
||||
? normalizeArrayChildren(children)
|
||||
: undefined
|
||||
}
|
||||
|
||||
function isTextNode(node): boolean {
|
||||
return isDef(node) && isDef(node.text) && isFalse(node.isComment)
|
||||
}
|
||||
|
||||
function normalizeArrayChildren(
|
||||
children: any,
|
||||
nestedIndex?: string
|
||||
): Array<VNode> {
|
||||
const res: VNode[] = []
|
||||
let i, c, lastIndex, last
|
||||
for (i = 0; i < children.length; i++) {
|
||||
c = children[i]
|
||||
if (isUndef(c) || typeof c === 'boolean') continue
|
||||
lastIndex = res.length - 1
|
||||
last = res[lastIndex]
|
||||
// nested
|
||||
if (isArray(c)) {
|
||||
if (c.length > 0) {
|
||||
c = normalizeArrayChildren(c, `${nestedIndex || ''}_${i}`)
|
||||
// merge adjacent text nodes
|
||||
if (isTextNode(c[0]) && isTextNode(last)) {
|
||||
res[lastIndex] = createTextVNode(last.text + c[0].text)
|
||||
c.shift()
|
||||
}
|
||||
res.push.apply(res, c)
|
||||
}
|
||||
} else if (isPrimitive(c)) {
|
||||
if (isTextNode(last)) {
|
||||
// merge adjacent text nodes
|
||||
// this is necessary for SSR hydration because text nodes are
|
||||
// essentially merged when rendered to HTML strings
|
||||
res[lastIndex] = createTextVNode(last.text + c)
|
||||
} else if (c !== '') {
|
||||
// convert primitive to vnode
|
||||
res.push(createTextVNode(c))
|
||||
}
|
||||
} else {
|
||||
if (isTextNode(c) && isTextNode(last)) {
|
||||
// merge adjacent text nodes
|
||||
res[lastIndex] = createTextVNode(last.text + c.text)
|
||||
} else {
|
||||
// default key for nested array children (likely generated by v-for)
|
||||
if (
|
||||
isTrue(children._isVList) &&
|
||||
isDef(c.tag) &&
|
||||
isUndef(c.key) &&
|
||||
isDef(nestedIndex)
|
||||
) {
|
||||
c.key = `__vlist${nestedIndex}_${i}__`
|
||||
}
|
||||
res.push(c)
|
||||
}
|
||||
}
|
||||
}
|
||||
return res
|
||||
}
|
97
node_modules/vue/src/core/vdom/helpers/normalize-scoped-slots.ts
generated
vendored
Normal file
97
node_modules/vue/src/core/vdom/helpers/normalize-scoped-slots.ts
generated
vendored
Normal file
@ -0,0 +1,97 @@
|
||||
import { def } from 'core/util/lang'
|
||||
import { normalizeChildren } from 'core/vdom/helpers/normalize-children'
|
||||
import { emptyObject, isArray } from 'shared/util'
|
||||
import { isAsyncPlaceholder } from './is-async-placeholder'
|
||||
import type VNode from '../vnode'
|
||||
import { Component } from 'types/component'
|
||||
import { currentInstance, setCurrentInstance } from 'v3/currentInstance'
|
||||
|
||||
export function normalizeScopedSlots(
|
||||
ownerVm: Component,
|
||||
scopedSlots: { [key: string]: Function } | undefined,
|
||||
normalSlots: { [key: string]: VNode[] },
|
||||
prevScopedSlots?: { [key: string]: Function }
|
||||
): any {
|
||||
let res
|
||||
const hasNormalSlots = Object.keys(normalSlots).length > 0
|
||||
const isStable = scopedSlots ? !!scopedSlots.$stable : !hasNormalSlots
|
||||
const key = scopedSlots && scopedSlots.$key
|
||||
if (!scopedSlots) {
|
||||
res = {}
|
||||
} else if (scopedSlots._normalized) {
|
||||
// fast path 1: child component re-render only, parent did not change
|
||||
return scopedSlots._normalized
|
||||
} else if (
|
||||
isStable &&
|
||||
prevScopedSlots &&
|
||||
prevScopedSlots !== emptyObject &&
|
||||
key === prevScopedSlots.$key &&
|
||||
!hasNormalSlots &&
|
||||
!prevScopedSlots.$hasNormal
|
||||
) {
|
||||
// fast path 2: stable scoped slots w/ no normal slots to proxy,
|
||||
// only need to normalize once
|
||||
return prevScopedSlots
|
||||
} else {
|
||||
res = {}
|
||||
for (const key in scopedSlots) {
|
||||
if (scopedSlots[key] && key[0] !== '$') {
|
||||
res[key] = normalizeScopedSlot(
|
||||
ownerVm,
|
||||
normalSlots,
|
||||
key,
|
||||
scopedSlots[key]
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
// expose normal slots on scopedSlots
|
||||
for (const key in normalSlots) {
|
||||
if (!(key in res)) {
|
||||
res[key] = proxyNormalSlot(normalSlots, key)
|
||||
}
|
||||
}
|
||||
// avoriaz seems to mock a non-extensible $scopedSlots object
|
||||
// and when that is passed down this would cause an error
|
||||
if (scopedSlots && Object.isExtensible(scopedSlots)) {
|
||||
scopedSlots._normalized = res
|
||||
}
|
||||
def(res, '$stable', isStable)
|
||||
def(res, '$key', key)
|
||||
def(res, '$hasNormal', hasNormalSlots)
|
||||
return res
|
||||
}
|
||||
|
||||
function normalizeScopedSlot(vm, normalSlots, key, fn) {
|
||||
const normalized = function () {
|
||||
const cur = currentInstance
|
||||
setCurrentInstance(vm)
|
||||
let res = arguments.length ? fn.apply(null, arguments) : fn({})
|
||||
res =
|
||||
res && typeof res === 'object' && !isArray(res)
|
||||
? [res] // single vnode
|
||||
: normalizeChildren(res)
|
||||
const vnode: VNode | null = res && res[0]
|
||||
setCurrentInstance(cur)
|
||||
return res &&
|
||||
(!vnode ||
|
||||
(res.length === 1 && vnode.isComment && !isAsyncPlaceholder(vnode))) // #9658, #10391
|
||||
? undefined
|
||||
: res
|
||||
}
|
||||
// this is a slot using the new v-slot syntax without scope. although it is
|
||||
// compiled as a scoped slot, render fn users would expect it to be present
|
||||
// on this.$slots because the usage is semantically a normal slot.
|
||||
if (fn.proxy) {
|
||||
Object.defineProperty(normalSlots, key, {
|
||||
get: normalized,
|
||||
enumerable: true,
|
||||
configurable: true
|
||||
})
|
||||
}
|
||||
return normalized
|
||||
}
|
||||
|
||||
function proxyNormalSlot(slots, key) {
|
||||
return () => slots[key]
|
||||
}
|
157
node_modules/vue/src/core/vdom/helpers/resolve-async-component.ts
generated
vendored
Normal file
157
node_modules/vue/src/core/vdom/helpers/resolve-async-component.ts
generated
vendored
Normal file
@ -0,0 +1,157 @@
|
||||
import {
|
||||
warn,
|
||||
once,
|
||||
isDef,
|
||||
isUndef,
|
||||
isTrue,
|
||||
isObject,
|
||||
hasSymbol,
|
||||
isPromise,
|
||||
remove
|
||||
} from 'core/util/index'
|
||||
|
||||
import VNode, { createEmptyVNode } from 'core/vdom/vnode'
|
||||
import { currentRenderingInstance } from 'core/instance/render'
|
||||
import type { VNodeData } from 'types/vnode'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
function ensureCtor(comp: any, base) {
|
||||
if (comp.__esModule || (hasSymbol && comp[Symbol.toStringTag] === 'Module')) {
|
||||
comp = comp.default
|
||||
}
|
||||
return isObject(comp) ? base.extend(comp) : comp
|
||||
}
|
||||
|
||||
export function createAsyncPlaceholder(
|
||||
factory: Function,
|
||||
data: VNodeData | undefined,
|
||||
context: Component,
|
||||
children: Array<VNode> | undefined,
|
||||
tag?: string
|
||||
): VNode {
|
||||
const node = createEmptyVNode()
|
||||
node.asyncFactory = factory
|
||||
node.asyncMeta = { data, context, children, tag }
|
||||
return node
|
||||
}
|
||||
|
||||
export function resolveAsyncComponent(
|
||||
factory: { (...args: any[]): any; [keye: string]: any },
|
||||
baseCtor: typeof Component
|
||||
): typeof Component | void {
|
||||
if (isTrue(factory.error) && isDef(factory.errorComp)) {
|
||||
return factory.errorComp
|
||||
}
|
||||
|
||||
if (isDef(factory.resolved)) {
|
||||
return factory.resolved
|
||||
}
|
||||
|
||||
const owner = currentRenderingInstance
|
||||
if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {
|
||||
// already pending
|
||||
factory.owners.push(owner)
|
||||
}
|
||||
|
||||
if (isTrue(factory.loading) && isDef(factory.loadingComp)) {
|
||||
return factory.loadingComp
|
||||
}
|
||||
|
||||
if (owner && !isDef(factory.owners)) {
|
||||
const owners = (factory.owners = [owner])
|
||||
let sync = true
|
||||
let timerLoading: number | null = null
|
||||
let timerTimeout: number | null = null
|
||||
|
||||
owner.$on('hook:destroyed', () => remove(owners, owner))
|
||||
|
||||
const forceRender = (renderCompleted: boolean) => {
|
||||
for (let i = 0, l = owners.length; i < l; i++) {
|
||||
owners[i].$forceUpdate()
|
||||
}
|
||||
|
||||
if (renderCompleted) {
|
||||
owners.length = 0
|
||||
if (timerLoading !== null) {
|
||||
clearTimeout(timerLoading)
|
||||
timerLoading = null
|
||||
}
|
||||
if (timerTimeout !== null) {
|
||||
clearTimeout(timerTimeout)
|
||||
timerTimeout = null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const resolve = once((res: Object | Component) => {
|
||||
// cache resolved
|
||||
factory.resolved = ensureCtor(res, baseCtor)
|
||||
// invoke callbacks only if this is not a synchronous resolve
|
||||
// (async resolves are shimmed as synchronous during SSR)
|
||||
if (!sync) {
|
||||
forceRender(true)
|
||||
} else {
|
||||
owners.length = 0
|
||||
}
|
||||
})
|
||||
|
||||
const reject = once(reason => {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
`Failed to resolve async component: ${String(factory)}` +
|
||||
(reason ? `\nReason: ${reason}` : '')
|
||||
)
|
||||
if (isDef(factory.errorComp)) {
|
||||
factory.error = true
|
||||
forceRender(true)
|
||||
}
|
||||
})
|
||||
|
||||
const res = factory(resolve, reject)
|
||||
|
||||
if (isObject(res)) {
|
||||
if (isPromise(res)) {
|
||||
// () => Promise
|
||||
if (isUndef(factory.resolved)) {
|
||||
res.then(resolve, reject)
|
||||
}
|
||||
} else if (isPromise(res.component)) {
|
||||
res.component.then(resolve, reject)
|
||||
|
||||
if (isDef(res.error)) {
|
||||
factory.errorComp = ensureCtor(res.error, baseCtor)
|
||||
}
|
||||
|
||||
if (isDef(res.loading)) {
|
||||
factory.loadingComp = ensureCtor(res.loading, baseCtor)
|
||||
if (res.delay === 0) {
|
||||
factory.loading = true
|
||||
} else {
|
||||
// @ts-expect-error NodeJS timeout type
|
||||
timerLoading = setTimeout(() => {
|
||||
timerLoading = null
|
||||
if (isUndef(factory.resolved) && isUndef(factory.error)) {
|
||||
factory.loading = true
|
||||
forceRender(false)
|
||||
}
|
||||
}, res.delay || 200)
|
||||
}
|
||||
}
|
||||
|
||||
if (isDef(res.timeout)) {
|
||||
// @ts-expect-error NodeJS timeout type
|
||||
timerTimeout = setTimeout(() => {
|
||||
timerTimeout = null
|
||||
if (isUndef(factory.resolved)) {
|
||||
reject(__DEV__ ? `timeout (${res.timeout}ms)` : null)
|
||||
}
|
||||
}, res.timeout)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sync = false
|
||||
// return in case resolved synchronously
|
||||
return factory.loading ? factory.loadingComp : factory.resolved
|
||||
}
|
||||
}
|
101
node_modules/vue/src/core/vdom/helpers/update-listeners.ts
generated
vendored
Normal file
101
node_modules/vue/src/core/vdom/helpers/update-listeners.ts
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
import { warn, invokeWithErrorHandling } from 'core/util/index'
|
||||
import { cached, isUndef, isTrue, isArray } from 'shared/util'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
const normalizeEvent = cached(
|
||||
(
|
||||
name: string
|
||||
): {
|
||||
name: string
|
||||
once: boolean
|
||||
capture: boolean
|
||||
passive: boolean
|
||||
handler?: Function
|
||||
params?: Array<any>
|
||||
} => {
|
||||
const passive = name.charAt(0) === '&'
|
||||
name = passive ? name.slice(1) : name
|
||||
const once = name.charAt(0) === '~' // Prefixed last, checked first
|
||||
name = once ? name.slice(1) : name
|
||||
const capture = name.charAt(0) === '!'
|
||||
name = capture ? name.slice(1) : name
|
||||
return {
|
||||
name,
|
||||
once,
|
||||
capture,
|
||||
passive
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
export function createFnInvoker(
|
||||
fns: Function | Array<Function>,
|
||||
vm?: Component
|
||||
): Function {
|
||||
function invoker() {
|
||||
const fns = invoker.fns
|
||||
if (isArray(fns)) {
|
||||
const cloned = fns.slice()
|
||||
for (let i = 0; i < cloned.length; i++) {
|
||||
invokeWithErrorHandling(
|
||||
cloned[i],
|
||||
null,
|
||||
arguments as any,
|
||||
vm,
|
||||
`v-on handler`
|
||||
)
|
||||
}
|
||||
} else {
|
||||
// return handler return value for single handlers
|
||||
return invokeWithErrorHandling(
|
||||
fns,
|
||||
null,
|
||||
arguments as any,
|
||||
vm,
|
||||
`v-on handler`
|
||||
)
|
||||
}
|
||||
}
|
||||
invoker.fns = fns
|
||||
return invoker
|
||||
}
|
||||
|
||||
export function updateListeners(
|
||||
on: Object,
|
||||
oldOn: Object,
|
||||
add: Function,
|
||||
remove: Function,
|
||||
createOnceHandler: Function,
|
||||
vm: Component
|
||||
) {
|
||||
let name, cur, old, event
|
||||
for (name in on) {
|
||||
cur = on[name]
|
||||
old = oldOn[name]
|
||||
event = normalizeEvent(name)
|
||||
if (isUndef(cur)) {
|
||||
__DEV__ &&
|
||||
warn(
|
||||
`Invalid handler for event "${event.name}": got ` + String(cur),
|
||||
vm
|
||||
)
|
||||
} else if (isUndef(old)) {
|
||||
if (isUndef(cur.fns)) {
|
||||
cur = on[name] = createFnInvoker(cur, vm)
|
||||
}
|
||||
if (isTrue(event.once)) {
|
||||
cur = on[name] = createOnceHandler(event.name, cur, event.capture)
|
||||
}
|
||||
add(event.name, cur, event.capture, event.passive, event.params)
|
||||
} else if (cur !== old) {
|
||||
old.fns = cur
|
||||
on[name] = old
|
||||
}
|
||||
}
|
||||
for (name in oldOn) {
|
||||
if (isUndef(on[name])) {
|
||||
event = normalizeEvent(name)
|
||||
remove(event.name, oldOn[name], event.capture)
|
||||
}
|
||||
}
|
||||
}
|
137
node_modules/vue/src/core/vdom/modules/directives.ts
generated
vendored
Normal file
137
node_modules/vue/src/core/vdom/modules/directives.ts
generated
vendored
Normal file
@ -0,0 +1,137 @@
|
||||
import { emptyNode } from 'core/vdom/patch'
|
||||
import { resolveAsset, handleError } from 'core/util/index'
|
||||
import { mergeVNodeHook } from 'core/vdom/helpers/index'
|
||||
import type { VNodeDirective, VNodeWithData } from 'types/vnode'
|
||||
import type { Component } from 'types/component'
|
||||
|
||||
export default {
|
||||
create: updateDirectives,
|
||||
update: updateDirectives,
|
||||
destroy: function unbindDirectives(vnode: VNodeWithData) {
|
||||
// @ts-expect-error emptyNode is not VNodeWithData
|
||||
updateDirectives(vnode, emptyNode)
|
||||
}
|
||||
}
|
||||
|
||||
function updateDirectives(oldVnode: VNodeWithData, vnode: VNodeWithData) {
|
||||
if (oldVnode.data.directives || vnode.data.directives) {
|
||||
_update(oldVnode, vnode)
|
||||
}
|
||||
}
|
||||
|
||||
function _update(oldVnode, vnode) {
|
||||
const isCreate = oldVnode === emptyNode
|
||||
const isDestroy = vnode === emptyNode
|
||||
const oldDirs = normalizeDirectives(
|
||||
oldVnode.data.directives,
|
||||
oldVnode.context
|
||||
)
|
||||
const newDirs = normalizeDirectives(vnode.data.directives, vnode.context)
|
||||
|
||||
const dirsWithInsert: any[] = []
|
||||
const dirsWithPostpatch: any[] = []
|
||||
|
||||
let key, oldDir, dir
|
||||
for (key in newDirs) {
|
||||
oldDir = oldDirs[key]
|
||||
dir = newDirs[key]
|
||||
if (!oldDir) {
|
||||
// new directive, bind
|
||||
callHook(dir, 'bind', vnode, oldVnode)
|
||||
if (dir.def && dir.def.inserted) {
|
||||
dirsWithInsert.push(dir)
|
||||
}
|
||||
} else {
|
||||
// existing directive, update
|
||||
dir.oldValue = oldDir.value
|
||||
dir.oldArg = oldDir.arg
|
||||
callHook(dir, 'update', vnode, oldVnode)
|
||||
if (dir.def && dir.def.componentUpdated) {
|
||||
dirsWithPostpatch.push(dir)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (dirsWithInsert.length) {
|
||||
const callInsert = () => {
|
||||
for (let i = 0; i < dirsWithInsert.length; i++) {
|
||||
callHook(dirsWithInsert[i], 'inserted', vnode, oldVnode)
|
||||
}
|
||||
}
|
||||
if (isCreate) {
|
||||
mergeVNodeHook(vnode, 'insert', callInsert)
|
||||
} else {
|
||||
callInsert()
|
||||
}
|
||||
}
|
||||
|
||||
if (dirsWithPostpatch.length) {
|
||||
mergeVNodeHook(vnode, 'postpatch', () => {
|
||||
for (let i = 0; i < dirsWithPostpatch.length; i++) {
|
||||
callHook(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (!isCreate) {
|
||||
for (key in oldDirs) {
|
||||
if (!newDirs[key]) {
|
||||
// no longer present, unbind
|
||||
callHook(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const emptyModifiers = Object.create(null)
|
||||
|
||||
function normalizeDirectives(
|
||||
dirs: Array<VNodeDirective> | undefined,
|
||||
vm: Component
|
||||
): { [key: string]: VNodeDirective } {
|
||||
const res = Object.create(null)
|
||||
if (!dirs) {
|
||||
// $flow-disable-line
|
||||
return res
|
||||
}
|
||||
let i: number, dir: VNodeDirective
|
||||
for (i = 0; i < dirs.length; i++) {
|
||||
dir = dirs[i]
|
||||
if (!dir.modifiers) {
|
||||
// $flow-disable-line
|
||||
dir.modifiers = emptyModifiers
|
||||
}
|
||||
res[getRawDirName(dir)] = dir
|
||||
if (vm._setupState && vm._setupState.__sfc) {
|
||||
const setupDef = dir.def || resolveAsset(vm, '_setupState', 'v-' + dir.name)
|
||||
if (typeof setupDef === 'function') {
|
||||
dir.def = {
|
||||
bind: setupDef,
|
||||
update: setupDef,
|
||||
}
|
||||
} else {
|
||||
dir.def = setupDef
|
||||
}
|
||||
}
|
||||
dir.def = dir.def || resolveAsset(vm.$options, 'directives', dir.name, true)
|
||||
}
|
||||
// $flow-disable-line
|
||||
return res
|
||||
}
|
||||
|
||||
function getRawDirName(dir: VNodeDirective): string {
|
||||
return (
|
||||
dir.rawName || `${dir.name}.${Object.keys(dir.modifiers || {}).join('.')}`
|
||||
)
|
||||
}
|
||||
|
||||
function callHook(dir, hook, vnode, oldVnode, isDestroy?: any) {
|
||||
const fn = dir.def && dir.def[hook]
|
||||
if (fn) {
|
||||
try {
|
||||
fn(vnode.elm, dir, vnode, oldVnode, isDestroy)
|
||||
} catch (e: any) {
|
||||
handleError(e, vnode.context, `directive ${dir.name} ${hook} hook`)
|
||||
}
|
||||
}
|
||||
}
|
4
node_modules/vue/src/core/vdom/modules/index.ts
generated
vendored
Normal file
4
node_modules/vue/src/core/vdom/modules/index.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import directives from './directives'
|
||||
import ref from './template-ref'
|
||||
|
||||
export default [ref, directives]
|
94
node_modules/vue/src/core/vdom/modules/template-ref.ts
generated
vendored
Normal file
94
node_modules/vue/src/core/vdom/modules/template-ref.ts
generated
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
import {
|
||||
remove,
|
||||
isDef,
|
||||
hasOwn,
|
||||
isArray,
|
||||
isFunction,
|
||||
invokeWithErrorHandling,
|
||||
warn
|
||||
} from 'core/util'
|
||||
import type { VNodeWithData } from 'types/vnode'
|
||||
import { Component } from 'types/component'
|
||||
import { isRef } from 'v3'
|
||||
|
||||
export default {
|
||||
create(_: any, vnode: VNodeWithData) {
|
||||
registerRef(vnode)
|
||||
},
|
||||
update(oldVnode: VNodeWithData, vnode: VNodeWithData) {
|
||||
if (oldVnode.data.ref !== vnode.data.ref) {
|
||||
registerRef(oldVnode, true)
|
||||
registerRef(vnode)
|
||||
}
|
||||
},
|
||||
destroy(vnode: VNodeWithData) {
|
||||
registerRef(vnode, true)
|
||||
}
|
||||
}
|
||||
|
||||
export function registerRef(vnode: VNodeWithData, isRemoval?: boolean) {
|
||||
const ref = vnode.data.ref
|
||||
if (!isDef(ref)) return
|
||||
|
||||
const vm = vnode.context
|
||||
const refValue = vnode.componentInstance || vnode.elm
|
||||
const value = isRemoval ? null : refValue
|
||||
const $refsValue = isRemoval ? undefined : refValue
|
||||
|
||||
if (isFunction(ref)) {
|
||||
invokeWithErrorHandling(ref, vm, [value], vm, `template ref function`)
|
||||
return
|
||||
}
|
||||
|
||||
const isFor = vnode.data.refInFor
|
||||
const _isString = typeof ref === 'string' || typeof ref === 'number'
|
||||
const _isRef = isRef(ref)
|
||||
const refs = vm.$refs
|
||||
|
||||
if (_isString || _isRef) {
|
||||
if (isFor) {
|
||||
const existing = _isString ? refs[ref] : ref.value
|
||||
if (isRemoval) {
|
||||
isArray(existing) && remove(existing, refValue)
|
||||
} else {
|
||||
if (!isArray(existing)) {
|
||||
if (_isString) {
|
||||
refs[ref] = [refValue]
|
||||
setSetupRef(vm, ref, refs[ref])
|
||||
} else {
|
||||
ref.value = [refValue]
|
||||
}
|
||||
} else if (!existing.includes(refValue)) {
|
||||
existing.push(refValue)
|
||||
}
|
||||
}
|
||||
} else if (_isString) {
|
||||
if (isRemoval && refs[ref] !== refValue) {
|
||||
return
|
||||
}
|
||||
refs[ref] = $refsValue
|
||||
setSetupRef(vm, ref, value)
|
||||
} else if (_isRef) {
|
||||
if (isRemoval && ref.value !== refValue) {
|
||||
return
|
||||
}
|
||||
ref.value = value
|
||||
} else if (__DEV__) {
|
||||
warn(`Invalid template ref type: ${typeof ref}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function setSetupRef(
|
||||
{ _setupState }: Component,
|
||||
key: string | number,
|
||||
val: any
|
||||
) {
|
||||
if (_setupState && hasOwn(_setupState, key as string)) {
|
||||
if (isRef(_setupState[key])) {
|
||||
_setupState[key].value = val
|
||||
} else {
|
||||
_setupState[key] = val
|
||||
}
|
||||
}
|
||||
}
|
904
node_modules/vue/src/core/vdom/patch.ts
generated
vendored
Normal file
904
node_modules/vue/src/core/vdom/patch.ts
generated
vendored
Normal file
@ -0,0 +1,904 @@
|
||||
/**
|
||||
* Virtual DOM patching algorithm based on Snabbdom by
|
||||
* Simon Friis Vindum (@paldepind)
|
||||
* Licensed under the MIT License
|
||||
* https://github.com/paldepind/snabbdom/blob/master/LICENSE
|
||||
*
|
||||
* modified by Evan You (@yyx990803)
|
||||
*
|
||||
* Not type-checking this because this file is perf-critical and the cost
|
||||
* of making flow understand it is not worth it.
|
||||
*/
|
||||
|
||||
import VNode, { cloneVNode } from './vnode'
|
||||
import config from '../config'
|
||||
import { SSR_ATTR } from 'shared/constants'
|
||||
import { registerRef } from './modules/template-ref'
|
||||
import { traverse } from '../observer/traverse'
|
||||
import { activeInstance } from '../instance/lifecycle'
|
||||
import { isTextInputType } from 'web/util/element'
|
||||
|
||||
import {
|
||||
warn,
|
||||
isDef,
|
||||
isUndef,
|
||||
isTrue,
|
||||
isArray,
|
||||
makeMap,
|
||||
isRegExp,
|
||||
isPrimitive
|
||||
} from '../util/index'
|
||||
|
||||
export const emptyNode = new VNode('', {}, [])
|
||||
|
||||
const hooks = ['create', 'activate', 'update', 'remove', 'destroy']
|
||||
|
||||
function sameVnode(a, b) {
|
||||
return (
|
||||
a.key === b.key &&
|
||||
a.asyncFactory === b.asyncFactory &&
|
||||
((a.tag === b.tag &&
|
||||
a.isComment === b.isComment &&
|
||||
isDef(a.data) === isDef(b.data) &&
|
||||
sameInputType(a, b)) ||
|
||||
(isTrue(a.isAsyncPlaceholder) && isUndef(b.asyncFactory.error)))
|
||||
)
|
||||
}
|
||||
|
||||
function sameInputType(a, b) {
|
||||
if (a.tag !== 'input') return true
|
||||
let i
|
||||
const typeA = isDef((i = a.data)) && isDef((i = i.attrs)) && i.type
|
||||
const typeB = isDef((i = b.data)) && isDef((i = i.attrs)) && i.type
|
||||
return typeA === typeB || (isTextInputType(typeA) && isTextInputType(typeB))
|
||||
}
|
||||
|
||||
function createKeyToOldIdx(children, beginIdx, endIdx) {
|
||||
let i, key
|
||||
const map = {}
|
||||
for (i = beginIdx; i <= endIdx; ++i) {
|
||||
key = children[i].key
|
||||
if (isDef(key)) map[key] = i
|
||||
}
|
||||
return map
|
||||
}
|
||||
|
||||
export function createPatchFunction(backend) {
|
||||
let i, j
|
||||
const cbs: any = {}
|
||||
|
||||
const { modules, nodeOps } = backend
|
||||
|
||||
for (i = 0; i < hooks.length; ++i) {
|
||||
cbs[hooks[i]] = []
|
||||
for (j = 0; j < modules.length; ++j) {
|
||||
if (isDef(modules[j][hooks[i]])) {
|
||||
cbs[hooks[i]].push(modules[j][hooks[i]])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function emptyNodeAt(elm) {
|
||||
return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)
|
||||
}
|
||||
|
||||
function createRmCb(childElm, listeners) {
|
||||
function remove() {
|
||||
if (--remove.listeners === 0) {
|
||||
removeNode(childElm)
|
||||
}
|
||||
}
|
||||
remove.listeners = listeners
|
||||
return remove
|
||||
}
|
||||
|
||||
function removeNode(el) {
|
||||
const parent = nodeOps.parentNode(el)
|
||||
// element may have already been removed due to v-html / v-text
|
||||
if (isDef(parent)) {
|
||||
nodeOps.removeChild(parent, el)
|
||||
}
|
||||
}
|
||||
|
||||
function isUnknownElement(vnode, inVPre) {
|
||||
return (
|
||||
!inVPre &&
|
||||
!vnode.ns &&
|
||||
!(
|
||||
config.ignoredElements.length &&
|
||||
config.ignoredElements.some(ignore => {
|
||||
return isRegExp(ignore)
|
||||
? ignore.test(vnode.tag)
|
||||
: ignore === vnode.tag
|
||||
})
|
||||
) &&
|
||||
config.isUnknownElement(vnode.tag)
|
||||
)
|
||||
}
|
||||
|
||||
let creatingElmInVPre = 0
|
||||
|
||||
function createElm(
|
||||
vnode,
|
||||
insertedVnodeQueue,
|
||||
parentElm?: any,
|
||||
refElm?: any,
|
||||
nested?: any,
|
||||
ownerArray?: any,
|
||||
index?: any
|
||||
) {
|
||||
if (isDef(vnode.elm) && isDef(ownerArray)) {
|
||||
// This vnode was used in a previous render!
|
||||
// now it's used as a new node, overwriting its elm would cause
|
||||
// potential patch errors down the road when it's used as an insertion
|
||||
// reference node. Instead, we clone the node on-demand before creating
|
||||
// associated DOM element for it.
|
||||
vnode = ownerArray[index] = cloneVNode(vnode)
|
||||
}
|
||||
|
||||
vnode.isRootInsert = !nested // for transition enter check
|
||||
if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {
|
||||
return
|
||||
}
|
||||
|
||||
const data = vnode.data
|
||||
const children = vnode.children
|
||||
const tag = vnode.tag
|
||||
if (isDef(tag)) {
|
||||
if (__DEV__) {
|
||||
if (data && data.pre) {
|
||||
creatingElmInVPre++
|
||||
}
|
||||
if (isUnknownElement(vnode, creatingElmInVPre)) {
|
||||
warn(
|
||||
'Unknown custom element: <' +
|
||||
tag +
|
||||
'> - did you ' +
|
||||
'register the component correctly? For recursive components, ' +
|
||||
'make sure to provide the "name" option.',
|
||||
vnode.context
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
vnode.elm = vnode.ns
|
||||
? nodeOps.createElementNS(vnode.ns, tag)
|
||||
: nodeOps.createElement(tag, vnode)
|
||||
setScope(vnode)
|
||||
|
||||
createChildren(vnode, children, insertedVnodeQueue)
|
||||
if (isDef(data)) {
|
||||
invokeCreateHooks(vnode, insertedVnodeQueue)
|
||||
}
|
||||
insert(parentElm, vnode.elm, refElm)
|
||||
|
||||
if (__DEV__ && data && data.pre) {
|
||||
creatingElmInVPre--
|
||||
}
|
||||
} else if (isTrue(vnode.isComment)) {
|
||||
vnode.elm = nodeOps.createComment(vnode.text)
|
||||
insert(parentElm, vnode.elm, refElm)
|
||||
} else {
|
||||
vnode.elm = nodeOps.createTextNode(vnode.text)
|
||||
insert(parentElm, vnode.elm, refElm)
|
||||
}
|
||||
}
|
||||
|
||||
function createComponent(vnode, insertedVnodeQueue, parentElm, refElm) {
|
||||
let i = vnode.data
|
||||
if (isDef(i)) {
|
||||
const isReactivated = isDef(vnode.componentInstance) && i.keepAlive
|
||||
if (isDef((i = i.hook)) && isDef((i = i.init))) {
|
||||
i(vnode, false /* hydrating */)
|
||||
}
|
||||
// after calling the init hook, if the vnode is a child component
|
||||
// it should've created a child instance and mounted it. the child
|
||||
// component also has set the placeholder vnode's elm.
|
||||
// in that case we can just return the element and be done.
|
||||
if (isDef(vnode.componentInstance)) {
|
||||
initComponent(vnode, insertedVnodeQueue)
|
||||
insert(parentElm, vnode.elm, refElm)
|
||||
if (isTrue(isReactivated)) {
|
||||
reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm)
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function initComponent(vnode, insertedVnodeQueue) {
|
||||
if (isDef(vnode.data.pendingInsert)) {
|
||||
insertedVnodeQueue.push.apply(
|
||||
insertedVnodeQueue,
|
||||
vnode.data.pendingInsert
|
||||
)
|
||||
vnode.data.pendingInsert = null
|
||||
}
|
||||
vnode.elm = vnode.componentInstance.$el
|
||||
if (isPatchable(vnode)) {
|
||||
invokeCreateHooks(vnode, insertedVnodeQueue)
|
||||
setScope(vnode)
|
||||
} else {
|
||||
// empty component root.
|
||||
// skip all element-related modules except for ref (#3455)
|
||||
registerRef(vnode)
|
||||
// make sure to invoke the insert hook
|
||||
insertedVnodeQueue.push(vnode)
|
||||
}
|
||||
}
|
||||
|
||||
function reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm) {
|
||||
let i
|
||||
// hack for #4339: a reactivated component with inner transition
|
||||
// does not trigger because the inner node's created hooks are not called
|
||||
// again. It's not ideal to involve module-specific logic in here but
|
||||
// there doesn't seem to be a better way to do it.
|
||||
let innerNode = vnode
|
||||
while (innerNode.componentInstance) {
|
||||
innerNode = innerNode.componentInstance._vnode
|
||||
if (isDef((i = innerNode.data)) && isDef((i = i.transition))) {
|
||||
for (i = 0; i < cbs.activate.length; ++i) {
|
||||
cbs.activate[i](emptyNode, innerNode)
|
||||
}
|
||||
insertedVnodeQueue.push(innerNode)
|
||||
break
|
||||
}
|
||||
}
|
||||
// unlike a newly created component,
|
||||
// a reactivated keep-alive component doesn't insert itself
|
||||
insert(parentElm, vnode.elm, refElm)
|
||||
}
|
||||
|
||||
function insert(parent, elm, ref) {
|
||||
if (isDef(parent)) {
|
||||
if (isDef(ref)) {
|
||||
if (nodeOps.parentNode(ref) === parent) {
|
||||
nodeOps.insertBefore(parent, elm, ref)
|
||||
}
|
||||
} else {
|
||||
nodeOps.appendChild(parent, elm)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createChildren(vnode, children, insertedVnodeQueue) {
|
||||
if (isArray(children)) {
|
||||
if (__DEV__) {
|
||||
checkDuplicateKeys(children)
|
||||
}
|
||||
for (let i = 0; i < children.length; ++i) {
|
||||
createElm(
|
||||
children[i],
|
||||
insertedVnodeQueue,
|
||||
vnode.elm,
|
||||
null,
|
||||
true,
|
||||
children,
|
||||
i
|
||||
)
|
||||
}
|
||||
} else if (isPrimitive(vnode.text)) {
|
||||
nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)))
|
||||
}
|
||||
}
|
||||
|
||||
function isPatchable(vnode) {
|
||||
while (vnode.componentInstance) {
|
||||
vnode = vnode.componentInstance._vnode
|
||||
}
|
||||
return isDef(vnode.tag)
|
||||
}
|
||||
|
||||
function invokeCreateHooks(vnode, insertedVnodeQueue) {
|
||||
for (let i = 0; i < cbs.create.length; ++i) {
|
||||
cbs.create[i](emptyNode, vnode)
|
||||
}
|
||||
i = vnode.data.hook // Reuse variable
|
||||
if (isDef(i)) {
|
||||
if (isDef(i.create)) i.create(emptyNode, vnode)
|
||||
if (isDef(i.insert)) insertedVnodeQueue.push(vnode)
|
||||
}
|
||||
}
|
||||
|
||||
// set scope id attribute for scoped CSS.
|
||||
// this is implemented as a special case to avoid the overhead
|
||||
// of going through the normal attribute patching process.
|
||||
function setScope(vnode) {
|
||||
let i
|
||||
if (isDef((i = vnode.fnScopeId))) {
|
||||
nodeOps.setStyleScope(vnode.elm, i)
|
||||
} else {
|
||||
let ancestor = vnode
|
||||
while (ancestor) {
|
||||
if (isDef((i = ancestor.context)) && isDef((i = i.$options._scopeId))) {
|
||||
nodeOps.setStyleScope(vnode.elm, i)
|
||||
}
|
||||
ancestor = ancestor.parent
|
||||
}
|
||||
}
|
||||
// for slot content they should also get the scopeId from the host instance.
|
||||
if (
|
||||
isDef((i = activeInstance)) &&
|
||||
i !== vnode.context &&
|
||||
i !== vnode.fnContext &&
|
||||
isDef((i = i.$options._scopeId))
|
||||
) {
|
||||
nodeOps.setStyleScope(vnode.elm, i)
|
||||
}
|
||||
}
|
||||
|
||||
function addVnodes(
|
||||
parentElm,
|
||||
refElm,
|
||||
vnodes,
|
||||
startIdx,
|
||||
endIdx,
|
||||
insertedVnodeQueue
|
||||
) {
|
||||
for (; startIdx <= endIdx; ++startIdx) {
|
||||
createElm(
|
||||
vnodes[startIdx],
|
||||
insertedVnodeQueue,
|
||||
parentElm,
|
||||
refElm,
|
||||
false,
|
||||
vnodes,
|
||||
startIdx
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
function invokeDestroyHook(vnode) {
|
||||
let i, j
|
||||
const data = vnode.data
|
||||
if (isDef(data)) {
|
||||
if (isDef((i = data.hook)) && isDef((i = i.destroy))) i(vnode)
|
||||
for (i = 0; i < cbs.destroy.length; ++i) cbs.destroy[i](vnode)
|
||||
}
|
||||
if (isDef((i = vnode.children))) {
|
||||
for (j = 0; j < vnode.children.length; ++j) {
|
||||
invokeDestroyHook(vnode.children[j])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function removeVnodes(vnodes, startIdx, endIdx) {
|
||||
for (; startIdx <= endIdx; ++startIdx) {
|
||||
const ch = vnodes[startIdx]
|
||||
if (isDef(ch)) {
|
||||
if (isDef(ch.tag)) {
|
||||
removeAndInvokeRemoveHook(ch)
|
||||
invokeDestroyHook(ch)
|
||||
} else {
|
||||
// Text node
|
||||
removeNode(ch.elm)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function removeAndInvokeRemoveHook(vnode, rm?: any) {
|
||||
if (isDef(rm) || isDef(vnode.data)) {
|
||||
let i
|
||||
const listeners = cbs.remove.length + 1
|
||||
if (isDef(rm)) {
|
||||
// we have a recursively passed down rm callback
|
||||
// increase the listeners count
|
||||
rm.listeners += listeners
|
||||
} else {
|
||||
// directly removing
|
||||
rm = createRmCb(vnode.elm, listeners)
|
||||
}
|
||||
// recursively invoke hooks on child component root node
|
||||
if (
|
||||
isDef((i = vnode.componentInstance)) &&
|
||||
isDef((i = i._vnode)) &&
|
||||
isDef(i.data)
|
||||
) {
|
||||
removeAndInvokeRemoveHook(i, rm)
|
||||
}
|
||||
for (i = 0; i < cbs.remove.length; ++i) {
|
||||
cbs.remove[i](vnode, rm)
|
||||
}
|
||||
if (isDef((i = vnode.data.hook)) && isDef((i = i.remove))) {
|
||||
i(vnode, rm)
|
||||
} else {
|
||||
rm()
|
||||
}
|
||||
} else {
|
||||
removeNode(vnode.elm)
|
||||
}
|
||||
}
|
||||
|
||||
function updateChildren(
|
||||
parentElm,
|
||||
oldCh,
|
||||
newCh,
|
||||
insertedVnodeQueue,
|
||||
removeOnly
|
||||
) {
|
||||
let oldStartIdx = 0
|
||||
let newStartIdx = 0
|
||||
let oldEndIdx = oldCh.length - 1
|
||||
let oldStartVnode = oldCh[0]
|
||||
let oldEndVnode = oldCh[oldEndIdx]
|
||||
let newEndIdx = newCh.length - 1
|
||||
let newStartVnode = newCh[0]
|
||||
let newEndVnode = newCh[newEndIdx]
|
||||
let oldKeyToIdx, idxInOld, vnodeToMove, refElm
|
||||
|
||||
// removeOnly is a special flag used only by <transition-group>
|
||||
// to ensure removed elements stay in correct relative positions
|
||||
// during leaving transitions
|
||||
const canMove = !removeOnly
|
||||
|
||||
if (__DEV__) {
|
||||
checkDuplicateKeys(newCh)
|
||||
}
|
||||
|
||||
while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
|
||||
if (isUndef(oldStartVnode)) {
|
||||
oldStartVnode = oldCh[++oldStartIdx] // Vnode has been moved left
|
||||
} else if (isUndef(oldEndVnode)) {
|
||||
oldEndVnode = oldCh[--oldEndIdx]
|
||||
} else if (sameVnode(oldStartVnode, newStartVnode)) {
|
||||
patchVnode(
|
||||
oldStartVnode,
|
||||
newStartVnode,
|
||||
insertedVnodeQueue,
|
||||
newCh,
|
||||
newStartIdx
|
||||
)
|
||||
oldStartVnode = oldCh[++oldStartIdx]
|
||||
newStartVnode = newCh[++newStartIdx]
|
||||
} else if (sameVnode(oldEndVnode, newEndVnode)) {
|
||||
patchVnode(
|
||||
oldEndVnode,
|
||||
newEndVnode,
|
||||
insertedVnodeQueue,
|
||||
newCh,
|
||||
newEndIdx
|
||||
)
|
||||
oldEndVnode = oldCh[--oldEndIdx]
|
||||
newEndVnode = newCh[--newEndIdx]
|
||||
} else if (sameVnode(oldStartVnode, newEndVnode)) {
|
||||
// Vnode moved right
|
||||
patchVnode(
|
||||
oldStartVnode,
|
||||
newEndVnode,
|
||||
insertedVnodeQueue,
|
||||
newCh,
|
||||
newEndIdx
|
||||
)
|
||||
canMove &&
|
||||
nodeOps.insertBefore(
|
||||
parentElm,
|
||||
oldStartVnode.elm,
|
||||
nodeOps.nextSibling(oldEndVnode.elm)
|
||||
)
|
||||
oldStartVnode = oldCh[++oldStartIdx]
|
||||
newEndVnode = newCh[--newEndIdx]
|
||||
} else if (sameVnode(oldEndVnode, newStartVnode)) {
|
||||
// Vnode moved left
|
||||
patchVnode(
|
||||
oldEndVnode,
|
||||
newStartVnode,
|
||||
insertedVnodeQueue,
|
||||
newCh,
|
||||
newStartIdx
|
||||
)
|
||||
canMove &&
|
||||
nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm)
|
||||
oldEndVnode = oldCh[--oldEndIdx]
|
||||
newStartVnode = newCh[++newStartIdx]
|
||||
} else {
|
||||
if (isUndef(oldKeyToIdx))
|
||||
oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx)
|
||||
idxInOld = isDef(newStartVnode.key)
|
||||
? oldKeyToIdx[newStartVnode.key]
|
||||
: findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx)
|
||||
if (isUndef(idxInOld)) {
|
||||
// New element
|
||||
createElm(
|
||||
newStartVnode,
|
||||
insertedVnodeQueue,
|
||||
parentElm,
|
||||
oldStartVnode.elm,
|
||||
false,
|
||||
newCh,
|
||||
newStartIdx
|
||||
)
|
||||
} else {
|
||||
vnodeToMove = oldCh[idxInOld]
|
||||
if (sameVnode(vnodeToMove, newStartVnode)) {
|
||||
patchVnode(
|
||||
vnodeToMove,
|
||||
newStartVnode,
|
||||
insertedVnodeQueue,
|
||||
newCh,
|
||||
newStartIdx
|
||||
)
|
||||
oldCh[idxInOld] = undefined
|
||||
canMove &&
|
||||
nodeOps.insertBefore(
|
||||
parentElm,
|
||||
vnodeToMove.elm,
|
||||
oldStartVnode.elm
|
||||
)
|
||||
} else {
|
||||
// same key but different element. treat as new element
|
||||
createElm(
|
||||
newStartVnode,
|
||||
insertedVnodeQueue,
|
||||
parentElm,
|
||||
oldStartVnode.elm,
|
||||
false,
|
||||
newCh,
|
||||
newStartIdx
|
||||
)
|
||||
}
|
||||
}
|
||||
newStartVnode = newCh[++newStartIdx]
|
||||
}
|
||||
}
|
||||
if (oldStartIdx > oldEndIdx) {
|
||||
refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm
|
||||
addVnodes(
|
||||
parentElm,
|
||||
refElm,
|
||||
newCh,
|
||||
newStartIdx,
|
||||
newEndIdx,
|
||||
insertedVnodeQueue
|
||||
)
|
||||
} else if (newStartIdx > newEndIdx) {
|
||||
removeVnodes(oldCh, oldStartIdx, oldEndIdx)
|
||||
}
|
||||
}
|
||||
|
||||
function checkDuplicateKeys(children) {
|
||||
const seenKeys = {}
|
||||
for (let i = 0; i < children.length; i++) {
|
||||
const vnode = children[i]
|
||||
const key = vnode.key
|
||||
if (isDef(key)) {
|
||||
if (seenKeys[key]) {
|
||||
warn(
|
||||
`Duplicate keys detected: '${key}'. This may cause an update error.`,
|
||||
vnode.context
|
||||
)
|
||||
} else {
|
||||
seenKeys[key] = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function findIdxInOld(node, oldCh, start, end) {
|
||||
for (let i = start; i < end; i++) {
|
||||
const c = oldCh[i]
|
||||
if (isDef(c) && sameVnode(node, c)) return i
|
||||
}
|
||||
}
|
||||
|
||||
function patchVnode(
|
||||
oldVnode,
|
||||
vnode,
|
||||
insertedVnodeQueue,
|
||||
ownerArray,
|
||||
index,
|
||||
removeOnly?: any
|
||||
) {
|
||||
if (oldVnode === vnode) {
|
||||
return
|
||||
}
|
||||
|
||||
if (isDef(vnode.elm) && isDef(ownerArray)) {
|
||||
// clone reused vnode
|
||||
vnode = ownerArray[index] = cloneVNode(vnode)
|
||||
}
|
||||
|
||||
const elm = (vnode.elm = oldVnode.elm)
|
||||
|
||||
if (isTrue(oldVnode.isAsyncPlaceholder)) {
|
||||
if (isDef(vnode.asyncFactory.resolved)) {
|
||||
hydrate(oldVnode.elm, vnode, insertedVnodeQueue)
|
||||
} else {
|
||||
vnode.isAsyncPlaceholder = true
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// reuse element for static trees.
|
||||
// note we only do this if the vnode is cloned -
|
||||
// if the new node is not cloned it means the render functions have been
|
||||
// reset by the hot-reload-api and we need to do a proper re-render.
|
||||
if (
|
||||
isTrue(vnode.isStatic) &&
|
||||
isTrue(oldVnode.isStatic) &&
|
||||
vnode.key === oldVnode.key &&
|
||||
(isTrue(vnode.isCloned) || isTrue(vnode.isOnce))
|
||||
) {
|
||||
vnode.componentInstance = oldVnode.componentInstance
|
||||
return
|
||||
}
|
||||
|
||||
let i
|
||||
const data = vnode.data
|
||||
if (isDef(data) && isDef((i = data.hook)) && isDef((i = i.prepatch))) {
|
||||
i(oldVnode, vnode)
|
||||
}
|
||||
|
||||
const oldCh = oldVnode.children
|
||||
const ch = vnode.children
|
||||
if (isDef(data) && isPatchable(vnode)) {
|
||||
for (i = 0; i < cbs.update.length; ++i) cbs.update[i](oldVnode, vnode)
|
||||
if (isDef((i = data.hook)) && isDef((i = i.update))) i(oldVnode, vnode)
|
||||
}
|
||||
if (isUndef(vnode.text)) {
|
||||
if (isDef(oldCh) && isDef(ch)) {
|
||||
if (oldCh !== ch)
|
||||
updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly)
|
||||
} else if (isDef(ch)) {
|
||||
if (__DEV__) {
|
||||
checkDuplicateKeys(ch)
|
||||
}
|
||||
if (isDef(oldVnode.text)) nodeOps.setTextContent(elm, '')
|
||||
addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue)
|
||||
} else if (isDef(oldCh)) {
|
||||
removeVnodes(oldCh, 0, oldCh.length - 1)
|
||||
} else if (isDef(oldVnode.text)) {
|
||||
nodeOps.setTextContent(elm, '')
|
||||
}
|
||||
} else if (oldVnode.text !== vnode.text) {
|
||||
nodeOps.setTextContent(elm, vnode.text)
|
||||
}
|
||||
if (isDef(data)) {
|
||||
if (isDef((i = data.hook)) && isDef((i = i.postpatch))) i(oldVnode, vnode)
|
||||
}
|
||||
}
|
||||
|
||||
function invokeInsertHook(vnode, queue, initial) {
|
||||
// delay insert hooks for component root nodes, invoke them after the
|
||||
// element is really inserted
|
||||
if (isTrue(initial) && isDef(vnode.parent)) {
|
||||
vnode.parent.data.pendingInsert = queue
|
||||
} else {
|
||||
for (let i = 0; i < queue.length; ++i) {
|
||||
queue[i].data.hook.insert(queue[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let hydrationBailed = false
|
||||
// list of modules that can skip create hook during hydration because they
|
||||
// are already rendered on the client or has no need for initialization
|
||||
// Note: style is excluded because it relies on initial clone for future
|
||||
// deep updates (#7063).
|
||||
const isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key')
|
||||
|
||||
// Note: this is a browser-only function so we can assume elms are DOM nodes.
|
||||
function hydrate(elm, vnode, insertedVnodeQueue, inVPre?: boolean) {
|
||||
let i
|
||||
const { tag, data, children } = vnode
|
||||
inVPre = inVPre || (data && data.pre)
|
||||
vnode.elm = elm
|
||||
|
||||
if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {
|
||||
vnode.isAsyncPlaceholder = true
|
||||
return true
|
||||
}
|
||||
// assert node match
|
||||
if (__DEV__) {
|
||||
if (!assertNodeMatch(elm, vnode, inVPre)) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
if (isDef(data)) {
|
||||
if (isDef((i = data.hook)) && isDef((i = i.init)))
|
||||
i(vnode, true /* hydrating */)
|
||||
if (isDef((i = vnode.componentInstance))) {
|
||||
// child component. it should have hydrated its own tree.
|
||||
initComponent(vnode, insertedVnodeQueue)
|
||||
return true
|
||||
}
|
||||
}
|
||||
if (isDef(tag)) {
|
||||
if (isDef(children)) {
|
||||
// empty element, allow client to pick up and populate children
|
||||
if (!elm.hasChildNodes()) {
|
||||
createChildren(vnode, children, insertedVnodeQueue)
|
||||
} else {
|
||||
// v-html and domProps: innerHTML
|
||||
if (
|
||||
isDef((i = data)) &&
|
||||
isDef((i = i.domProps)) &&
|
||||
isDef((i = i.innerHTML))
|
||||
) {
|
||||
if (i !== elm.innerHTML) {
|
||||
/* istanbul ignore if */
|
||||
if (
|
||||
__DEV__ &&
|
||||
typeof console !== 'undefined' &&
|
||||
!hydrationBailed
|
||||
) {
|
||||
hydrationBailed = true
|
||||
console.warn('Parent: ', elm)
|
||||
console.warn('server innerHTML: ', i)
|
||||
console.warn('client innerHTML: ', elm.innerHTML)
|
||||
}
|
||||
return false
|
||||
}
|
||||
} else {
|
||||
// iterate and compare children lists
|
||||
let childrenMatch = true
|
||||
let childNode = elm.firstChild
|
||||
for (let i = 0; i < children.length; i++) {
|
||||
if (
|
||||
!childNode ||
|
||||
!hydrate(childNode, children[i], insertedVnodeQueue, inVPre)
|
||||
) {
|
||||
childrenMatch = false
|
||||
break
|
||||
}
|
||||
childNode = childNode.nextSibling
|
||||
}
|
||||
// if childNode is not null, it means the actual childNodes list is
|
||||
// longer than the virtual children list.
|
||||
if (!childrenMatch || childNode) {
|
||||
/* istanbul ignore if */
|
||||
if (
|
||||
__DEV__ &&
|
||||
typeof console !== 'undefined' &&
|
||||
!hydrationBailed
|
||||
) {
|
||||
hydrationBailed = true
|
||||
console.warn('Parent: ', elm)
|
||||
console.warn(
|
||||
'Mismatching childNodes vs. VNodes: ',
|
||||
elm.childNodes,
|
||||
children
|
||||
)
|
||||
}
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isDef(data)) {
|
||||
let fullInvoke = false
|
||||
for (const key in data) {
|
||||
if (!isRenderedModule(key)) {
|
||||
fullInvoke = true
|
||||
invokeCreateHooks(vnode, insertedVnodeQueue)
|
||||
break
|
||||
}
|
||||
}
|
||||
if (!fullInvoke && data['class']) {
|
||||
// ensure collecting deps for deep class bindings for future updates
|
||||
traverse(data['class'])
|
||||
}
|
||||
}
|
||||
} else if (elm.data !== vnode.text) {
|
||||
elm.data = vnode.text
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
function assertNodeMatch(node, vnode, inVPre) {
|
||||
if (isDef(vnode.tag)) {
|
||||
return (
|
||||
vnode.tag.indexOf('vue-component') === 0 ||
|
||||
(!isUnknownElement(vnode, inVPre) &&
|
||||
vnode.tag.toLowerCase() ===
|
||||
(node.tagName && node.tagName.toLowerCase()))
|
||||
)
|
||||
} else {
|
||||
return node.nodeType === (vnode.isComment ? 8 : 3)
|
||||
}
|
||||
}
|
||||
|
||||
return function patch(oldVnode, vnode, hydrating, removeOnly) {
|
||||
if (isUndef(vnode)) {
|
||||
if (isDef(oldVnode)) invokeDestroyHook(oldVnode)
|
||||
return
|
||||
}
|
||||
|
||||
let isInitialPatch = false
|
||||
const insertedVnodeQueue: any[] = []
|
||||
|
||||
if (isUndef(oldVnode)) {
|
||||
// empty mount (likely as component), create new root element
|
||||
isInitialPatch = true
|
||||
createElm(vnode, insertedVnodeQueue)
|
||||
} else {
|
||||
const isRealElement = isDef(oldVnode.nodeType)
|
||||
if (!isRealElement && sameVnode(oldVnode, vnode)) {
|
||||
// patch existing root node
|
||||
patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly)
|
||||
} else {
|
||||
if (isRealElement) {
|
||||
// mounting to a real element
|
||||
// check if this is server-rendered content and if we can perform
|
||||
// a successful hydration.
|
||||
if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {
|
||||
oldVnode.removeAttribute(SSR_ATTR)
|
||||
hydrating = true
|
||||
}
|
||||
if (isTrue(hydrating)) {
|
||||
if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {
|
||||
invokeInsertHook(vnode, insertedVnodeQueue, true)
|
||||
return oldVnode
|
||||
} else if (__DEV__) {
|
||||
warn(
|
||||
'The client-side rendered virtual DOM tree is not matching ' +
|
||||
'server-rendered content. This is likely caused by incorrect ' +
|
||||
'HTML markup, for example nesting block-level elements inside ' +
|
||||
'<p>, or missing <tbody>. Bailing hydration and performing ' +
|
||||
'full client-side render.'
|
||||
)
|
||||
}
|
||||
}
|
||||
// either not server-rendered, or hydration failed.
|
||||
// create an empty node and replace it
|
||||
oldVnode = emptyNodeAt(oldVnode)
|
||||
}
|
||||
|
||||
// replacing existing element
|
||||
const oldElm = oldVnode.elm
|
||||
const parentElm = nodeOps.parentNode(oldElm)
|
||||
|
||||
// create new node
|
||||
createElm(
|
||||
vnode,
|
||||
insertedVnodeQueue,
|
||||
// extremely rare edge case: do not insert if old element is in a
|
||||
// leaving transition. Only happens when combining transition +
|
||||
// keep-alive + HOCs. (#4590)
|
||||
oldElm._leaveCb ? null : parentElm,
|
||||
nodeOps.nextSibling(oldElm)
|
||||
)
|
||||
|
||||
// update parent placeholder node element, recursively
|
||||
if (isDef(vnode.parent)) {
|
||||
let ancestor = vnode.parent
|
||||
const patchable = isPatchable(vnode)
|
||||
while (ancestor) {
|
||||
for (let i = 0; i < cbs.destroy.length; ++i) {
|
||||
cbs.destroy[i](ancestor)
|
||||
}
|
||||
ancestor.elm = vnode.elm
|
||||
if (patchable) {
|
||||
for (let i = 0; i < cbs.create.length; ++i) {
|
||||
cbs.create[i](emptyNode, ancestor)
|
||||
}
|
||||
// #6513
|
||||
// invoke insert hooks that may have been merged by create hooks.
|
||||
// e.g. for directives that uses the "inserted" hook.
|
||||
const insert = ancestor.data.hook.insert
|
||||
if (insert.merged) {
|
||||
// start at index 1 to avoid re-invoking component mounted hook
|
||||
for (let i = 1; i < insert.fns.length; i++) {
|
||||
insert.fns[i]()
|
||||
}
|
||||
}
|
||||
} else {
|
||||
registerRef(ancestor)
|
||||
}
|
||||
ancestor = ancestor.parent
|
||||
}
|
||||
}
|
||||
|
||||
// destroy old node
|
||||
if (isDef(parentElm)) {
|
||||
removeVnodes([oldVnode], 0, 0)
|
||||
} else if (isDef(oldVnode.tag)) {
|
||||
invokeDestroyHook(oldVnode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch)
|
||||
return vnode.elm
|
||||
}
|
||||
}
|
119
node_modules/vue/src/core/vdom/vnode.ts
generated
vendored
Normal file
119
node_modules/vue/src/core/vdom/vnode.ts
generated
vendored
Normal file
@ -0,0 +1,119 @@
|
||||
import type { Component } from 'types/component'
|
||||
import type { ComponentOptions } from 'types/options'
|
||||
import type { VNodeComponentOptions, VNodeData } from 'types/vnode'
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export default class VNode {
|
||||
tag?: string
|
||||
data: VNodeData | undefined
|
||||
children?: Array<VNode> | null
|
||||
text?: string
|
||||
elm: Node | undefined
|
||||
ns?: string
|
||||
context?: Component // rendered in this component's scope
|
||||
key: string | number | undefined
|
||||
componentOptions?: VNodeComponentOptions
|
||||
componentInstance?: Component // component instance
|
||||
parent: VNode | undefined | null // component placeholder node
|
||||
|
||||
// strictly internal
|
||||
raw: boolean // contains raw HTML? (server only)
|
||||
isStatic: boolean // hoisted static node
|
||||
isRootInsert: boolean // necessary for enter transition check
|
||||
isComment: boolean // empty comment placeholder?
|
||||
isCloned: boolean // is a cloned node?
|
||||
isOnce: boolean // is a v-once node?
|
||||
asyncFactory?: Function // async component factory function
|
||||
asyncMeta: Object | void
|
||||
isAsyncPlaceholder: boolean
|
||||
ssrContext?: Object | void
|
||||
fnContext: Component | void // real context vm for functional nodes
|
||||
fnOptions?: ComponentOptions | null // for SSR caching
|
||||
devtoolsMeta?: Object | null // used to store functional render context for devtools
|
||||
fnScopeId?: string | null // functional scope id support
|
||||
isComponentRootElement?: boolean | null // for SSR directives
|
||||
|
||||
constructor(
|
||||
tag?: string,
|
||||
data?: VNodeData,
|
||||
children?: Array<VNode> | null,
|
||||
text?: string,
|
||||
elm?: Node,
|
||||
context?: Component,
|
||||
componentOptions?: VNodeComponentOptions,
|
||||
asyncFactory?: Function
|
||||
) {
|
||||
this.tag = tag
|
||||
this.data = data
|
||||
this.children = children
|
||||
this.text = text
|
||||
this.elm = elm
|
||||
this.ns = undefined
|
||||
this.context = context
|
||||
this.fnContext = undefined
|
||||
this.fnOptions = undefined
|
||||
this.fnScopeId = undefined
|
||||
this.key = data && data.key
|
||||
this.componentOptions = componentOptions
|
||||
this.componentInstance = undefined
|
||||
this.parent = undefined
|
||||
this.raw = false
|
||||
this.isStatic = false
|
||||
this.isRootInsert = true
|
||||
this.isComment = false
|
||||
this.isCloned = false
|
||||
this.isOnce = false
|
||||
this.asyncFactory = asyncFactory
|
||||
this.asyncMeta = undefined
|
||||
this.isAsyncPlaceholder = false
|
||||
}
|
||||
|
||||
// DEPRECATED: alias for componentInstance for backwards compat.
|
||||
/* istanbul ignore next */
|
||||
get child(): Component | void {
|
||||
return this.componentInstance
|
||||
}
|
||||
}
|
||||
|
||||
export const createEmptyVNode = (text: string = '') => {
|
||||
const node = new VNode()
|
||||
node.text = text
|
||||
node.isComment = true
|
||||
return node
|
||||
}
|
||||
|
||||
export function createTextVNode(val: string | number) {
|
||||
return new VNode(undefined, undefined, undefined, String(val))
|
||||
}
|
||||
|
||||
// optimized shallow clone
|
||||
// used for static nodes and slot nodes because they may be reused across
|
||||
// multiple renders, cloning them avoids errors when DOM manipulations rely
|
||||
// on their elm reference.
|
||||
export function cloneVNode(vnode: VNode): VNode {
|
||||
const cloned = new VNode(
|
||||
vnode.tag,
|
||||
vnode.data,
|
||||
// #7975
|
||||
// clone children array to avoid mutating original in case of cloning
|
||||
// a child.
|
||||
vnode.children && vnode.children.slice(),
|
||||
vnode.text,
|
||||
vnode.elm,
|
||||
vnode.context,
|
||||
vnode.componentOptions,
|
||||
vnode.asyncFactory
|
||||
)
|
||||
cloned.ns = vnode.ns
|
||||
cloned.isStatic = vnode.isStatic
|
||||
cloned.key = vnode.key
|
||||
cloned.isComment = vnode.isComment
|
||||
cloned.fnContext = vnode.fnContext
|
||||
cloned.fnOptions = vnode.fnOptions
|
||||
cloned.fnScopeId = vnode.fnScopeId
|
||||
cloned.asyncMeta = vnode.asyncMeta
|
||||
cloned.isCloned = true
|
||||
return cloned
|
||||
}
|
Reference in New Issue
Block a user