Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 8519 Rev 8520
Línea 5... Línea 5...
5
import { getData } from '../../../helpers/fetchHelpers'
5
import { getData } from '../../../helpers/fetchHelpers'
Línea 6... Línea 6...
6
 
6
 
7
const IndustryModal = ({
7
const IndustryModal = ({
8
    isOpen,
8
    isOpen,
9
    closeModal,
9
    closeModal,
10
    companySizeUrl,
10
    editUrl,
11
    action
11
    action
Línea 12... Línea 12...
12
}) => {
12
}) => {
13
 
13
 
14
    const { handleSubmit, register } = useForm()
14
    const { handleSubmit, register } = useForm()
15
    const [error, setError] = useState(null);
15
    const [error, setError] = useState(null);
Línea 16... Línea 16...
16
    const [industries, setIndustries] = useState([]);
16
    const [industries, setIndustries] = useState([]);
-
 
17
    const [currentIndustry, setCurrentIndustry] = useState("");
17
    const [currentIndustry, setCurrentIndustry] = useState("");
18
 
18
 
19
    const onSubmit = ({ industry }) => {
Línea 19... Línea 20...
19
    const onSubmit = ({ industry }) => {
20
 
20
        const data = new FormData()
21
        const data = new FormData()
Línea 33... Línea 34...
33
            })
34
            })
34
            .catch((err) => console.log(err))
35
            .catch((err) => console.log(err))
35
    }
36
    }
Línea 36... Línea 37...
36
 
37
 
37
    useEffect(() => {
38
    useEffect(() => {
38
        getData(companySizeUrl)
39
        getData(editUrl)
39
            .then(({ industries, industry_id }) => {
40
            .then(({ industries, industry_id }) => {
40
                Object.entries(industries).map(([key, value]) => {
41
                Object.entries(industries).map(([key, value]) => {
41
                    setIndustries(prev => [...prev, { value: key, name: value }])
42
                    setIndustries(prev => [...prev, { value: key, name: value }])