mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Added React Docgen + Flowtype usage instrcutions
This commit is contained in:
parent
01579f9ed3
commit
fdebc3474d
@ -4,8 +4,6 @@ import PropTypes from 'prop-types';
|
||||
import React from 'react';
|
||||
import PropVal from './PropVal';
|
||||
|
||||
console.info('----', PropTypes);
|
||||
|
||||
const PropTypesMap = new Map();
|
||||
|
||||
Object.keys(PropTypes).forEach(typeName => {
|
||||
@ -15,8 +13,6 @@ Object.keys(PropTypes).forEach(typeName => {
|
||||
PropTypesMap.set(type.isRequired, typeName);
|
||||
});
|
||||
|
||||
console.info('PropTypesMap', PropTypesMap);
|
||||
|
||||
const stylesheet = {
|
||||
propTable: {
|
||||
marginLeft: -10,
|
||||
@ -51,7 +47,7 @@ const hasDocgen = type => isNotEmpty(type.__docgenInfo);
|
||||
const boolToString = value => (value ? 'yes' : 'no');
|
||||
|
||||
const propsFromDocgen = type => {
|
||||
const props = null;
|
||||
const props = {};
|
||||
const docgenInfoProps = type.__docgenInfo.props;
|
||||
|
||||
Object.keys(docgenInfoProps).forEach(property => {
|
||||
@ -126,7 +122,6 @@ export default function PropTable(props) {
|
||||
}
|
||||
|
||||
const accumProps = hasDocgen(type) ? propsFromDocgen(type) : propsFromPropTypes(type);
|
||||
console.info('accumProps', accumProps);
|
||||
const array = Object.values(accumProps);
|
||||
|
||||
if (!array.length) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user