Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6830 Rev 7265
Línea 20... Línea 20...
20
  const fetchSpecificFeed = () =>
20
  const fetchSpecificFeed = () =>
21
    dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
21
    dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
Línea 22... Línea 22...
22
 
22
 
23
  useEffect(() => {
23
  useEffect(() => {
24
    if (feed) {
24
    if (feed) {
25
      return fetchSpecificFeed()
25
      fetchSpecificFeed()
-
 
26
    }
26
    } else {
27
    if (!allFeeds.length && !feed) {
27
      return dispatch(fetchFeeds(timelineUrl, currentPage))
28
      dispatch(fetchFeeds(timelineUrl, currentPage))
28
    }
29
    }
Línea 29... Línea 30...
29
  }, [timelineUrl, currentPage, feed])
30
  }, [timelineUrl, currentPage, feed])
30
 
31