-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathMenu.js
More file actions
38 lines (38 loc) · 985 Bytes
/
Menu.js
File metadata and controls
38 lines (38 loc) · 985 Bytes
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
import React from 'react'
import styles from '../stylesheets/menu.module.sass'
import DropList from './DropList'
import jumpTo from '../../../modules/Navigation'
export default function Menu({
departments,
getProductsByCategory,
getAllProducts
}) {
return (
<div className={styles.outbox}>
{/* lists */}
<div className={`${styles.lists}`}>
{/* departments */}
{departments && departments.map(d =>
<div className={styles.tag}
key={d.departmentName}
>
<DropList
clickCategory={(c) => getProductsByCategory(c)}
department={d.departmentName}
categories={d.categories.split(',')}
/>
</div>
)}
</div>
{/* Todos los productos */}
<div className={styles.tag}
onClick={() => {
getAllProducts()
jumpTo('/dashboard')
}}
>
Todos los productos
</div>
</div>
)
}