mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
25 lines
844 B
TypeScript
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 }), {});
|
|
}
|