import React from 'react'; import PostIndexItem from './post_index_item'; class PostIndex extends React.Component { componentDidMount() { this.props.requestPosts(this.props.userId) } componentDidUpdate(prevProps) { if (prevProps.match.params.userUrl !== this.props.match.params.userUrl) { this.props.requestPosts(this.props.userId); } } render() { let posts = this.props.posts.map(post => { const author = this.props.users[post.authorId]; const recipient = this.props.users[post.recipientId]; return ( ); }); return (
) } } export default PostIndex;