Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7467 Rev 7786
Línea 1... Línea 1...
1
import React, { useEffect } from "react";
1
import React, { useEffect } from "react";
2
import FeedTemplate from "./FeedTemplate";
2
import FeedTemplate from "./FeedTemplate";
3
import { fetchFeeds, setCurrentPage } from '../../redux/feed/feed.actions'
3
import { fetchFeeds, setCurrentPage } from '../../redux/feed/feed.actions'
4
import { useDispatch, useSelector } from "react-redux";
4
import { useDispatch, useSelector } from "react-redux";
5
import PaginationComponent from "../../shared/PaginationComponent";
5
import PaginationComponent from "../../shared/PaginationComponent";
-
 
6
import Spinner from "../../shared/Spinner";
-
 
7
import NotificationAlert from "../../shared/notification/NotificationAlert";
Línea 6... Línea 8...
6
 
8
 
Línea 7... Línea 9...
7
const FeedSection = React.memo(() => {
9
const FeedSection = React.memo(() => {
Línea 21... Línea 23...
21
    dispatch(fetchFeeds(timelineUrl, currentPage))
23
    dispatch(fetchFeeds(timelineUrl, currentPage))
22
    window.scrollTo(0, 0);
24
    window.scrollTo(0, 0);
23
  };
25
  };
Línea 24... Línea 26...
24
 
26
 
25
  if (loading) {
27
  if (loading) {
26
    return <h6>Loading...</h6>
28
    return <Spinner />
Línea 27... Línea 29...
27
  }
29
  }
28
 
30
 
Línea 41... Línea 43...
41
        onChangePage={onChangePageHandler}
43
        onChangePage={onChangePageHandler}
42
        pages={pages}
44
        pages={pages}
43
        isRow
45
        isRow
44
        currentActivePage={currentPage}
46
        currentActivePage={currentPage}
45
      />
47
      />
-
 
48
      <NotificationAlert />
46
    </>
49
    </>
47
  );
50
  );
48
});
51
});
Línea 49... Línea 52...
49
 
52
 
50
export default FeedSection
53
export default FeedSection