Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1580 Rev 2401
Línea 1... Línea 1...
1
import React from "react";
1
import React from "react";
2
import { useEffect, useState } from "react";
2
import { useEffect, useState } from "react";
3
import { connect } from "react-redux";
3
import { connect } from "react-redux";
4
import {axios} from "../../../utils";
4
import { axios } from "../../../utils";
5
import { addNotification } from "../../../redux/notification/notification.actions";
5
import { addNotification } from "../../../redux/notification/notification.actions";
6
import Spinner from "../../../shared/loading-spinner/Spinner";
6
import Spinner from "../../../shared/loading-spinner/Spinner";
7
import "../../../css/shared/global.scss";
7
import "../../../css/shared/global.scss";
8
import SearchList from "../../../components/SearchList";
8
import SearchList from "../../../components/SearchList";
9
import Profile from "../../../components/Profile";
9
import Profile from "../../../components/Profile";
Línea 17... Línea 17...
17
  }, []);
17
  }, []);
Línea 18... Línea 18...
18
 
18
 
19
  const fetchEntitys = async (searchValue) => {
19
  const fetchEntitys = async (searchValue) => {
20
    setLoading(true);
20
    setLoading(true);
21
    await axios
21
    await axios
22
      .get("/connection/people-blocked?search="+(searchValue || ''))
22
      .get("/connection/people-blocked?search=" + (searchValue || ''))
23
      .then((response) => {
23
      .then((response) => {
24
        const resData = response.data;
24
        const resData = response.data;
25
        if (resData.success) {
25
        if (resData.success) {
26
          setEntities(resData.data);
26
          setEntities(resData.data);
Línea 34... Línea 34...
34
      <div className="container">
34
      <div className="container">
35
        <SearchList
35
        <SearchList
36
          title="Personas Bloqueadas"
36
          title="Personas Bloqueadas"
37
          fetchCallback={fetchEntitys}
37
          fetchCallback={fetchEntitys}
38
        />
38
        />
39
 
-
 
40
        <div className="companies-list">
-
 
41
          <div
39
        <div
42
            className="row"
40
          className="companies-list"
43
            id="profiles-container"
41
          id="profiles-container"
44
            style={{
-
 
45
              position: "relative",
42
          style={{ position: "relative", padding: "0 15px" }}
46
              padding: "0 15px",
-
 
47
            }}
-
 
48
          >
43
        >
49
            {entities.length > 0 ? (
44
          {entities.length > 0 ? (
50
              entities.map(
45
            entities.map(
51
                ({ image, link_unblock, link_view, name }, index) => (
46
              ({ image, link_unblock, link_view, name }, index) => (
52
                  <Profile
47
                <Profile
53
                    image={image}
48
                  image={image}
54
                    name={name}
49
                  name={name}
55
                    key={index}
50
                  key={index}
56
                    link_view={link_view}
51
                  link_view={link_view}
57
                    link_unblock={link_unblock}
52
                  link_unblock={link_unblock}
58
                    fetchCallback={fetchEntitys}
53
                  fetchCallback={fetchEntitys}
59
                  />
54
                />
60
                )
-
 
61
              )
55
              )
-
 
56
            )
62
            ) : (
57
          ) : (
63
              <p>No hay resultados</p>
58
            <p>No hay resultados</p>
64
            )}
59
          )}
65
            {loading ? (
60
          {loading ? (
66
              <div className="spinner-container">
61
            <div className="spinner-container">
67
                <Spinner />
62
              <Spinner />
68
              </div>
63
            </div>
69
            ) : (
64
          ) : (
70
              ""
65
            ""
71
            )}
66
          )}
72
          </div>
-
 
73
          {/* <!--product-feed-tab end--> */}
-
 
74
        </div>
67
        </div>
75
      </div>
68
      </div>
76
    </section>
69
    </section>
77
  );
70
  );
78
};
71
};