Browse Source

new tag and collection

master
azri 2 months ago
parent
commit
57cec4025c
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      src/components/ProductList/ProductList.jsx

+ 6
- 4
src/components/ProductList/ProductList.jsx View File

67
   const navigate = useNavigate();
67
   const navigate = useNavigate();
68
 
68
 
69
   //filter
69
   //filter
70
-  const [tags, setTags] = useState("all");
71
-  const [collection, setCollection] = useState("all");
70
+  const [tags, setTags] = useState("tag");
71
+  const [collection, setCollection] = useState("collection");
72
   const [sort, setSort] = useState("new");
72
   const [sort, setSort] = useState("new");
73
 
73
 
74
   useEffect(() => {
74
   useEffect(() => {
119
 
119
 
120
       // Tags
120
       // Tags
121
       newFilteredProducts = newFilteredProducts.filter((product) => {
121
       newFilteredProducts = newFilteredProducts.filter((product) => {
122
-        if (tags == "all") {
122
+        if (tags == "all" || tags == "tag") {
123
           return product.productType === productType;
123
           return product.productType === productType;
124
         } else {
124
         } else {
125
           return (
125
           return (
130
 
130
 
131
       // Collection
131
       // Collection
132
       newFilteredProducts = newFilteredProducts.filter((product) => {
132
       newFilteredProducts = newFilteredProducts.filter((product) => {
133
-        if (collection == "all") {
133
+        if (collection == "all" || collection == "collection" ) {
134
           return product.productType === productType;
134
           return product.productType === productType;
135
         } else {
135
         } else {
136
           return (
136
           return (
384
                 input={<BootstrapInput />}
384
                 input={<BootstrapInput />}
385
                 name="type"
385
                 name="type"
386
               >
386
               >
387
+                <MenuItem value={"tag"}>Tags</MenuItem>
387
                 <MenuItem value={"all"}>All</MenuItem>
388
                 <MenuItem value={"all"}>All</MenuItem>
388
                 {tagFilterOption?.map((data) => (
389
                 {tagFilterOption?.map((data) => (
389
                   <MenuItem value={data}>{data}</MenuItem>
390
                   <MenuItem value={data}>{data}</MenuItem>
411
                 input={<BootstrapInput />}
412
                 input={<BootstrapInput />}
412
                 name="type"
413
                 name="type"
413
               >
414
               >
415
+                <MenuItem value={"collection"}>Collection</MenuItem>
414
                 <MenuItem value={"all"}>All</MenuItem>
416
                 <MenuItem value={"all"}>All</MenuItem>
415
                 {collectionFilterOption?.map(({ title }) => (
417
                 {collectionFilterOption?.map(({ title }) => (
416
                   <MenuItem value={title}>{title}</MenuItem>
418
                   <MenuItem value={title}>{title}</MenuItem>

Loading…
Cancel
Save