working on getting more documentation.

This commit is contained in:
Nelson, Joe 2017-05-10 13:01:42 -07:00
parent a984acc52b
commit edd6b6920a

View File

@ -36,13 +36,18 @@ export default class PropTable extends React.Component {
continue;
}
const typeInfo = type.propTypes[property];
const propType = PropTypesMap.get(typeInfo) || 'other';
let propType = PropTypesMap.get(typeInfo) || 'other';
const required = typeInfo.isRequired === undefined ? 'yes' : 'no';
const description = type.__docgenInfo &&
type.__docgenInfo.props &&
type.__docgenInfo.props[property]
? type.__docgenInfo.props[property].description
: null;
if (propType === 'other') {
if (type.__docgenInfo && type.__docgenInfo.props && type.__docgenInfo.props[property]) {
propType = type.__docgenInfo.props[property].type;
}
}
props[property] = { property, propType, required, description };
}
}