Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5106 Rev 5414
Línea 13... Línea 13...
13
const isMobile = window.innerWidth < 768
13
const isMobile = window.innerWidth < 768
Línea 14... Línea 14...
14
 
14
 
15
const FeedSection = ({ feed, image }) => {
15
const FeedSection = ({ feed, image }) => {
16
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector((state) => state.feed)
16
  const { allFeeds, timelineUrl, pages, currentPage, loading } = useSelector((state) => state.feed)
-
 
17
  const dispatch = useDispatch()
Línea 17... Línea 18...
17
  const dispatch = useDispatch()
18
  const labels = useSelector(state => state.labels)
Línea 18... Línea 19...
18
 
19
 
19
  const fetchSpecificFeed = () => dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
20
  const fetchSpecificFeed = () => dispatch(fetchFeeds(timelineUrl + '/feed/' + feed, 1))
Línea 79... Línea 80...
79
              owner_shared={feed.owner_shared}
80
              owner_shared={feed.owner_shared}
80
              image={image}
81
              image={image}
81
            />
82
            />
82
          )
83
          )
83
        })
84
        })
84
        : <EmptySection message={LABELS.NOT_AVAILABLE_FEEDS} />
85
        : <EmptySection message={labels.NOT_AVAILABLE_FEEDS} />
85
      }
86
      }
86
      <Suspense fallback={null}>
87
      <Suspense fallback={null}>
87
        <ShareModal
88
        <ShareModal
88
          timelineUrl={timelineUrl}
89
          timelineUrl={timelineUrl}
89
          currentPage={currentPage}
90
          currentPage={currentPage}