Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5165 | 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 { useState } from "react";
3
import { Button, Modal } from "react-bootstrap";
4
import { useForm } from "react-hook-form";
5
import { connect } from "react-redux";
6
import {axios} from "../../../../utils";
7
import FormErrorFeedback from "../../../../shared/form-error-feedback/FormErrorFeedback";
8
import Spinner from "../../../../shared/loading-spinner/Spinner";
9
import { addNotification } from "../../../../redux/notification/notification.actions";
10
import styled from "styled-components";
11
 
12
const StyledSpinnerContainer = styled.div`
13
  position: absolute;
14
  left: 0;
15
  top: 0;
16
  width: 100%;
17
  height: 100%;
18
  background: rgba(255, 255, 255, 0.4);
19
  display: flex;
20
  justify-content: center;
21
  align-items: center;
22
  z-index: 300;
23
`;
24
 
25
const AddCompanyModal = (props) => {
26
  // props destructuring
27
  const { show, onHide, fetchCompanies, companySizes, industries } = props;
28
 
29
  // React hook form
30
  const { register, handleSubmit, errors, getValues, setError } = useForm();
31
 
32
  // Redux
33
  const { addNotification } = props;
34
 
35
  // states
36
  const [loading, setLoading] = useState(false);
37
 
38
  const onSubmitHandler = async (data) => {
39
    setLoading(true);
40
    const formData = new FormData();
41
    Object.entries(data).map(([key, value]) => {
42
      formData.append(key, value);
43
    });
44
    await axios.post(`/company/my-companies/add`, formData).then((response) => {
45
      const resData = response.data;
46
      if (resData.success) {
47
        fetchCompanies();
48
        onHide();
49
      } else {
50
        const resError = resData.data;
51
        if (resError.constructor.name === "Object") {
52
          Object.entries(resError).map(([key, value]) => {
53
            if (key in getValues()) {
54
              setError(key, {
55
                type: "manual",
56
                message: Array.isArray(value) ? value[0] : value,
57
              });
58
            }
59
          });
60
        } else {
61
          addNotification({
62
            style: "danger",
63
            msg: resError,
64
          });
65
        }
66
      }
67
    });
68
    setLoading(false);
69
  };
70
 
71
  return (
72
    <Modal show={show} onHide={onHide}>
73
      <Modal.Header closeButton>
74
        <Modal.Title id="contained-modal-title-vcenter">
75
          Nueva Empresa
76
        </Modal.Title>
77
      </Modal.Header>
78
      <form onSubmit={handleSubmit(onSubmitHandler)}>
79
        <Modal.Body>
80
          <div style={{ position: "relative" }}>
81
            <div className="form-group">
82
              <input
83
                type="text"
84
                name="name"
85
                id="name"
86
                placeholder="Nombre de la empresa"
87
                ref={register({
88
                  required: "Por favor ingrese el nombre de la Empresa",
89
                })}
90
              />
91
              {errors.name && (
92
                <FormErrorFeedback>{errors.name.message}</FormErrorFeedback>
93
              )}
94
            </div>
95
            <div className="form-group">
96
              <select
97
                name="industry_id"
98
                id="industry_id"
99
                defaultValue=""
100
                ref={register({
101
                  required: "Por favor eliga una industria",
102
                })}
103
              >
104
                <option value="" hidden>
105
                  Industria
106
                </option>
107
                {Object.entries(industries).map(([key, value]) => (
108
                  <option value={key} key={key}>
109
                    {value}
110
                  </option>
111
                ))}
112
              </select>
113
              {errors.industry_id && (
114
                <FormErrorFeedback>
115
                  {errors.industry_id.message}
116
                </FormErrorFeedback>
117
              )}
118
            </div>
119
            <div className="form-group">
120
              <select
121
                name="company_size_id"
122
                id="company_size_id"
123
                defaultValue=""
124
                ref={register({
125
                  required: "Por favor eliga el tamaño de la empresa",
126
                })}
127
              >
128
                <option value="" hidden>
129
                  Tamaño de la empresa
130
                </option>
131
                {Object.entries(companySizes).map(([key, value]) => (
132
                  <option value={key} key={key}>
133
                    {value}
134
                  </option>
135
                ))}
136
              </select>
137
              {errors.company_size_id && (
138
                <FormErrorFeedback>
139
                  {errors.company_size_id.message}
140
                </FormErrorFeedback>
141
              )}
142
            </div>
143
 
144
            {loading && (
145
              <StyledSpinnerContainer>
146
                <Spinner />
147
              </StyledSpinnerContainer>
148
            )}
149
          </div>
150
        </Modal.Body>
151
        <Modal.Footer>
152
          <button
153
            type="submit"
154
            className="message-us text-white"
155
          >
156
            Crear
157
          </button>
158
          <button
159
            type="button"
160
            onClick={onHide}
161
            className="message-us text-white"
162
          >
163
            Cancelar
164
          </button>
165
        </Modal.Footer>
166
      </form>
167
    </Modal>
168
  );
169
};
170
 
171
// const mapStateToProps = (state) => ({});
172
 
173
const mapDispatchToProps = {
174
  addNotification: (notification) => addNotification(notification),
175
};
176
 
177
export default connect(null, mapDispatchToProps)(AddCompanyModal);