| Línea 3... |
Línea 3... |
| 3 |
import MyGroups from '../../../../shared/helpers/my-groups-helper/MyGroups'
|
3 |
import MyGroups from '../../../../shared/helpers/my-groups-helper/MyGroups'
|
| 4 |
import SuggestedGroupsHelper from '../../../../shared/helpers/suggested-groups-helper/SuggestedGroupsHelper'
|
4 |
import SuggestedGroupsHelper from '../../../../shared/helpers/suggested-groups-helper/SuggestedGroupsHelper'
|
| 5 |
import SocialNetworks from '../../../../dashboard/components/home-section/SocialNetworks'
|
5 |
import SocialNetworks from '../../../../dashboard/components/home-section/SocialNetworks'
|
| 6 |
import ProfileInfo from '../../../../dashboard/components/home-section/ProfileInfo'
|
6 |
import ProfileInfo from '../../../../dashboard/components/home-section/ProfileInfo'
|
| Línea 7... |
Línea 7... |
| 7 |
|
7 |
|
| 8 |
const ResponsiveNavbar = ({ show, navbarVars, LABELS }) => {
|
8 |
const ResponsiveNavbar = ({ show, navbarVars }) => {
|
| 9 |
// const { authorization } = props.companyVars
|
9 |
// const { authorization } = props.companyVars
|
| Línea 10... |
Línea 10... |
| 10 |
// const {allowProfile, allowFollower, allowUser, allowFeed, allowJob, allowCompany, allowSetting} = authorization
|
10 |
// const {allowProfile, allowFollower, allowUser, allowFeed, allowJob, allowCompany, allowSetting} = authorization
|
| 11 |
|
11 |
|
| Línea 35... |
Línea 35... |
| 35 |
<nav
|
35 |
<nav
|
| 36 |
className={`responsiveNavbar ${shouldRender ? 'slideIn' : 'slideOut'} p-0`}
|
36 |
className={`responsiveNavbar ${shouldRender ? 'slideIn' : 'slideOut'} p-0`}
|
| 37 |
onAnimationEnd={handleUnmount}
|
37 |
onAnimationEnd={handleUnmount}
|
| 38 |
ref={responsiveNavbar}
|
38 |
ref={responsiveNavbar}
|
| 39 |
>
|
39 |
>
|
| 40 |
<ProfileInfo {...navbarVars} LABELS={LABELS}/>
|
40 |
<ProfileInfo {...navbarVars}/>
|
| 41 |
<MyGroups LABELS={LABELS} suggestedClassname="d-block" />
|
41 |
<MyGroups suggestedClassname="d-block" />
|
| 42 |
<SuggestedGroupsHelper suggestedClassname='d-block' />
|
42 |
<SuggestedGroupsHelper suggestedClassname='d-block' />
|
| 43 |
<SocialNetworks LABELS={LABELS} />
|
43 |
<SocialNetworks />
|
| 44 |
</nav>
|
44 |
</nav>
|
| 45 |
)
|
45 |
)
|
| 46 |
}
|
46 |
}
|
| Línea 47... |
Línea 47... |
| 47 |
|
47 |
|