Línea 1... |
Línea 1... |
1 |
/* eslint-disable react/prop-types */
|
1 |
/* eslint-disable react/prop-types */
|
2 |
import React, { Suspense, useEffect } from 'react'
|
2 |
import React, { Suspense, useEffect } from 'react'
|
3 |
import { useDispatch } from 'react-redux'
|
3 |
import { useDispatch } from 'react-redux'
|
4 |
import { setTimelineUrl } from '../../../redux/feed/feed.actions'
|
4 |
import { setTimelineUrl } from '../../../redux/feed/feed.actions'
|
5 |
import { feedTypes } from '../../../redux/feed/feed.types'
|
5 |
import { feedTypes } from '../../../redux/feed/feed.types'
|
- |
|
6 |
import { setIntlLabels } from '../../../redux/intl/intl.action'
|
Línea 6... |
Línea 7... |
6 |
|
7 |
|
7 |
// Components
|
8 |
// Components
|
8 |
import NotificationAlert from '../../../shared/notification/NotificationAlert'
|
9 |
import NotificationAlert from '../../../shared/notification/NotificationAlert'
|
9 |
import SocialNetworks from './SocialNetworks'
|
10 |
import SocialNetworks from './SocialNetworks'
|
10 |
import ShareFeed from '../share-feed/ShareFeed'
|
11 |
import ShareFeed from '../share-feed/ShareFeed'
|
11 |
import PeopleYouMayKnow from '../../../shared/helpers/people-you-may-know/PeopleYouMayKnow'
|
12 |
import PeopleYouMayKnow from '../../../shared/helpers/people-you-may-know/PeopleYouMayKnow'
|
12 |
import DailyPulse from '../../../shared/helpers/daily-pulse/DailyPulse'
|
13 |
import DailyPulse from '../../../shared/helpers/daily-pulse/DailyPulse'
|
13 |
import HomeNews from './HomeNews'
|
- |
|
14 |
import WidgetHelper from '../../../shared/helpers/my-groups-helper/MyGroups'
|
14 |
import HomeNews from './HomeNews'
|
15 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
15 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
Línea 16... |
Línea 16... |
16 |
import { setIntlLabels } from '../../../redux/intl/intl.action'
|
16 |
import SuggestWidget from '../../../shared/helpers/my-groups-helper/SuggestWidget'
|
17 |
|
17 |
|
Línea 18... |
Línea 18... |
18 |
// Lazy Components
|
18 |
// Lazy Components
|
Línea 30... |
Línea 30... |
30 |
return (
|
30 |
return (
|
31 |
<>
|
31 |
<>
|
32 |
<div className='main-section-data container'>
|
32 |
<div className='main-section-data container'>
|
Línea 33... |
Línea 33... |
33 |
|
33 |
|
34 |
<div className="main-left-sidebar d-none d-md-flex">
|
34 |
<div className="main-left-sidebar d-none d-md-flex">
|
35 |
<WidgetHelper url="/helpers/my-groups" title={`${labels.MY_GROUPS}:`} />
|
35 |
<SuggestWidget url="/helpers/my-groups" title={`${labels.MY_GROUPS}:`} />
|
36 |
<WidgetHelper url="/helpers/groups-suggestion" title={`${labels.GROUPS}:`} />
|
36 |
<SuggestWidget url="/helpers/groups-suggestion" title={`${labels.GROUPS}:`} />
|
37 |
<SocialNetworks />
|
37 |
<SocialNetworks />
|
Línea 38... |
Línea 38... |
38 |
</div>
|
38 |
</div>
|
39 |
|
39 |
|