Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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