File size: 1,819 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import React from 'react';
import Product from './Product';
import Title from './Title';
import { ProductConsumer } from '../context';
import { ThemeConsumer } from './context/ThemeContexts';
class ProductList extends React.Component {
render() {
return (
<ThemeConsumer>
{({ theme }) => (
<ProductConsumer>
{(value) => (
value.products.length > 0 ?
<div className={theme ? 'py-5 bg-slate-900' : 'py-5 bg-slate-200'}>
<div className="container">
<div>
<Title className="text-light" name="our" title="products" />
<div className="row">
{value.products.map((product) => {
return <Product key={product.id} product={product} />;
})}
</div>
</div>
</div>
</div>
:
<div className={theme ? 'py-5 bg-slate-900' : 'py-5 bg-slate-200'}>
<div className="row">
<div className="col-10 mx-auto text-center text-title text-primary">
<text style={{
color: 'red'
}}>Sorry, no results found!</text>
</div>
<div className="col-10 mx-auto text-center text-title text-primary">
<text style={{
color: 'balck'
}}>Please check the spelling or try searching for something else</text>
</div>
</div>
</div>
)
}
</ProductConsumer>
)}
</ThemeConsumer>
);
}
}
export default ProductList;
|