Skip to content

Commit

Permalink
fix(sfc): fix sfc name inference type check
Browse files Browse the repository at this point in the history
fix #12637
  • Loading branch information
yyx990803 committed Jul 12, 2022
1 parent 018d29a commit 04b4703
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
9 changes: 5 additions & 4 deletions src/core/components/keep-alive.ts
Expand Up @@ -3,6 +3,7 @@ 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
Expand All @@ -12,8 +13,8 @@ type CacheEntry = {

type CacheEntryMap = Record<string, CacheEntry | null>

function getComponentName(opts?: VNodeComponentOptions): string | null {
return opts && (opts.Ctor.options.name || opts.tag)
function _getComponentName(opts?: VNodeComponentOptions): string | null {
return opts && (getComponentName(opts.Ctor.options as any) || opts.tag)
}

function matches(
Expand Down Expand Up @@ -81,7 +82,7 @@ export default {
if (vnodeToCache) {
const { tag, componentInstance, componentOptions } = vnodeToCache
cache[keyToCache] = {
name: getComponentName(componentOptions),
name: _getComponentName(componentOptions),
tag,
componentInstance
}
Expand Down Expand Up @@ -126,7 +127,7 @@ export default {
const componentOptions = vnode && vnode.componentOptions
if (componentOptions) {
// check pattern
const name = getComponentName(componentOptions)
const name = _getComponentName(componentOptions)
const { include, exclude } = this
if (
// not included
Expand Down
4 changes: 3 additions & 1 deletion src/core/global-api/extend.ts
Expand Up @@ -3,6 +3,7 @@ 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) {
/**
Expand All @@ -25,7 +26,8 @@ export function initExtend(Vue: GlobalAPI) {
return cachedCtors[SuperId]
}

const name = extendOptions.name || Super.options.name
const name =
getComponentName(extendOptions) || getComponentName(Super.options)
if (__DEV__ && name) {
validateComponentName(name)
}
Expand Down
3 changes: 2 additions & 1 deletion src/core/util/debug.ts
Expand Up @@ -2,6 +2,7 @@ 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
Expand Down Expand Up @@ -40,7 +41,7 @@ if (__DEV__) {
: vm._isVue
? vm.$options || (vm.constructor as any).options
: vm
let name = options.name || options._componentTag
let name = getComponentName(options)
const file = options.__file
if (!name && file) {
const match = file.match(/([^/\\]+)\.vue$/)
Expand Down
6 changes: 5 additions & 1 deletion src/core/vdom/create-component.ts
Expand Up @@ -28,6 +28,10 @@ import type {
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 {
Expand Down Expand Up @@ -188,7 +192,7 @@ export function createComponent(

// return a placeholder vnode
// @ts-expect-error
const name = Ctor.options.name || tag
const name = getComponentName(Ctor.options) || tag
const vnode = new VNode(
// @ts-expect-error
`vue-component-${Ctor.cid}${name ? `-${name}` : ''}`,
Expand Down
3 changes: 2 additions & 1 deletion src/platforms/web/runtime/components/transition-group.ts
Expand Up @@ -23,6 +23,7 @@ import {
} from 'web/runtime/transition-util'
import VNode from 'core/vdom/vnode'
import { VNodeWithData } from 'types/vnode'
import { getComponentName } from 'core/vdom/create-component'

const props = extend(
{
Expand Down Expand Up @@ -72,7 +73,7 @@ export default {
} else if (__DEV__) {
const opts = c.componentOptions
const name: string = opts
? opts.Ctor.options.name || opts.tag || ''
? getComponentName(opts.Ctor.options as any) || opts.tag || ''
: c.tag
warn(`<transition-group> children must be keyed: <${name}>`)
}
Expand Down
2 changes: 2 additions & 0 deletions types/options.d.ts
Expand Up @@ -219,6 +219,8 @@ export interface ComponentOptions<
parent?: Vue
mixins?: (ComponentOptions<Vue> | typeof Vue)[]
name?: string
// for SFC auto name inference w/ ts-loader check
__name?: string
// TODO: support properly inferred 'extends'
extends?: ComponentOptions<Vue> | typeof Vue
delimiters?: [string, string]
Expand Down

0 comments on commit 04b4703

Please sign in to comment.