mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
36 lines
1001 B
JavaScript
36 lines
1001 B
JavaScript
/* eslint-disable no-underscore-dangle */
|
|
/* global window */
|
|
|
|
export const setJSONDoc = jsondoc => {
|
|
window.__EMBER_GENERATED_DOC_JSON__ = jsondoc;
|
|
};
|
|
export const getJSONDoc = () => {
|
|
return window.__EMBER_GENERATED_DOC_JSON__;
|
|
};
|
|
|
|
export const extractProps = componentName => {
|
|
const json = getJSONDoc();
|
|
const componentDoc = json.included.find(doc => doc.attributes.name === componentName);
|
|
const rows = componentDoc.attributes.arguments.map(prop => {
|
|
return {
|
|
name: prop.name,
|
|
type: prop.type,
|
|
required: prop.tags.length ? prop.tags.some(tag => tag.name === 'required') : false,
|
|
defaultValue: prop.defaultValue,
|
|
description: prop.description,
|
|
};
|
|
});
|
|
return { rows };
|
|
};
|
|
|
|
export const extractComponentDescription = componentName => {
|
|
const json = getJSONDoc();
|
|
const componentDoc = json.included.find(doc => doc.attributes.name === componentName);
|
|
|
|
if (!componentDoc) {
|
|
return '';
|
|
}
|
|
|
|
return componentDoc.attributes.description;
|
|
};
|