Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4638 stevensc 1
import React from "react";
2
import { useState, useEffect } from "react";
3
import { Button, Modal } from "react-bootstrap";
4
import { useForm } from "react-hook-form";
5
import styled from "styled-components";
6
import { axios } from "../../../../../../../utils";
7
import FormErrorFeedback from "../../../../../../../shared/form-error-feedback/FormErrorFeedback";
8
import Spinner from "../../../../../../../shared/loading-spinner/Spinner";
9
import EditIcon from '@mui/icons-material/EditOutlined'
10
 
11
const StyledSpinnerContainer = styled.div`
12
  position: absolute;
13
  left: 0;
14
  top: 0;
15
  width: 100%;
16
  height: 100%;
17
  background: rgba(255, 255, 255, 0.4);
18
  display: flex;
19
  justify-content: center;
20
  align-items: center;
21
  z-index: 300;
22
`;
23
 
24
const Industry = (props) => {
25
  // props destructuring
26
  const { groupId, industry, industries, addNotification } = props;
27
  // react hook form
28
  const {
29
    register,
30
    errors,
31
    handleSubmit,
32
    setValue,
33
    clearErrors,
34
    getValues,
35
    setError,
36
  } = useForm();
37
 
38
  // states
39
  const [isModalOpen, setIsModalOpen] = useState(false);
40
  const [loading, setLoading] = useState(false);
41
  const [settedIndustry, setSettedIndustry] = useState(industry);
42
  const [settedIndustryKey, setSettedIndustryKey] = useState("");
43
 
44
  useEffect(() => {
45
    axios.get(`/group/my-groups/industry/${groupId}`).then((response) => {
46
      const resData = response.data;
47
      (resData);
48
      if (resData.success) {
49
        if (resData.data >= 0) setSettedIndustryKey(resData.data);
50
      }
51
    });
52
  }, [settedIndustry]);
53
 
54
  const handleModalOpen = (event) => {
55
    event && event.preventDefault();
56
    setIsModalOpen(!isModalOpen);
57
  };
58
 
59
  const onSubmitHandler = async (data) => {
60
    // profile/my-profiles/extended', [ 'id' => $user_profile_id_encrypted]
61
    // https://leaderslinked.com/profile/my-profiles/extended/MzU4NDg3ODcg
62
    setLoading(true);
63
    const formData = new FormData();
64
    Object.entries(data).map(([key, value]) => {
65
      formData.append(key, value);
66
    });
67
    await axios
68
      .post(`/group/my-groups/industry/${groupId}`, formData)
69
      .then((response) => {
70
        const resData = response.data;
71
        (resData);
72
        if (resData.success) {
73
          setSettedIndustry(resData.data);
74
          handleModalOpen();
75
        } else {
76
          const resError = resData.data;
77
          if (resError.constructor.name === "Object") {
78
            Object.entries(resError).map(([key, value]) => {
79
              if (key in getValues()) {
80
                setError(key, {
81
                  type: "manual",
82
                  message: Array.isArray(value) ? value[0] : value,
83
                });
84
              }
85
            });
86
          } else {
87
            addNotification({
88
              style: "danger",
89
              msg: resError,
90
            });
91
          }
92
        }
93
      });
94
    setLoading(false);
95
  };
96
 
97
  return (
98
    <React.Fragment>
99
      <div className="experience__user-card">
100
        <div className="card__options-container">
101
          <h4>
102
            Industria
103
          </h4>
104
          <button className='button-icon' onClick={handleModalOpen}>
105
            <EditIcon />
106
          </button>
107
        </div>
108
        <span id="overview-industry">{settedIndustry}</span>
109
      </div>
110
 
111
      {/* modal */}
112
      <Modal
113
        show={isModalOpen}
114
        onHide={handleModalOpen}
115
        style={{ overflowY: "scroll" }}
116
      >
117
        <Modal.Header closeButton>
118
          <Modal.Title>Industria</Modal.Title>
119
        </Modal.Header>
120
        <form onSubmit={handleSubmit(onSubmitHandler)}>
121
          <Modal.Body>
122
            <select
123
              name="industry_id"
124
              id="industry_id"
125
              defaultValue={settedIndustryKey && settedIndustryKey}
126
              ref={register({
127
                required: "Por favor eliga una industria",
128
              })}
129
            >
130
              <option value="" hidden>
131
                Industria
132
              </option>
133
              {Object.entries(industries).map(([key, value]) => (
134
                <option value={key} key={key}>
135
                  {value}
136
                </option>
137
              ))}
138
            </select>
139
            {errors.industry_id && (
140
              <FormErrorFeedback>
141
                {errors.industry_id.message}
142
              </FormErrorFeedback>
143
            )}
144
          </Modal.Body>
145
          <Modal.Footer>
146
            <Button type="submit">Enviar</Button>
147
            <Button variant="danger" onClick={handleModalOpen}>
148
              Cancelar
149
            </Button>
150
          </Modal.Footer>
151
        </form>
152
        {loading && (
153
          <StyledSpinnerContainer>
154
            <Spinner />
155
          </StyledSpinnerContainer>
156
        )}
157
      </Modal>
158
    </React.Fragment>
159
  );
160
};
161
 
162
export default Industry;