Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 11152 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 { getData } from '../../../helpers/fetchHelpers'
4
import { getData } from '../../../helpers/fetchHelpers'
5
import { useForm } from 'react-hook-form'
5
import { useForm } from 'react-hook-form'
-
 
6
import { addNotification } from '../../../redux/notification/notification.actions'
-
 
7
import { useDispatch } from 'react-redux'
Línea 6... Línea 8...
6
 
8
 
7
const SocialNetworksModal = ({
9
const SocialNetworksModal = ({
8
	isOpen,
10
	isOpen,
9
	closeModal,
11
	closeModal,
10
	socialNetworksUrl,
12
	socialNetworksUrl,
11
	action
13
	action
Línea 12... Línea 14...
12
}) => {
14
}) => {
13
 
15
 
-
 
16
	const [error, setError] = useState(null)
Línea 14... Línea 17...
14
	const [error, setError] = useState(null)
17
	const { handleSubmit, setValue, register } = useForm()
Línea 15... Línea 18...
15
	const { handleSubmit, setValue, register } = useForm()
18
	const dispatch = useDispatch()
16
 
19
 
Línea 22... Línea 25...
22
		data.append('instagram', instagram)
25
		data.append('instagram', instagram)
Línea 23... Línea 26...
23
 
26
 
24
		axios.post(socialNetworksUrl, data)
27
		axios.post(socialNetworksUrl, data)
25
			.then(({ data }) => {
28
			.then(({ data }) => {
-
 
29
				if (!data.success) {
-
 
30
					typeof data.data === 'string'
-
 
31
						?
-
 
32
						dispatch(addNotification({
26
				if (!data.success) {
33
							style: 'danger',
-
 
34
							msg: data.data
-
 
35
						}))
-
 
36
						: Object.entries(data.data).map(([key, value]) =>
-
 
37
							value.map(err =>
-
 
38
								dispatch(addNotification({
-
 
39
									style: 'danger',
-
 
40
									msg: `${key}: ${err}`
-
 
41
								}))
-
 
42
							)
-
 
43
						)
27
					return setError(data.data)
44
					return
28
				}
45
				}
29
				action(data.data)
46
				action(data.data)
30
			})
47
			})
31
			.then(() => {
48
			.then(() => {
Línea 89... Línea 106...
89
				<Modal.Footer>
106
				<Modal.Footer>
90
					<Button
107
					<Button
91
						variant="primary"
108
						variant="primary"
92
						type="submit"
109
						type="submit"
93
					>
110
					>
94
                        Enviar
111
						Enviar
95
					</Button>
112
					</Button>
96
					<Button
113
					<Button
97
						className='btn-tertiary'
114
						className='btn-tertiary'
98
						onClick={closeModal}
115
						onClick={closeModal}
99
					>
116
					>
100
                        Cancelar
117
						Cancelar
101
					</Button>
118
					</Button>
102
				</Modal.Footer>
119
				</Modal.Footer>
103
			</form>
120
			</form>
104
		</Modal >
121
		</Modal >
105
	)
122
	)