File size: 824 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 34 35 36 37 38 |
import { map } from 'lodash';
import PropTypes from 'prop-types';
import { Component } from 'react';
import ReaderSidebarOrganizationsList from './list';
export class ReaderSidebarOrganizations extends Component {
static propTypes = {
organizations: PropTypes.array.isRequired,
path: PropTypes.string.isRequired,
translate: PropTypes.func,
};
renderItems() {
const { organizations, path } = this.props;
return map( organizations, ( organization ) => (
<li key={ organization.id }>
<ReaderSidebarOrganizationsList
key={ organization.id }
path={ path }
organization={ organization }
/>
</li>
) );
}
render() {
const { organizations } = this.props;
if ( ! organizations ) {
return null;
}
return this.renderItems();
}
}
export default ReaderSidebarOrganizations;
|