File size: 768 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import PropTypes from 'prop-types';
import { Component } from 'react';
import ListItem from './list-item';
import ListItemCreateLink from './list-item-create-link';

export default class ReaderSidebarListsList extends Component {
	static propTypes = {
		lists: PropTypes.array,
		path: PropTypes.string.isRequired,
		currentListOwner: PropTypes.string,
		currentListSlug: PropTypes.string,
	};

	render() {
		const { lists, currentListOwner, currentListSlug, path } = this.props;

		return (
			<>
				{ lists.map( ( list ) => (
					<ListItem
						key={ list.ID }
						list={ list }
						path={ path }
						currentListOwner={ currentListOwner }
						currentListSlug={ currentListSlug }
					/>
				) ) }
				<ListItemCreateLink path={ path } />
			</>
		);
	}
}