Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2522 | Rev 2810 | Ir a la última revisión | | Comparar con el anterior | 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";
2348 stevensc 6
import { axios } from "../../../utils";
1 www 7
import { addNotification } from "../../../redux/notification/notification.actions";
8
import Spinner from "../../../shared/loading-spinner/Spinner";
9
import SavedJob from "./saved-job/SavedJob";
1547 steven 10
import SearchList from "../../../components/SearchList";
1548 steven 11
import Card from "../../../components/Profile";
1 www 12
 
13
const StyledSpinnerContainer = styled.div`
14
  position: absolute;
15
  left: 0;
16
  top: 0;
17
  width: 100%;
18
  height: 100%;
19
  background: rgba(255, 255, 255, 0.4);
20
  display: flex;
21
  justify-content: center;
22
  align-items: center;
23
  z-index: 300;
24
`;
25
 
26
const SavedJobs = (props) => {
27
  // states
28
  const [savedJobs, setSavedJobs] = useState([]);
29
  const [loading, setLoading] = useState(true);
30
 
31
  // redux destructuring
32
  const { addNotification } = props;
33
 
34
  // React hook form
35
  const { register, getValues } = useForm();
36
 
37
  let axiosThrottle = null;
38
 
39
  useEffect(() => {
40
    fetchSavedJobs();
41
    return () => {
42
      clearTimeout(axiosThrottle);
43
    };
44
  }, []);
45
 
46
  const handleCancelApply = (cancelLink) => {
47
    setLoading(true);
48
    axios
49
      .post(cancelLink)
50
      .then((response) => {
51
        const resData = response.data;
2348 stevensc 52
        (resData);
1 www 53
        if (resData.success) {
54
          fetchSavedJobs();
55
        } else {
56
          const errorMsg =
57
            typeof resData.data === "string"
58
              ? resData.data
59
              : "Ha ocurrido un error, Por favor intente más tarde";
60
          addNotification({
61
            style: "danger",
62
            msg: errorMsg,
63
          });
64
          setLoading(false);
65
        }
66
      })
67
      .catch((error) => {
2348 stevensc 68
        (error);
1 www 69
        setLoading(false);
70
      });
71
  };
72
 
2348 stevensc 73
  const fetchSavedJobs = async (searchParam = '') => {
1 www 74
    setLoading(true);
75
    await axios
76
      .get(
2348 stevensc 77
        "/job/saved-jobs?search=" + searchParam)
1 www 78
      .then((response) => {
79
        const resData = response.data;
80
        if (resData.success) {
81
          setSavedJobs(resData.data);
82
        }
83
      });
84
    setLoading(false);
85
  };
1549 steven 86
 
1 www 87
  return (
88
    <section className="companies-info" style={{ position: "relative" }}>
89
      <div className="container">
1547 steven 90
        <SearchList
2403 stevensc 91
          title="Empleos guardados"
1547 steven 92
          fetchCallback={fetchSavedJobs}
93
        />
1 www 94
        <div
95
          className="companies-list"
2348 stevensc 96
          id="profiles-container"
1 www 97
          style={{
98
            padding: "0 15px",
99
          }}
100
        >
2348 stevensc 101
          {savedJobs.length > 0 ? (
102
            savedJobs.map(
103
              (
104
                {
105
                  title,
106
                  employment_type,
107
                  last_date_of_application,
2808 kerby 108
                  image,
2348 stevensc 109
                  link_view,
110
                  link_remove,
111
                },
112
                index
113
              ) => (
114
                <Card
115
                  key={index}
2808 kerby 116
                  image={image}
2348 stevensc 117
                  name={title}
118
                  status={employment_type}
119
                  link_view={link_view}
120
                  link_delete={link_remove}
121
                  fetchCallback={fetchSavedJobs}
2522 stevensc 122
                  btnAcceptTitle='Ver Empleo'
2403 stevensc 123
                  btnCancelTitle='Eliminar'
2348 stevensc 124
                />
125
                // <SavedJob
126
                //   title={title}
127
                //   employment_type={employment_type}
128
                //   last_date_of_application={last_date_of_application}
129
                //   link_view={link_view}
130
                //   link_remove={link_remove}
131
                //   onCancelApply={handleCancelApply}
132
                //   key={index}
133
                // />
1 www 134
              )
2348 stevensc 135
            )
136
          ) : (
137
            <p>No hay resultados</p>
138
          )}
1 www 139
          {/* <!--product-feed-tab end--> */}
140
        </div>
141
      </div>
142
      {loading && (
143
        <StyledSpinnerContainer>
144
          <Spinner />
145
        </StyledSpinnerContainer>
146
      )}
147
    </section>
148
  );
149
};
150
 
151
// const mapStateToProps = (state) => ({});
152
 
153
const mapDispatchToProps = {
154
  addNotification: (notification) => addNotification(notification),
155
};
156
 
157
export default connect(null, mapDispatchToProps)(SavedJobs);