mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
30 lines
703 B
JavaScript
30 lines
703 B
JavaScript
import React, { Fragment } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Placeholder } from '@storybook/components';
|
|
|
|
import Item from './Item';
|
|
|
|
const Report = ({ items, empty, passes }) => (
|
|
<Fragment>
|
|
{items.length ? (
|
|
items.map(item => <Item passes={passes} item={item} key={item.id} />)
|
|
) : (
|
|
<Placeholder key="placeholder">{empty}</Placeholder>
|
|
)}
|
|
</Fragment>
|
|
);
|
|
|
|
Report.propTypes = {
|
|
items: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
description: PropTypes.string,
|
|
nodes: PropTypes.array,
|
|
tags: PropTypes.array,
|
|
})
|
|
).isRequired,
|
|
empty: PropTypes.string.isRequired,
|
|
passes: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
export default Report;
|