Ian VanSchooten 6bdfcfad14 Convert @ts-ignore to @ts-expect-error
And remove unused directives
2022-09-06 22:40:59 -04:00

25 lines
844 B
TypeScript

/* eslint-disable @typescript-eslint/ban-types */
import { VueConstructor } from 'vue';
function getType(fn: Function) {
const match = fn && fn.toString().match(/^\s*function (\w+)/);
return match ? match[1] : '';
}
// https://github.com/vuejs/vue/blob/dev/src/core/util/props.js#L92
function resolveDefault({ type, default: def }: any) {
if (typeof def === 'function' && getType(type) !== 'Function') {
// known limitation: we don't have the component instance to pass
return def.call();
}
return def;
}
export function extractProps(component: VueConstructor) {
// @ts-expect-error this options business seems not good according to the types
return Object.entries(component.options.props || {})
.map(([name, prop]) => ({ [name]: resolveDefault(prop) }))
.reduce((wrap, prop) => ({ ...wrap, ...prop }), {});
}