Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15098 Rev 15099
Línea 1... Línea 1...
1
/* eslint-disable no-mixed-spaces-and-tabs */
1
/* eslint-disable no-mixed-spaces-and-tabs */
2
import axios from 'axios'
2
import axios from 'axios'
3
import React, { useState, useEffect } from 'react'
3
import React, { useState, useEffect } from 'react'
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 { useHistory, useParams } from 'react-router-dom'
-
 
7
import { addNotification } from '../../../redux/notification/notification.actions'
6
import { addNotification } from '../../../redux/notification/notification.actions'
8
import parse from 'html-react-parser'
7
import parse from 'html-react-parser'
Línea 9... Línea 8...
9
 
8
 
Línea 10... Línea 9...
10
const EvaluationView = ({ actionLink, setActionLink }) => {
9
const EvaluationView = ({ actionLink, setActionLink, action, setAction }) => {
11
 
10
 
12
	// Hooks
-
 
13
	const dispatch = useDispatch()
-
 
14
	const history = useHistory()
11
	// Hooks
Línea 15... Línea 12...
15
	const { action } = useParams()
12
	const dispatch = useDispatch()
16
	const { setValue, register, watch, handleSubmit } = useForm()
13
	const { setValue, register, watch, handleSubmit } = useForm()
Línea 17... Línea 14...
17
 
14
 
18
	//States
-
 
19
	const [jobDescription, setJobDescription] = useState({})
15
	//States
20
 
16
	const [jobDescription, setJobDescription] = useState({})
21
	const onSubmit = () => {
17
 
22
 
18
	const onSubmit = () => {
23
		const content = []
19
		const content = []
Línea 53... Línea 49...
53
							)
49
							)
54
						)
50
						)
55
					return
51
					return
56
				}
52
				}
Línea 57... Línea 53...
57
 
53
 
58
				history.goBack()
54
				setAction('')
59
				setActionLink('')
55
				setActionLink('')
60
				dispatch(addNotification({
56
				dispatch(addNotification({
61
					style: 'success',
57
					style: 'success',
62
					msg: 'Registro actualizado'
58
					msg: 'Registro actualizado'
Línea 66... Línea 62...
66
 
62
 
67
	useEffect(() => {
63
	useEffect(() => {
68
		axios.get(actionLink)
64
		axios.get(actionLink)
69
			.then(({ data }) => {
65
			.then(({ data }) => {
70
				const resData = data.data
-
 
71
 
66
				const resData = data.data
72
				if (!data.success) {
67
				if (!data.success) {
73
					return dispatch(addNotification({
68
					return dispatch(addNotification({
74
						style: 'danger',
69
						style: 'danger',
75
						msg: 'Ha ocurrido un error'
70
						msg: 'Ha ocurrido un error'
Línea 159... Línea 154...
159
																					<td style={{ width: '20%' }}>{behavior.description}</td>
154
																					<td style={{ width: '20%' }}>{behavior.description}</td>
160
																					<td style={{ width: '60%' }}>
155
																					<td style={{ width: '60%' }}>
161
																						<input
156
																						<input
162
																							name={`${behavior.competency_uuid}-${behavior.uuid}-comment`}
157
																							name={`${behavior.competency_uuid}-${behavior.uuid}-comment`}
163
																							ref={register}
158
																							ref={register}
164
																							ref={register}
-
 
165
																							className='form-control w-100' />
159
																							className='form-control w-100' />
166
																					</td>
160
																					</td>
167
																					<td style={{ width: '20%' }}>
161
																					<td style={{ width: '20%' }}>
168
																						<input
162
																						<input
169
																							type="number"
163
																							type="number"
Línea 202... Línea 196...
202
											Guardar
196
											Guardar
203
										</button>
197
										</button>
204
										<button
198
										<button
205
											type="button"
199
											type="button"
206
											className="btn btn-secondary btn-edit-cancel"
200
											className="btn btn-secondary btn-edit-cancel"
207
											onClick={() => history.goBack()}
201
											onClick={() => setAction('')}
208
										>
202
										>
209
											Cancelar
203
											Cancelar
210
										</button>
204
										</button>
211
									</div>
205
									</div>
212
								</div>
206
								</div>