Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2613 | Rev 3183 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2613 Rev 3182
Línea 4... Línea 4...
4
import { useForm } from "react-hook-form";
4
import { useForm } from "react-hook-form";
5
import styled from "styled-components";
5
import styled from "styled-components";
6
import { axios } from "../../../../../utils";
6
import { axios } from "../../../../../utils";
7
import FormErrorFeedback from "../../../../../shared/form-error-feedback/FormErrorFeedback";
7
import FormErrorFeedback from "../../../../../shared/form-error-feedback/FormErrorFeedback";
8
import Spinner from "../../../../../shared/loading-spinner/Spinner";
8
import Spinner from "../../../../../shared/loading-spinner/Spinner";
-
 
9
import Accessibility from "../accessibility/Accessibility";
Línea 9... Línea 10...
9
 
10
 
10
const StyledSpinnerContainer = styled.div`
11
const StyledSpinnerContainer = styled.div`
11
  position: absolute;
12
  position: absolute;
12
  left: 0;
13
  left: 0;
Línea 20... Línea 21...
20
  z-index: 300;
21
  z-index: 300;
21
`;
22
`;
Línea 22... Línea 23...
22
 
23
 
23
const Privacy = (props) => {
24
const Privacy = (props) => {
24
  // props destructuring
25
  // props destructuring
25
  const { groupId, addNotification, privacies, settedPrivacy, setSettedPrivacy } = props;
26
  const { groupId, addNotification, privacies, settedPrivacy, setSettedPrivacy, setSettedAccesibility } = props;
26
  // react hook form
27
  // react hook form
27
  const {
28
  const {
28
    register,
29
    register,
29
    errors,
30
    errors,
Línea 58... Línea 59...
58
    // profile/my-profiles/extended', [ 'id' => $user_profile_id_encrypted]
59
    // profile/my-profiles/extended', [ 'id' => $user_profile_id_encrypted]
59
    // https://leaderslinked.com/profile/my-profiles/extended/MzU4NDg3ODcg
60
    // https://leaderslinked.com/profile/my-profiles/extended/MzU4NDg3ODcg
60
    setLoading(true);
61
    setLoading(true);
61
    const formData = new FormData();
62
    const formData = new FormData();
62
    Object.entries(data).map(([key, value]) => {
63
    Object.entries(data).map(([key, value]) => {
-
 
64
      if (value === 'Privado') {
-
 
65
        const accessibilityData = new FormData()
-
 
66
        accessibilityData.append('accessibility', 'aa')
-
 
67
        axios.post(`/group/my-groups/accessibility/${groupId}`, accessibilityData)
-
 
68
          .then(({ data }) => data.success && setSettedAccesibility(data.data))
-
 
69
      }
63
      formData.append(key, value);
70
      formData.append(key, value)
64
    });
71
    })
65
    await axios
-
 
66
      .post(`/group/my-groups/privacy/${groupId}`, formData)
72
    await axios.post(`/group/my-groups/privacy/${groupId}`, formData)
67
      .then((response) => {
73
      .then((response) => {
68
        const resData = response.data;
74
        const resData = response.data;
69
        (resData);
75
        (resData);
70
        if (resData.success) {
76
        if (resData.success) {
71
          setSettedPrivacy(resData.data);
77
          setSettedPrivacy(resData.data);