Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1122 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
import React from "react";
2
import { useEffect, useState } from "react";
3
import { connect } from "react-redux";
4
import { useForm } from "react-hook-form";
5
import styled from "styled-components";
6
import {axios} from "../../../utils";
7
import { addNotification } from "../../../redux/notification/notification.actions";
8
import Spinner from "../../../shared/loading-spinner/Spinner";
9
import "../../../css/shared/global.scss";
10
 
11
const PeopleYouMayKnow = (props) => {
12
  // states
13
  const [entities, setEntities] = useState([]);
14
  const [loading, setLoading] = useState(false);
15
 
16
  // Redux
17
  const { addNotification } = props;
18
 
19
  // React hook form
20
  const { register, getValues } = useForm();
21
 
22
  let axiosThrottle = null;
23
 
24
  useEffect(() => {
25
    fetchEntitys();
26
  }, []);
27
 
28
  const fetchEntitys = async (searchValue) => {
29
    setLoading(true);
30
    await axios
31
      .get("/connection/people-blocked?search="+(searchValue || ''))
32
      .then((response) => {
33
        const resData = response.data;
34
        if (resData.success) {
35
          setEntities(resData.data);
36
        }
37
      });
38
    setLoading(false);
39
  };
40
 
41
  const handleSearch = () => {
42
    //  (getValues());
43
    clearTimeout(axiosThrottle);
44
    // setLoading(true);
45
    const searchValue = getValues("search");
46
    axiosThrottle = setTimeout(() => {
47
      fetchEntitys(searchValue);
48
    }, 500);
49
  };
50
 
51
  const handleUnblock = async (link) => {
52
    setLoading(true);
53
    await axios.post(link).then((response) => {
54
      const resData = response.data;
55
      if (resData.success) {
56
        const msg = resData.data;
57
        addNotification({
58
          style: "success",
59
          msg: msg,
60
        });
61
        fetchEntitys();
62
      } else {
63
        setLoading(false);
64
        const errorMsg = resData.data;
65
        addNotification({
66
          style: "danger",
67
          msg: errorMsg,
68
        });
69
      }
70
    });
71
  };
72
 
73
  return (
74
    <section className="companies-info">
75
      <div className="container">
76
        <div className="company-title">
77
          <div className="section_admin_title_buttons">
78
            <div style={{ float: "left" }}>
79
              <h1 className="title">Personas bloqueadas</h1>
80
            </div>
81
          </div>
82
        </div>
83
 
84
        <div className="company-title">
85
          <div className="section_admin_title_buttons">
86
            <form
87
              name="form-connection-search"
88
              id="form-connection-search"
89
              onSubmit={(event) => event.preventDefault()}
90
            >
91
              <div className="form-group">
92
                <input
93
                  type="text"
94
                  name="search"
95
                  id="search"
96
                  className="form-control"
97
                  placeholder="Buscar"
98
                  ref={register}
99
                  onChange={handleSearch}
100
                />
101
              </div>
102
            </form>
103
          </div>
104
        </div>
105
 
106
        <div className="companies-list">
107
          <div
108
            className="row"
109
            id="profiles-container"
110
            style={{
111
              position: "relative",
112
              padding: "0 15px",
113
            }}
114
          >
115
            {entities.length > 0 ? (
116
              entities.map(
117
                ({ image, link_unblock, link_view, name }, index) => (
118
                  <div className="col-lg-3 col-md-3 col-sm-6" key={index}>
119
                    <div className="company_profile_info">
120
                      <div className="company-up-info">
121
                        <img src={image} alt="profile-image" />
122
                        <h3>{name}</h3>
123
                        <ul>
124
                          {link_view && (
125
                            <li>
126
                              <a
127
                                href={link_view}
128
                                title=""
129
                                className="follow btn-profile-view"
130
                              >
131
                                Ver Perfil
132
                              </a>
133
                            </li>
134
                          )}
135
                          <li>
136
                            <a
137
                              href="#"
138
                              title=""
139
                              className="message-us btn-connection-unblock"
140
                              onClick={(e) => {
141
                                e.preventDefault();
142
                                handleUnblock(link_unblock);
143
                              }}
144
                            >
145
                              Desbloquear
146
                            </a>
147
                          </li>
148
                        </ul>
149
                      </div>
150
                    </div>
151
                  </div>
152
                )
153
              )
154
            ) : (
155
              <p>No hay resultados</p>
156
            )}
157
            {loading ? (
158
              <div className="spinner-container">
159
                <Spinner />
160
              </div>
161
            ) : (
162
              ""
163
            )}
164
          </div>
165
          {/* <!--product-feed-tab end--> */}
166
        </div>
167
      </div>
168
    </section>
169
  );
170
};
171
 
172
const mapDispatchToProps = {
173
  addNotification: (notification) => addNotification(notification),
174
};
175
 
176
export default connect(null, mapDispatchToProps)(PeopleYouMayKnow);