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

Feature/tech 438 hero component #7

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

Conversation

ikhoaA
Copy link
Contributor

@ikhoaA ikhoaA commented Jun 30, 2022

No description provided.

@vercel
Copy link

vercel bot commented Jun 30, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
react-components ✅ Ready (Inspect) Visit Preview Jul 31, 2022 at 1:23PM (UTC)

@loan-laux
Copy link
Contributor

@ikhoaA thanks for this PR! Could you please resolve the conflict with lib/index.js?

Copy link
Contributor

@loan-laux loan-laux left a comment

Choose a reason for hiding this comment

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

@ikhoaA sorry for the wait on this one. This required a little bit of my time to make sure I could provide constructive feedback. Overall it's great work. However, there's a few items for you to review. This is an open discussion, so feel free to let me know if you disagree on some points or if you have alternative solutions to offer. Thanks!

Copy link
Contributor

@loan-laux loan-laux left a comment

Choose a reason for hiding this comment

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

Thanks for implementing the previous change request @ikhoaA. This is back to you for another round.

In your next contributions, please try to be particularly mindful of package size when you add a dependency. Any dependency added to the project bloats the node_modules directory and impacts performance, so I'd like to see the rationale behind the addition when you deem it necessary.

Thanks and hopefully this should be the last change request on this one!

package.json Outdated
"next": "^12.1.0",
"prop-types": "^15.8.1",
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17",
"react-easy-swipe": "^0.0.22",
Copy link
Contributor

Choose a reason for hiding this comment

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

What's the rationale for adding react-easy-swipe? Does it do the same thing as react-swipeable? Since it's almost 200KB, I'd rather avoid the extra weight on the node_modules directory, if possible.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Noted!

import { AiOutlineLeft, AiOutlineRight } from "react-icons/ai";
import Swipe from "react-easy-swipe";

const Carousel = ({children}) => {
Copy link
Contributor

Choose a reason for hiding this comment

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

Leave spaces in your object destructuring notation: const Carousel = ({ children }) => {

)
}
<div>
</div>
Copy link
Contributor

Choose a reason for hiding this comment

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

Why the empty div?

lib/Hero/Hero.js Outdated
);


Copy link
Contributor

Choose a reason for hiding this comment

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

No need for an extra line break here

lib/Hero/Hero.js Outdated
title: PropTypes.string.isRequired,
/**
* Subtitle of Hero component
* e.g. `How to make you feel good`
Copy link
Contributor

Choose a reason for hiding this comment

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

I appreciate the effort, but I don't think we necessarily need these examples. The names of the props are self-explanatory and the types provide enough info as to what they should be.

lib/Hero/Hero.js Outdated
* Hero image URL
* e.g. `https://images.unsplash.com/photo-1469334031218-e382a71b716b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2670&q=80`
*/
imageUrl: PropTypes.string ,
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's remove the space before this trailing coma

};
NextImage.args = {
label: 'Hero',
Button,
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's fix the indentation here. I'd recommend running Prettier on this branch.

Copy link
Contributor

@loan-laux loan-laux left a comment

Choose a reason for hiding this comment

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

Thanks @ikhoaA! All good except for the SVG file naming and the usage of the img tag. See my comments in there.

import { AiOutlineLeft, AiOutlineRight } from "react-icons/ai";
import Swipe from "react-easy-swipe";
import React, { useState } from 'react';
import leftArrow from '../../public/arrow left.svg';
Copy link
Contributor

Choose a reason for hiding this comment

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

I would highly discourage using spaces in file names. That's a big no-no in my books.

return (
<div className="m-auto">
<div className="w-full relative select-none">
<AiOutlineLeft
<img
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's avoid using an img tag for an SVG when we can render the SVG tags directly in the DOM instead. We've done it for LeftChevron and RightChevron in the ImageGallery component. And now that I think about it, it looks like we can re-use these same SVG paths and use a different fill color.

In this case, let's move lib/ImageGallery/LeftChevron.js and lib/ImageGallery/RightChevron.js to lib/Icons/, change the imports in lib/ImageGallery/ImageGallery.js and use lib/Icons/* in lib/Hero/Carousel.js.

);
})}
</div>
<AiOutlineRight
<img
Copy link
Contributor

Choose a reason for hiding this comment

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

Same comment as for the left arrow.

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.

2 participants