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

Video-08-Build-Product-Screen #8

Merged
merged 1 commit into from
Sep 22, 2020
Merged

Conversation

basir
Copy link
Owner

@basir basir commented Sep 22, 2020

No description provided.

@basir basir merged commit 8457e79 into master Sep 22, 2020
@basir basir changed the title Video-8-Build-Product-Screen Video-08-Build-Product-Screen Sep 22, 2020
numReviews={product.numReviews}
></Rating>
</li>
<li>Pirce : ${product.price}</li>

Choose a reason for hiding this comment

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

"Pirce" should be "Price"

Choose a reason for hiding this comment

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

Capture

what do I need to change for this to work

Choose a reason for hiding this comment

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

Since react-router v5.1 with hooks:

import { useParams } from 'react-router';

And instead of
this.props.match.params.id
you should just use this hook like below:

const { id } = useParams();
const product = data.products.find((x) => x._id === id);

And as well in App.js you should wrap Route with Routes like this:

<Route path="/" element={} exact />
<Route path="/product/:id" element={} />

of course you need to import extra Routes from "react-router-dom"
He is using useParams later in a course anyway.

Hope this helps

Choose a reason for hiding this comment

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

I try your solution and it shows me this error. It looks like component didn't connect with data.js

TypeError: Cannot read properties of undefined (reading 'image')
15 |

16 | {product.name}
| ^ 17 |

Choose a reason for hiding this comment

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

Screenshot 2021-11-28 at 15 14 42

Copy link

Choose a reason for hiding this comment

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

Hi,
Maybe your id is undefined and that's what makes const product undefined as well?
log id and see if contains any value.

useParams does take id from query string so it must be passed in address bar like this:
localhost:3000/api/product/3 where number 3 is and product id and it exists in data.js.

File ProductScreen should be added into Routes in App.js as well.

You should try and follow rest of tutorial as your code looks incomplete but I can not see it all so it is hard to say for sure.
Also looks like Route for ProductScreen is missing in App.js as well.

Hope it somehow helps

Choose a reason for hiding this comment

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

@iamjacek as you said I continued the course, I am now at the productScreen page using redux at /pull/13/files.
code is same, I get this error "
TypeError: Cannot read properties of undefined (reading 'params')" in productScreen file.
`

const dispatch = useDispatch();
24 | const productId = props.match.params.id;`

I also followed the steps you mention above, about this same error

Choose a reason for hiding this comment

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

error

Choose a reason for hiding this comment

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

error2

Choose a reason for hiding this comment

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

This really helped .. thanks a ton.

</div>
</header>
<main>
<Route path="/product/:id" component={ProductScreen}></Route>

Choose a reason for hiding this comment

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

How would you write this line of code in v6 of react?

Copy link

@samannamas samannamas Nov 14, 2021

Choose a reason for hiding this comment

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

I have same problem . when start npm start a problem is (
2021-11-14
Error: A is only ever to be used as the child of element, never rendered directly. Please wrap your in a . )

Choose a reason for hiding this comment

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

import {BrowserRouter, Routes, Route} from 'react-router-dom';

} > } >

Choose a reason for hiding this comment

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

import "routes" from react-router-dom and enclose route tag with routes tag

Choose a reason for hiding this comment

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

am getting the same error..kindly forward a demo code for error correction

Copy link

@yxynicole yxynicole Dec 29, 2021

Choose a reason for hiding this comment

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

It works but void of products

import {BrowserRouter, Routes, Route} from "react-router-dom";

<main>
      <Routes>
          <Route path="/product/:id" element={<ProductScreen/>}></Route>
          <Route path="/" element={<HomeScreen/>} exact></Route>
      </Routes>
</main>

hope this helps

Choose a reason for hiding this comment

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

thanks alot

Choose a reason for hiding this comment

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

How can be get products on Homescreen

Choose a reason for hiding this comment

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

how to get product in screen

Choose a reason for hiding this comment

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

image
For those who are using React 18 & ReactRouter v6, this is the answer that took me a day to figure out

@CatalinIrinel
Copy link

CatalinIrinel commented Nov 20, 2021 via email

@gmpithon
Copy link

gmpithon commented Nov 22, 2021 via email

Copy link

@ghost ghost left a comment

Choose a reason for hiding this comment

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

I believe this can help remove some frustration

import data from '../data';

export default function ProductScreen(props) {
const product = data.products.find((x) => x._id === props.match.params.id);
Copy link

Choose a reason for hiding this comment

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

If anybody have a problem of "Product Not Found" please check this line:
const product = data.products.find((x) => Number(x._id) === Number(props.match.params.id));

Choose a reason for hiding this comment

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

This code works ))
const { id } = useParams();
const product = data.products.find((x) => x._id === Number(id));
Don't forget to
import { Link, useParams } from "react-router-dom";

Copy link

@vishalwatts vishalwatts Aug 11, 2022

Choose a reason for hiding this comment

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

This code works )) const { id } = useParams(); const product = data.products.find((x) => x._id === Number(id)); Don't forget to import { Link, useParams } from "react-router-dom";

please help _/_
still showing product not fount

find code below

import React from 'react';
import { Link, useParams } from "react-router-dom";
// import Rating from '../components/Rating';
import data from '../data';

export default function ProductScreen(props) {
const { id } = useParams();
const product = data.products.find((x) => x._id === Number(id));
if (!product) {
return

Product Not Found
;
}
return (

Product Found !

)
}

@basir
Copy link
Owner Author

basir commented Sep 15, 2022 via email

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.