Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #1450

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Develop #1450

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 27 additions & 93 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,104 +1,38 @@
import './App.scss';

// import postsFromServer from './api/posts.json';
// import commentsFromServer from './api/comments.json';
// import usersFromServer from './api/users.json';
import postsFromServer from './api/posts.json';
import commentsFromServer from './api/comments.json';
import usersFromServer from './api/users.json';
import { PostList } from './components/PostList';

export const App = () => (
<section className="App">
<h1 className="App__title">Static list of posts</h1>

<div className="PostList">
<div className="PostInfo">
<div className="PostInfo__header">
<h3 className="PostInfo__title">qui est esse</h3>

<p>
{' Posted by '}

<a className="UserInfo" href="mailto:[email protected]">
Leanne Graham
</a>
</p>
</div>

<p className="PostInfo__body">
est rerum tempore vitae sequi sint nihil reprehenderit dolor beatae ea
dolores neque fugiat blanditiis voluptate porro vel nihil molestiae ut
reiciendis qui aperiam non debitis possimus qui neque nisi nulla
</p>

<hr />

<b data-cy="NoCommentsMessage">No comments yet</b>
</div>

<div className="PostInfo">
<div className="PostInfo__header">
<h3 className="PostInfo__title">doloremque illum aliquid sunt</h3>
function getUserById(userId) {
const foundedUser = usersFromServer.find(user => userId === user.id);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The variable name foundedUser is not semantically correct. A more appropriate name would be foundUser, as it indicates the user that was found.


<p>
{' Posted by '}
return foundedUser || null;
}

<a className="UserInfo" href="mailto:[email protected]">
Patricia Lebsack
</a>
</p>
</div>
function getCommentsById(postId) {
const commentsList = commentsFromServer.filter(
comment => comment.postId === postId,
);

<p className="PostInfo__body">
deserunt eos nobis asperiores et hic est debitis repellat molestiae
optio nihil ratione ut eos beatae quibusdam distinctio maiores earum
voluptates et aut adipisci ea maiores voluptas maxime
</p>
return commentsList;
}

<div className="CommentList">
<div className="CommentInfo">
<div className="CommentInfo__title">
<strong className="CommentInfo__name">pariatur omnis in</strong>
const posts = postsFromServer.map(post => {
return {
...post,
user: getUserById(post.userId),
comments: getCommentsById(post.id),
};
});

{' by '}

<a
className="CommentInfo__email"
href="mailto:[email protected]"
>
[email protected]
</a>
</div>

<div className="CommentInfo__body">
dolorum voluptas laboriosam quisquam ab totam beatae et aut
aliquid optio assumenda voluptas velit itaque quidem voluptatem
tempore cupiditate in itaque sit molestiae minus dolores magni
</div>
</div>

<div className="CommentInfo">
<div className="CommentInfo__title">
<strong className="CommentInfo__name">
odio adipisci rerum aut animi
</strong>

{' by '}

<a
className="CommentInfo__email"
href="mailto:[email protected]"
>
[email protected]
</a>
</div>
export const App = () => (
<section className="App">
<h1 className="App__title">Static list of posts</h1>

<div className="CommentInfo__body">
quia molestiae reprehenderit quasi aspernatur aut expedita
occaecati aliquam eveniet laudantium omnis quibusdam delectus
saepe quia accusamus maiores nam est cum et ducimus et vero
voluptates excepturi deleniti ratione
</div>
</div>
</div>
</div>
</div>
<PostList posts={posts} />
</section>
);

export default App;
22 changes: 21 additions & 1 deletion src/components/CommentInfo/CommentInfo.jsx
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
export const CommentInfo = () => <>Put the comment here</>;
export const CommentInfo = ({ comment }) => {
const { name, email, body } = comment;

return (
<div className="CommentInfo">
<div className="CommentInfo__title">
<strong className="CommentInfo__name">{name}</strong>

{' by '}

<a className="CommentInfo__email" href={`mailto:${email}`}>
{email}
</a>
</div>

<div className="CommentInfo__body">{body}</div>
</div>
);
};

export default CommentInfo;
14 changes: 13 additions & 1 deletion src/components/CommentList/CommentList.jsx
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
export const CommentList = () => <>Put the list here</>;
import { CommentInfo } from '../CommentInfo';

export const CommentList = ({ comments }) => {
return (
<div className="CommentList">
{comments.map(comment => {
return <CommentInfo comment={comment} key={comment.id} />;
})}
</div>
);
};

export default CommentList;
29 changes: 28 additions & 1 deletion src/components/PostInfo/PostInfo.jsx
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
export const PostInfo = () => <>Put the post here</>;
import { UserInfo } from '../UserInfo';
import { CommentList } from '../CommentList';

export const PostInfo = ({ post }) => {
const { title, body, user, comments } = post;

return (
<div className="PostInfo">
<div className="PostInfo__header">
<h3 className="PostInfo__title">{title}</h3>

{user && <UserInfo user={user} />}
</div>

<p className="PostInfo__body">{body}</p>

<hr />

{comments.length > 0 ? (
<CommentList comments={comments} />
) : (
<b data-cy="NoCommentsMessage">No comments yet</b>
)}
</div>
);
};

export default PostInfo;
14 changes: 13 additions & 1 deletion src/components/PostList/PostList.jsx
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
export const PostList = () => <>Put the list here</>;
import { PostInfo } from '../PostInfo';

export const PostList = ({ posts }) => {
return (
<div className="PostList">
{posts.map(post => {
return <PostInfo post={post} key={post.id} />;
})}
</div>
);
};

export default PostList;
16 changes: 15 additions & 1 deletion src/components/UserInfo/UserInfo.jsx
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
export const UserInfo = () => <>Put the user here</>;
export const UserInfo = ({ user }) => {
const { name, email } = user;

return (
<p>
{' Posted by '}

<a className="UserInfo" href={`mailto:${email}`}>
{name}
</a>
</p>
);
};

export default UserInfo;