Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4110 | Rev 4112 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4014 stevensc 1
import React, { useEffect, useState } from "react";
2885 stevensc 2
import { useDispatch } from "react-redux";
3
import { addNotification } from "../../../redux/notification/notification.actions";
2232 stevensc 4
import { axios } from "../../../utils";
1 www 5
 
4014 stevensc 6
const PeopleYouMayKnow = () => {
4006 stevensc 7
 
4014 stevensc 8
  const [peopleYouMayKnow, setPeopleYouMayKnow] = useState([]);
4110 stevensc 9
  const [lookMore, setLookMore] = useState(false);
2885 stevensc 10
  const dispatch = useDispatch()
1 www 11
 
2885 stevensc 12
  const handleConnect = (url) => {
13
    axios.post(url)
14
      .then(({ data }) => {
15
        if (!data.success) {
16
          return dispatch(addNotification({
17
            style: 'danger',
18
            msg: typeof data.data === 'string'
19
              ? data.data
20
              : 'Ha ocurrido un error'
21
          }))
22
        }
23
 
4014 stevensc 24
        dispatch(addNotification({
25
          style: 'success',
26
          msg: data.data
27
        }))
28
        return getSuggestion()
2885 stevensc 29
      })
30
  }
31
 
4014 stevensc 32
  const getSuggestion = async (url = `/helpers/people-you-may-know`) => {
33
    try {
4111 stevensc 34
      const { data: response } = await axios.get(url)
35
      if (response.success) setPeopleYouMayKnow(response.data);
4014 stevensc 36
    } catch (error) {
37
      console.log(error);
38
    }
39
  }
40
 
41
  useEffect(() => {
42
    getSuggestion()
43
  }, []);
44
 
4110 stevensc 45
  const dataSlice = () => {
46
    let infoFollows = [...peopleYouMayKnow]
47
    if (!lookMore) {
48
      infoFollows = infoFollows.slice(0, 3)
49
    }
50
    return infoFollows
51
  }
52
 
1 www 53
  return (
3921 stevensc 54
    <div className='peopleYouMayKnow'>
2890 stevensc 55
      <div className="sd-title d-flex align-items-center justify-content-between">
56
        <h3>Conecta con:</h3>
4111 stevensc 57
        {
58
          peopleYouMayKnow.length >= 4 &&
59
          <label onClick={() => setLookMore(!lookMore)}>
60
            Ver más
61
          </label>
62
        }
2890 stevensc 63
      </div>
3837 stevensc 64
      <div className='suggest-list'>
4014 stevensc 65
        {peopleYouMayKnow.length
4110 stevensc 66
          ? dataSlice().map(({ id, image, link_cancel, link_request, name, profile }) =>
4090 stevensc 67
            <div className='user' key={id}>
3921 stevensc 68
              <div className="w-100 d-flex align-items-center" style={{ gap: '.5rem' }}>
69
                <a href={profile} target="_blank" rel="noreferrer">
70
                  <img src={image} alt={`${name} profile image`} />
71
                </a>
4090 stevensc 72
                <h4 className="break-ellipsis">{name}</h4>
3921 stevensc 73
              </div>
4091 stevensc 74
              {link_request &&
75
                <button
76
                  className="btn btn-primary"
77
                  onClick={() => handleConnect(link_request)}
78
                >
79
                  Conectar
80
                </button>
81
              }
82
              {link_cancel &&
83
                <button
84
                  className="btn btn-secondary"
85
                  onClick={() => handleConnect(link_cancel)}
86
                >
87
                  Cancelar
88
                </button>
89
              }
3921 stevensc 90
            </div>
91
          )
3506 stevensc 92
          : <div className="view-more">Sin sugerencias</div>
93
        }
2890 stevensc 94
      </div>
2885 stevensc 95
    </div >
1 www 96
  );
97
};
98
 
99
export default PeopleYouMayKnow;