Untitled

 avatar
user_0206321
plain_text
a year ago
3.1 kB
6
Indexable
import React from 'react'
import ProductCategoryRow from './ProductCategoryRow'
import ProductRow from './ProductRow'

// function ProductTable(props) {
//   const {products,filterText,inStockOnly} = props
//   // console.log(products)
//   const rows = [];
//   let lastCategory = null;
  
  // products.forEach((product) => {

  //   if (
  //     product.name.toLowerCase().indexOf(
  //       filterText.toLowerCase()
  //     ) === -1
  //   ) {
  //     return;
  //   }

  //   if (inStockOnly && !product.stocked) {
  //     return;
  //   }

  //   if (product.category !== lastCategory) {
  //     rows.push(
  //       <ProductCategoryRow
  //         category={product.category}
  //         key={product.category} />
  //     );
  //   }
  //   rows.push(
  //     <ProductRow
  //       product={product}
  //       key={product.name} />
  //   );
  //   lastCategory = product.category;
  // });

//   const myFilter = products.filter( el => {
//     let output = 
//       (el.name.toLowerCase().indexOf(filterText.toLowerCase()) !== -1) &&
//       (inStockOnly && el.stocked) ||
//       (el.name.toLowerCase().indexOf(filterText.toLowerCase()) !== -1) &&
//       (!inStockOnly)
//     return output
//   })
//   // console.log(myFilter)

//   const finalList = myFilter.reduce( (a,c) => {
//     if(c.category !== a.lastCategory) {
//       a.output = [...a.output, <ProductCategoryRow key={c.category} category={c.category} />]
//       a.lastCategory = c.category
//     }
//     a.output = [...a.output, <ProductRow key={c.name} product={c}/>]
//     return a
//   },{lastCategory:null, output: []})
  
//   // console.log(finalList)

//   return (
//     <table className="product-table">
//       <thead>
//         <tr>
//           <th>Name</th>
//           <th>Price</th>
//         </tr>
//       </thead>
//       <tbody>
//           {finalList.output}
//       </tbody>
//     </table>
//   )
// }

// export default ProductTable


export default function ProductTable({ products, filterText, inStockOnly }) {
  const filteredProducts = products.filter((product) => {
    const nameMatchesFilter = product.name.toLowerCase().includes(filterText.toLowerCase());
    const isInStock = !inStockOnly || (inStockOnly && product.stocked);

    return nameMatchesFilter && isInStock;
  });

  const rows = [];
  let lastCategory = null;

  filteredProducts.forEach((product) => {
    if (product.category !== lastCategory) {
      rows.push(
        <ProductCategoryRow
          category={product.category}
          key={product.category}
        />
      );
    }

    rows.push(
      <ProductRow
        product={product}
        key={product.name}
      />
    );

    lastCategory = product.category;
  });

  return <> <table className="product-table">
  <thead>
    <tr>
      <th className="product-name">Name</th>
      <th className="product-price">Price</th>
    </tr>
  </thead>
  <tbody>{rows}</tbody>
</table></>;
}






Leave a Comment