40 lines
670 B
JavaScript
40 lines
670 B
JavaScript
|
import PropTypes from 'prop-types';
|
||
|
import React from 'react';
|
||
|
|
||
|
const List = React.memo(({
|
||
|
children, ordered, start, tight
|
||
|
}) => {
|
||
|
let bulletWidth = 15;
|
||
|
|
||
|
if (ordered) {
|
||
|
const lastNumber = (start + children.length) - 1;
|
||
|
bulletWidth = (9 * lastNumber.toString().length) + 7;
|
||
|
}
|
||
|
|
||
|
const _children = React.Children.map(children, (child, index) => React.cloneElement(child, {
|
||
|
bulletWidth,
|
||
|
ordered,
|
||
|
tight,
|
||
|
index: start + index
|
||
|
}));
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{_children}
|
||
|
</>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
List.propTypes = {
|
||
|
children: PropTypes.node,
|
||
|
ordered: PropTypes.bool,
|
||
|
start: PropTypes.number,
|
||
|
tight: PropTypes.bool
|
||
|
};
|
||
|
|
||
|
List.defaultProps = {
|
||
|
start: 1
|
||
|
};
|
||
|
|
||
|
export default List;
|