Kaynağa Gözat

fix mobilenavbar

master
azri 1 hafta önce
ebeveyn
işleme
3844d8607e

+ 1
- 1
src/components/CategoryList/CategoryList.jsx Dosyayı Görüntüle

@@ -37,7 +37,7 @@ const CategoryList = ({ productType }) => {
37 37
             
38 38
            }}
39 39
             onClick={()=>{
40
-              sessionStorage.removeItem('amber-select-collection')
40
+              //sessionStorage.removeItem('amber-select-collection')
41 41
               sessionStorage.setItem('amber-select-category', label)
42 42
               window.location.href = "/products" 
43 43
             }}

+ 2
- 29
src/components/Navbar/components/MobileNav/MobileNav.jsx Dosyayı Görüntüle

@@ -36,8 +36,7 @@ const MobileNav = ({ open, onClose, menu = [] }) => {
36 36
           }
37 37
         }}
38 38
         onClick={() => {
39
-          // sessionStorage.setItem('amber-select-collection', colletion?.title)
40
-          // sessionStorage.setItem('amber-select-product-type', displayCollection.productType)
39
+          sessionStorage.setItem('amber-select-collection', colletion?.title)
41 40
           window.location.href = `/products`;
42 41
         }}
43 42
       >
@@ -116,37 +115,11 @@ const MobileNav = ({ open, onClose, menu = [] }) => {
116 115
 
117 116
       {/* Main Navigation */}
118 117
       <Box sx={{ width: "100%" }} role="presentation">
119
-        {/* <List>
120
-          {menu.map(({ productType, collection }) => (
121
-            <ListItem key={productType} disablePadding>
122
-              <ListItemButton
123
-                onClick={() => { 
124
-                  sessionStorage.setItem('amber-select-collection', productType)
125
-                  sessionStorage.removeItem('amber-select-collection')
126
-                  if(collection?.length == 0) window.location.href = `/products`;
127
-                }}
128
-                sx={{
129
-                  borderTop:"1px solid rgba(0,0,0,0.1)",
130
-                  "&:hover": {
131
-                    backgroundColor: "#95AAC5",
132
-                  },
133
-                }}
134
-              >
135
-                <ListItemText sx={{ 
136
-                  ml: 2, 
137
-                  color: "black",
138
-                }} primary={productType?.toUpperCase()} />
139
-                {(collection?.length > 0) && <ArrowDropDownIcon fontSize="small" sx={{color:"black"}} /> }
140
-              </ListItemButton>
141
-            </ListItem>
142
-          ))}
143
-        </List> */}
144 118
         {menu.map(({ productType, collection }) => (
145 119
           <Accordion
146 120
             disableGutters={true}
147 121
             onClick={() => {
148
-              sessionStorage.setItem('amber-select-collection', productType)
149
-              sessionStorage.removeItem('amber-select-collection')
122
+              sessionStorage.setItem('amber-select-product-type', productType)
150 123
               if (collection?.length == 0) window.location.href = `/products`;
151 124
             }}
152 125
             sx={{

Loading…
İptal
Kaydet