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

W7-project-happy-thoughts-vite-Yia #64

Open
wants to merge 23 commits into
base: main
Choose a base branch
from

Conversation

Citronskal
Copy link

@Citronskal Citronskal commented Mar 23, 2024

Netlify link

https://yia-happy-thought.netlify.app/

Collaborators

solo

Copy link

@ohitsnathalie ohitsnathalie left a comment

Choose a reason for hiding this comment

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

Great job Yia!
Your Happy Thoughts project looks like the given styling and also is responsive on different devices.
I realized that when I posted a thought, it doesn't automatically show up. After I refreshed the page, my message was there.
Try to write your README.md so we can see where you had some troubles. Also, try another approach with responsiveness and start with the mobile version first. Maybe you can tell a difference.
Overall, I like what you did and you can be proud of your project ❤️

@@ -10,6 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"moment": "^2.30.1",

Choose a reason for hiding this comment

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

yes, you used moment as well 😄

Comment on lines 35 to 37
const handleChange = (event) => {
setMessage(event.target.value);
setError("");

Choose a reason for hiding this comment

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

clever, you thought of the error message when sending an empty message.

border: 1px solid rgb(105, 105, 105);
box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
padding: 20px;
overflow-wrap: break-word;

Choose a reason for hiding this comment

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

good! you also figured it out after someone wrote a long "word" as a thought 😄

}
}

/* Mobile version */

Choose a reason for hiding this comment

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

have you tried to do mobile first and then go for the bigger screens?

import { useState } from "react";
import "./CreateThought.css";

const APIURL = "https://happy-thoughts-ux7hkzgmwa-uc.a.run.app/thoughts";

Choose a reason for hiding this comment

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

you already defined the APIURL in the ThoughtFeed.jsx. You could have passed the APIURL to this component.


const handleLike = async (thoughtId) => {
try {
const response = await fetch(`${APIURL}/${thoughtId}/like`, {

Choose a reason for hiding this comment

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

interesting way to change the APIURL to the "liked" version. Cool to see a different approach.

Copy link
Contributor

@dzc1 dzc1 left a comment

Choose a reason for hiding this comment

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

Hey Yia! great project 💪💪

Loved the folder structur, all requiirements have been met and it seems that you are even workig with moment.js which to put simply, I can see that you'r learnning curve is exponential and you are digging the framework. Now, I'll give you the passing grade here Yia but let's make a deal! .

Some knowledge for some commitment!

Basically, everytiime you post a new thought on your app, you have t manually refresh the browser which cool but who has time for that right? Ennter the useEffect to the rescue.

TO solve thiis, we can sue the dependency array in your ThoughtFeed.jsx file specifically on line 13.

Change it form this:

useEffect(() => {
   fetchData();
 }, []);

to this

useEffect(() => {
   fetchData();
 }, [recentThoughts]);

This will cover the use-case of the hard refresh and you will take ful advantage of the useEffect hook!

So, do we have a deal ?

Keep up the great work Yiia! hope that you are enjoying the react framework

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants