Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15227 Rev 15271
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 } 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 { useDispatch } from 'react-redux'
6
import { getData } from '../../../helpers/fetchHelpers'
6
import { getData } from '../../../helpers/fetchHelpers'
7
import { addNotification } from '../../../redux/notification/notification.actions'
7
import { addNotification } from '../../../redux/notification/notification.actions'
Línea 12... Línea 12...
12
	websiteUrl,
12
	websiteUrl,
13
	action
13
	action
14
}) => {
14
}) => {
Línea 15... Línea 15...
15
 
15
 
16
	const { handleSubmit, register, setValue } = useForm()
-
 
17
	const [error, setError] = useState(null)
16
	const { handleSubmit, register, setValue } = useForm()
Línea 18... Línea 17...
18
	const dispatch = useDispatch()
17
	const dispatch = useDispatch()
19
 
18
 
20
	const onSubmit = ({ website }) => {
19
	const onSubmit = ({ website }) => {
Línea 39... Línea 38...
39
							)
38
							)
40
						)
39
						)
41
					return
40
					return
42
				}
41
				}
43
				action(data.data.website)
42
				action(data.data.website)
44
			})
-
 
45
			.then(() => {
-
 
46
				setError(null)
-
 
47
				closeModal()
43
				closeModal()
48
			})
44
			})
49
			.catch((err) => console.log(err))
45
			.catch((err) => console.log(err))
50
	}
46
	}
Línea 75... Línea 71...
75
							name="website"
71
							name="website"
76
							ref={register}
72
							ref={register}
77
							style={{ padding: '1px' }}
73
							style={{ padding: '1px' }}
78
						/>
74
						/>
79
					</div>
75
					</div>
80
					{error && <p>{error}</p>}
-
 
81
				</Modal.Body>
76
				</Modal.Body>
82
				<Modal.Footer>
77
				<Modal.Footer>
83
					<Button
78
					<Button
84
						variant="primary"
79
						variant="primary"
85
						type="submit"
80
						type="submit"