Browse Source

enable search via tags

master
azri 2 months ago
parent
commit
f1b909f8ab
1 changed files with 17 additions and 5 deletions
  1. 17
    5
      src/components/SearchProduct/SearchProduct.jsx

+ 17
- 5
src/components/SearchProduct/SearchProduct.jsx View File

12
 } from "@mui/material";
12
 } from "@mui/material";
13
 import { useSelector } from "react-redux";
13
 import { useSelector } from "react-redux";
14
 
14
 
15
+function doesSubstringExistInArray(array, substring) {
16
+    
17
+    if(array?.length == 0 || !array) return
18
+
19
+    // Convert substring to lowercase for case-insensitive matching
20
+    const lowerCaseSubstring = substring.toLowerCase();
21
+    // Check each element in the array
22
+    return array.some(element => element.toLowerCase().includes(lowerCaseSubstring));
23
+}
24
+
15
 const SearchProduct = ({ onClose }) => {
25
 const SearchProduct = ({ onClose }) => {
16
   const products = useSelector((state) => state.products.products.data);
26
   const products = useSelector((state) => state.products.products.data);
17
   const [searchedProducts, setSearchedProducts] = useState([]);
27
   const [searchedProducts, setSearchedProducts] = useState([]);
18
   const [searchQuery, setSearchQuery] = useState("");
28
   const [searchQuery, setSearchQuery] = useState("");
19
 
29
 
20
   const filterProduct = function () {
30
   const filterProduct = function () {
31
+
32
+    if(searchQuery?.length < 2) return
33
+
21
     let filteredProducts = products.filter((product) => {
34
     let filteredProducts = products.filter((product) => {
35
+
22
       let title = product?.title?.toLowerCase();
36
       let title = product?.title?.toLowerCase();
23
       let search = searchQuery.toLowerCase();
37
       let search = searchQuery.toLowerCase();
24
-      return title?.includes(search);
38
+      return title?.includes(search) || doesSubstringExistInArray(product?.tags, search);
25
     });
39
     });
26
 
40
 
27
-    // MAX show result
28
-    filteredProducts = filteredProducts?.slice(0, 5);
29
     setSearchedProducts(filteredProducts);
41
     setSearchedProducts(filteredProducts);
30
   };
42
   };
31
 
43
 
61
           <Grid size={12}>
73
           <Grid size={12}>
62
             <TextField
74
             <TextField
63
               fullWidth
75
               fullWidth
64
-              placeholder="Search for a product..."
76
+              placeholder="Search Products Name or Tags..."
65
               variant="outlined"
77
               variant="outlined"
66
               value={searchQuery}
78
               value={searchQuery}
67
               onChange={(e) => {
79
               onChange={(e) => {
92
       </Box>
104
       </Box>
93
 
105
 
94
       {/* Product List */}
106
       {/* Product List */}
95
-      <Grid container sx={{ width: "100%" }} columns={12}>
107
+      <Grid container sx={{ width: "100%", overflowY:"scroll" }} columns={12}>
96
         {searchedProducts.length > 0 ? (
108
         {searchedProducts.length > 0 ? (
97
           searchedProducts.map((product) => {
109
           searchedProducts.map((product) => {
98
 
110
 

Loading…
Cancel
Save