Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5906 | Rev 5908 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5906 Rev 5907
Línea 8... Línea 8...
8
import Feed from './Feed'
8
import Feed from './Feed'
9
const PaginationComponent = React.lazy(() =>
9
const PaginationComponent = React.lazy(() =>
10
  import('../../../../shared/pagination/PaginationComponent')
10
  import('../../../../shared/pagination/PaginationComponent')
11
)
11
)
Línea 12... Línea 12...
12
 
12
 
13
const FeedList = ({ feed = {}, image = '' }) => {
13
const FeedList = ({ feed, image }) => {
14
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector(
14
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector(
15
    (state) => state.feed
15
    (state) => state.feed
16
  )
16
  )
Línea 17... Línea 17...
17
  const dispatch = useDispatch()
17
  const dispatch = useDispatch()
18
 
18
 
Línea 19... Línea 19...
19
  const fetchSpecificFeed = () =>
19
  const fetchSpecificFeed = () =>
-
 
20
    dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
20
    dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
21
 
21
 
22
  useEffect(() => {
22
  useEffect(() => {
23
    console.log(timelineUrl)
23
    if (feed) {
24
    if (feed) {
24
      return fetchSpecificFeed()
25
      return fetchSpecificFeed()
25
    } else {
26
    } else {
Línea 26... Línea 27...
26
      return dispatch(fetchFeeds(timelineUrl, currentPage))
27
      return dispatch(fetchFeeds(timelineUrl, currentPage))
27
    }
28
    }
28
  }, [])
29
  }, [timelineUrl, currentPage])
29
 
30