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

Ocelots - Megan Maple #136

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 2 additions & 4 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import React from 'react';
import './App.css';
import chatMessages from './data/messages.json';
import ChatEntry from './components/ChatEntry';

const App = () => {
return (
<div id="App">
<header>
<h1>Application title</h1>
</header>
<main>
{/* Wave 01: Render one ChatEntry component
Wave 02: Render ChatLog component */}
</main>
<main>{<ChatEntry></ChatEntry>}</main>
</div>
);
};
Expand Down
25 changes: 20 additions & 5 deletions src/components/ChatEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,36 @@ import React from 'react';
import './ChatEntry.css';
import PropTypes from 'prop-types';

const ChatEntry = (props) => {
const time_difference = (posted) => {
const difference = new Date(
new Date().getTime() - new Date('2018-05-18T22:12:03Z').getTime()
);
if (difference.getFullYear() - 1970) {
return `${difference.getFullYear() - 1970} years ago`;
}
return difference.getMonth() - 1
? `${difference.getMonth() - 1} months ago`
: `${difference.getDate() - 1} days ago`;
};

const ChatEntry = ({ id, sender, body, timeStamp }) => {
return (
<div className="chat-entry local">
<h2 className="entry-name">Replace with name of sender</h2>
<h2 className="entry-name">{sender}</h2>
<section className="entry-bubble">
<p>Replace with body of ChatEntry</p>
<p className="entry-time">Replace with TimeStamp component</p>
<p>{body}</p>
<p className="entry-time">{time_difference(timeStamp)}</p>
<button className="like">🤍</button>
</section>
</div>
);
};

ChatEntry.propTypes = {
//Fill with correct proptypes
id: PropTypes.number,

Choose a reason for hiding this comment

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

Nice use of propTypes to control variable requirements

sender: PropTypes.string.isRequired,
body: PropTypes.string.isRequired,
timeStamp: PropTypes.string.isRequired,
};

export default ChatEntry;