Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14524 Rev 14843
Línea 1... Línea 1...
1
import axios from 'axios'
1
import axios from 'axios'
2
import React, { useEffect, useState } from 'react'
2
import React, { useEffect, useState } from 'react'
3
import { Modal, Button } from 'react-bootstrap'
3
import { Modal, Button } from 'react-bootstrap'
4
import { useForm } from 'react-hook-form'
4
import { useForm } from 'react-hook-form'
-
 
5
import { useDispatch } from 'react-redux'
5
import { getData } from '../../../helpers/fetchHelpers'
6
import { getData } from '../../../helpers/fetchHelpers'
-
 
7
import { addNotification } from '../../../redux/notification/notification.actions'
Línea 6... Línea 8...
6
 
8
 
7
const IndustryModal = ({
9
const IndustryModal = ({
8
	isOpen,
10
	isOpen,
9
	closeModal,
11
	closeModal,
Línea 12... Línea 14...
12
}) => {
14
}) => {
Línea 13... Línea 15...
13
 
15
 
14
	const { handleSubmit, register, setValue } = useForm()
16
	const { handleSubmit, register, setValue } = useForm()
15
	const [error, setError] = useState(null)
17
	const [error, setError] = useState(null)
-
 
18
	const [industries, setIndustries] = useState([])
Línea 16... Línea 19...
16
	const [industries, setIndustries] = useState([])
19
	const dispatch = useDispatch()
Línea 17... Línea 20...
17
 
20
 
18
	const onSubmit = ({ industry }) => {
21
	const onSubmit = ({ industry }) => {
Línea 19... Línea 22...
19
 
22
 
20
		const data = new FormData()
23
		const data = new FormData()
21
		data.append('industry_id', industry)
24
		data.append('industry_id', industry)
22
 
25
 
-
 
26
		axios.post(editUrl, data)
-
 
27
			.then(({ data }) => {
-
 
28
				if (!data.success) {
-
 
29
					typeof data.data === 'string'
-
 
30
						?
-
 
31
						dispatch(addNotification({
-
 
32
							style: 'danger',
-
 
33
							msg: data.data
-
 
34
						}))
-
 
35
						: Object.entries(data.data).map(([key, value]) =>
-
 
36
							value.map(err =>
-
 
37
								dispatch(addNotification({
-
 
38
									style: 'danger',
-
 
39
									msg: `${key}: ${err}`
23
		axios.post(editUrl, data)
40
								}))
24
			.then(({ data }) => {
41
							)
25
				if (!data.success) {
42
						)
26
					return setError('Error en la respuesta')
43
					return
27
				}
44
				}