Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1180 Rev 1181
Línea 1... Línea 1...
1
import React from "react";
1
import React from "react";
2
import { useState, useEffect } from "react";
2
import { useState, useEffect } from "react";
3
import { Button, Modal } from "react-bootstrap";
3
import { Button, Modal } from "react-bootstrap";
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";
Línea 9... Línea 9...
9
 
9
 
10
const StyledSpinnerContainer = styled.div`
10
const StyledSpinnerContainer = styled.div`
Línea 41... Línea 41...
41
  const [settedIndustryKey, setSettedIndustryKey] = useState("");
41
  const [settedIndustryKey, setSettedIndustryKey] = useState("");
Línea 42... Línea 42...
42
 
42
 
43
  useEffect(() => {
43
  useEffect(() => {
44
    axios.get(`/group/my-groups/industry/${groupId}`).then((response) => {
44
    axios.get(`/group/my-groups/industry/${groupId}`).then((response) => {
45
      const resData = response.data;
45
      const resData = response.data;
46
       (resData);
46
      (resData);
47
      if (resData.success) {
47
      if (resData.success) {
48
        if (resData.data >= 0) setSettedIndustryKey(resData.data);
48
        if (resData.data >= 0) setSettedIndustryKey(resData.data);
49
      }
49
      }
50
    });
50
    });
Línea 65... Línea 65...
65
    });
65
    });
66
    await axios
66
    await axios
67
      .post(`/group/my-groups/industry/${groupId}`, formData)
67
      .post(`/group/my-groups/industry/${groupId}`, formData)
68
      .then((response) => {
68
      .then((response) => {
69
        const resData = response.data;
69
        const resData = response.data;
70
         (resData);
70
        (resData);
71
        if (resData.success) {
71
        if (resData.success) {
72
          setSettedIndustry(resData.data);
72
          setSettedIndustry(resData.data);
73
          handleModalOpen();
73
          handleModalOpen();
74
        } else {
74
        } else {
75
          const resError = resData.data;
75
          const resError = resData.data;
Línea 122... Línea 122...
122
        <form onSubmit={handleSubmit(onSubmitHandler)}>
122
        <form onSubmit={handleSubmit(onSubmitHandler)}>
123
          <Modal.Body>
123
          <Modal.Body>
124
            <select
124
            <select
125
              name="industry_id"
125
              name="industry_id"
126
              id="industry_id"
126
              id="industry_id"
127
              defaultValue={settedIndustryKey ? settedIndustryKey : ""}
127
              defaultValue={settedIndustryKey && settedIndustryKey}
128
              ref={register({
128
              ref={register({
129
                required: "Por favor eliga una industria",
129
                required: "Por favor eliga una industria",
130
              })}
130
              })}
131
            >
131
            >
132
              <option value="" hidden>
132
              <option value="" hidden>