import { VNode, VNodeChild, isVNode } from './vnode' import { reactive, ReactiveEffect, pauseTracking, resetTracking, shallowReadonly } from '@vue/reactivity' import { ComponentPublicInstance, ComponentPublicProxyTarget, PublicInstanceProxyHandlers, RuntimeCompiledPublicInstanceProxyHandlers, createDevProxyTarget, exposePropsOnDevProxyTarget, exposeRenderContextOnDevProxyTarget } from './componentProxy' import { ComponentPropsOptions, initProps } from './componentProps' import { Slots, initSlots, InternalSlots } from './componentSlots' import { warn } from './warning' import { ErrorCodes, callWithErrorHandling } from './errorHandling' import { AppContext, createAppContext, AppConfig } from './apiCreateApp' import { Directive, validateDirectiveName } from './directives' import { applyOptions, ComponentOptions } from './componentOptions' import { EmitsOptions, ObjectEmitsOptions, EmitFn, emit } from './componentEmits' import { EMPTY_OBJ, isFunction, NOOP, isObject, NO, makeMap, isPromise, ShapeFlags } from '@vue/shared' import { SuspenseBoundary } from './components/Suspense' import { CompilerOptions } from '@vue/compiler-core' import { currentRenderingInstance, markAttrsAccessed } from './componentRenderUtils' import { startMeasure, endMeasure } from './profiling' export type Data = { [key: string]: unknown } export interface SFCInternalOptions { __scopeId?: string __cssModules?: Data __hmrId?: string __hmrUpdated?: boolean } export interface FunctionalComponent< P = {}, E extends EmitsOptions = Record > extends SFCInternalOptions { (props: P, ctx: SetupContext): any props?: ComponentPropsOptions

emits?: E | (keyof E)[] inheritAttrs?: boolean displayName?: string } export interface ClassComponent { new (...args: any[]): ComponentPublicInstance __vccOpts: ComponentOptions } export type Component = ComponentOptions | FunctionalComponent // A type used in public APIs where a component type is expected. // The constructor type is an artificial type returned by defineComponent(). export type PublicAPIComponent = | Component | { new (...args: any[]): ComponentPublicInstance } export { ComponentOptions } type LifecycleHook = Function[] | null export const enum LifecycleHooks { BEFORE_CREATE = 'bc', CREATED = 'c', BEFORE_MOUNT = 'bm', MOUNTED = 'm', BEFORE_UPDATE = 'bu', UPDATED = 'u', BEFORE_UNMOUNT = 'bum', UNMOUNTED = 'um', DEACTIVATED = 'da', ACTIVATED = 'a', RENDER_TRIGGERED = 'rtg', RENDER_TRACKED = 'rtc', ERROR_CAPTURED = 'ec' } export interface SetupContext { attrs: Data slots: Slots emit: EmitFn } export type RenderFunction = { ( ctx: ComponentPublicInstance, cache: ComponentInternalInstance['renderCache'] ): VNodeChild _rc?: boolean // isRuntimeCompiled } export interface ComponentInternalInstance { uid: number type: Component parent: ComponentInternalInstance | null appContext: AppContext root: ComponentInternalInstance vnode: VNode next: VNode | null subTree: VNode update: ReactiveEffect render: RenderFunction | null effects: ReactiveEffect[] | null provides: Data // cache for proxy access type to avoid hasOwnProperty calls accessCache: Data | null // cache for render function values that rely on _ctx but won't need updates // after initialized (e.g. inline handlers) renderCache: (Function | VNode)[] // assets for fast resolution components: Record directives: Record // the rest are only for stateful components renderContext: Data data: Data props: Data attrs: Data slots: InternalSlots proxy: ComponentPublicInstance | null // The target object for the public instance proxy. In dev mode, we also // define getters for all known instance properties on it so it can be // properly inspected in the console. These getters are skipped in prod mode // for performance. In addition, any user attached properties // (via `this.x = ...`) are also stored on this object. proxyTarget: ComponentPublicProxyTarget // alternative proxy used only for runtime-compiled render functions using // `with` block withProxy: ComponentPublicInstance | null setupContext: SetupContext | null refs: Data emit: EmitFn // suspense related suspense: SuspenseBoundary | null asyncDep: Promise | null asyncResolved: boolean // lifecycle isMounted: boolean isUnmounted: boolean isDeactivated: boolean [LifecycleHooks.BEFORE_CREATE]: LifecycleHook [LifecycleHooks.CREATED]: LifecycleHook [LifecycleHooks.BEFORE_MOUNT]: LifecycleHook [LifecycleHooks.MOUNTED]: LifecycleHook [LifecycleHooks.BEFORE_UPDATE]: LifecycleHook [LifecycleHooks.UPDATED]: LifecycleHook [LifecycleHooks.BEFORE_UNMOUNT]: LifecycleHook [LifecycleHooks.UNMOUNTED]: LifecycleHook [LifecycleHooks.RENDER_TRACKED]: LifecycleHook [LifecycleHooks.RENDER_TRIGGERED]: LifecycleHook [LifecycleHooks.ACTIVATED]: LifecycleHook [LifecycleHooks.DEACTIVATED]: LifecycleHook [LifecycleHooks.ERROR_CAPTURED]: LifecycleHook // hmr marker (dev only) renderUpdated?: boolean } const emptyAppContext = createAppContext() let uid = 0 export function createComponentInstance( vnode: VNode, parent: ComponentInternalInstance | null, suspense: SuspenseBoundary | null ) { // inherit parent app context - or - if root, adopt from root vnode const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext const instance: ComponentInternalInstance = { uid: uid++, vnode, parent, appContext, type: vnode.type as Component, root: null!, // to be immediately set next: null, subTree: null!, // will be set synchronously right after creation update: null!, // will be set synchronously right after creation render: null, proxy: null, proxyTarget: null!, // to be immediately set withProxy: null, setupContext: null, effects: null, provides: parent ? parent.provides : Object.create(appContext.provides), accessCache: null!, renderCache: [], // setup context properties renderContext: EMPTY_OBJ, data: EMPTY_OBJ, props: EMPTY_OBJ, attrs: EMPTY_OBJ, slots: EMPTY_OBJ, refs: EMPTY_OBJ, // per-instance asset storage (mutable during options resolution) components: Object.create(appContext.components), directives: Object.create(appContext.directives), // suspense related suspense, asyncDep: null, asyncResolved: false, // lifecycle hooks // not using enums here because it results in computed properties isMounted: false, isUnmounted: false, isDeactivated: false, bc: null, c: null, bm: null, m: null, bu: null, u: null, um: null, bum: null, da: null, a: null, rtg: null, rtc: null, ec: null, emit: null as any // to be set immediately } if (__DEV__) { instance.proxyTarget = createDevProxyTarget(instance) } else { instance.proxyTarget = { _: instance } } instance.root = parent ? parent.root : instance instance.emit = emit.bind(null, instance) return instance } export let currentInstance: ComponentInternalInstance | null = null export const getCurrentInstance: () => ComponentInternalInstance | null = () => currentInstance || currentRenderingInstance export const setCurrentInstance = ( instance: ComponentInternalInstance | null ) => { currentInstance = instance } const isBuiltInTag = /*#__PURE__*/ makeMap('slot,component') export function validateComponentName(name: string, config: AppConfig) { const appIsNativeTag = config.isNativeTag || NO if (isBuiltInTag(name) || appIsNativeTag(name)) { warn( 'Do not use built-in or reserved HTML elements as component id: ' + name ) } } export let isInSSRComponentSetup = false export function setupComponent( instance: ComponentInternalInstance, isSSR = false ) { isInSSRComponentSetup = isSSR const { props, children, shapeFlag } = instance.vnode const isStateful = shapeFlag & ShapeFlags.STATEFUL_COMPONENT initProps(instance, props, isStateful, isSSR) initSlots(instance, children) const setupResult = isStateful ? setupStatefulComponent(instance, isSSR) : undefined isInSSRComponentSetup = false return setupResult } function setupStatefulComponent( instance: ComponentInternalInstance, isSSR: boolean ) { const Component = instance.type as ComponentOptions if (__DEV__) { if (Component.name) { validateComponentName(Component.name, instance.appContext.config) } if (Component.components) { const names = Object.keys(Component.components) for (let i = 0; i < names.length; i++) { validateComponentName(names[i], instance.appContext.config) } } if (Component.directives) { const names = Object.keys(Component.directives) for (let i = 0; i < names.length; i++) { validateDirectiveName(names[i]) } } } // 0. create render proxy property access cache instance.accessCache = {} // 1. create public instance / render proxy instance.proxy = new Proxy(instance.proxyTarget, PublicInstanceProxyHandlers) if (__DEV__) { exposePropsOnDevProxyTarget(instance) } // 2. call setup() const { setup } = Component if (setup) { const setupContext = (instance.setupContext = setup.length > 1 ? createSetupContext(instance) : null) currentInstance = instance pauseTracking() const setupResult = callWithErrorHandling( setup, instance, ErrorCodes.SETUP_FUNCTION, [__DEV__ ? shallowReadonly(instance.props) : instance.props, setupContext] ) resetTracking() currentInstance = null if (isPromise(setupResult)) { if (isSSR) { // return the promise so server-renderer can wait on it return setupResult.then((resolvedResult: unknown) => { handleSetupResult(instance, resolvedResult, isSSR) }) } else if (__FEATURE_SUSPENSE__) { // async setup returned Promise. // bail here and wait for re-entry. instance.asyncDep = setupResult } else if (__DEV__) { warn( `setup() returned a Promise, but the version of Vue you are using ` + `does not support it yet.` ) } } else { handleSetupResult(instance, setupResult, isSSR) } } else { finishComponentSetup(instance, isSSR) } } export function handleSetupResult( instance: ComponentInternalInstance, setupResult: unknown, isSSR: boolean ) { if (isFunction(setupResult)) { // setup returned an inline render function instance.render = setupResult as RenderFunction } else if (isObject(setupResult)) { if (__DEV__ && isVNode(setupResult)) { warn( `setup() should not return VNodes directly - ` + `return a render function instead.` ) } // setup returned bindings. // assuming a render function compiled from template is present. instance.renderContext = reactive(setupResult) if (__DEV__) { exposeRenderContextOnDevProxyTarget(instance) } } else if (__DEV__ && setupResult !== undefined) { warn( `setup() should return an object. Received: ${ setupResult === null ? 'null' : typeof setupResult }` ) } finishComponentSetup(instance, isSSR) } type CompileFunction = ( template: string | object, options?: CompilerOptions ) => RenderFunction let compile: CompileFunction | undefined // exported method uses any to avoid d.ts relying on the compiler types. export function registerRuntimeCompiler(_compile: any) { compile = _compile } function finishComponentSetup( instance: ComponentInternalInstance, isSSR: boolean ) { const Component = instance.type as ComponentOptions // template / render function normalization if (__NODE_JS__ && isSSR) { if (Component.render) { instance.render = Component.render as RenderFunction } } else if (!instance.render) { if (compile && Component.template && !Component.render) { if (__DEV__) { startMeasure(instance, `compile`) } Component.render = compile(Component.template, { isCustomElement: instance.appContext.config.isCustomElement || NO }) if (__DEV__) { endMeasure(instance, `compile`) } // mark the function as runtime compiled ;(Component.render as RenderFunction)._rc = true } if (__DEV__ && !Component.render) { /* istanbul ignore if */ if (!compile && Component.template) { warn( `Component provides template but the build of Vue you are running ` + `does not support runtime template compilation. Either use the ` + `full build or pre-compile the template using Vue CLI.` ) } else { warn(`Component is missing template or render function.`) } } instance.render = (Component.render || NOOP) as RenderFunction // for runtime-compiled render functions using `with` blocks, the render // proxy used needs a different `has` handler which is more performant and // also only allows a whitelist of globals to fallthrough. if (instance.render._rc) { instance.withProxy = new Proxy( instance.proxyTarget, RuntimeCompiledPublicInstanceProxyHandlers ) } } // support for 2.x options if (__FEATURE_OPTIONS__) { currentInstance = instance applyOptions(instance, Component) currentInstance = null } } const attrHandlers: ProxyHandler = { get: (target, key: string) => { markAttrsAccessed() return target[key] }, set: () => { warn(`setupContext.attrs is readonly.`) return false }, deleteProperty: () => { warn(`setupContext.attrs is readonly.`) return false } } function createSetupContext(instance: ComponentInternalInstance): SetupContext { if (__DEV__) { // We use getters in dev in case libs like test-utils overwrite instance // properties (overwrites should not be done in prod) return Object.freeze({ get attrs() { return new Proxy(instance.attrs, attrHandlers) }, get slots() { return shallowReadonly(instance.slots) }, get emit() { return (event: string, ...args: any[]) => instance.emit(event, ...args) } }) } else { return { attrs: instance.attrs, slots: instance.slots, emit: instance.emit } } } // record effects created during a component's setup() so that they can be // stopped when the component unmounts export function recordInstanceBoundEffect(effect: ReactiveEffect) { if (currentInstance) { ;(currentInstance.effects || (currentInstance.effects = [])).push(effect) } } const classifyRE = /(?:^|[-_])(\w)/g const classify = (str: string): string => str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '') export function formatComponentName( Component: Component, file?: string ): string { let name = isFunction(Component) ? Component.displayName || Component.name : Component.name if (!name && file) { const match = file.match(/([^/\\]+)\.vue$/) if (match) { name = match[1] } } return name ? classify(name) : 'Anonymous' }