forked from vuejs/test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvueCompatSupport.ts
37 lines (32 loc) · 1000 Bytes
/
vueCompatSupport.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import * as Vue from 'vue'
import type { ComponentOptions } from 'vue'
import { hasOwnProperty } from '../utils'
function isCompatEnabled(key: string): boolean {
return (Vue as any).compatUtils?.isCompatEnabled(key) ?? false
}
export function isLegacyExtendedComponent(component: unknown): component is {
(): Function
super: Function
options: ComponentOptions
} {
if (!isCompatEnabled('GLOBAL_EXTEND') || typeof component !== 'function') {
return false
}
return (
hasOwnProperty(component, 'super') &&
(component.super as any).extend({}).super === component.super
)
}
export function unwrapLegacyVueExtendComponent<T>(
selector: T
): T | ComponentOptions {
return isLegacyExtendedComponent(selector) ? selector.options : selector
}
export function isLegacyFunctionalComponent(component: unknown): boolean {
return Boolean(
component &&
typeof component === 'object' &&
hasOwnProperty(component, 'functional') &&
component.functional
)
}