Addon-docs: Fail with debuggable error on non-string description

This commit is contained in:
Michael Shilman 2019-08-01 16:53:43 +08:00
parent 18abecafd2
commit a2bd784400

View File

@ -20,11 +20,20 @@ interface DescriptionProps {
markdown?: string;
}
const str = (o: any) => (typeof o === 'string' ? o : '');
const str = (o: any) => {
if (!o) {
return '';
}
if (typeof o === 'string') {
return o as string;
}
throw new Error(`Description: expected string, got: ${JSON.stringify(o)}`);
};
const getNotes = (notes?: Notes) => notes && (str(notes) || str(notes.markdown) || str(notes.text));
const getNotes = (notes?: Notes) =>
notes && (typeof notes === 'string' ? notes : str(notes.markdown) || str(notes.text));
const getInfo = (info?: Info) => info && (str(info) || str(info.text));
const getInfo = (info?: Info) => info && (typeof info === 'string' ? info : str(info.text));
const getDocgen = (component?: Component) =>
component && component.__docgenInfo && str(component.__docgenInfo.description);