Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15227 Rev 15267
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 { CKEditor } from 'ckeditor4-react'
5
import { CKEditor } from 'ckeditor4-react'
6
import { addNotification } from '../../../redux/notification/notification.actions'
6
import { addNotification } from '../../../redux/notification/notification.actions'
7
import { useDispatch } from 'react-redux'
7
import { useDispatch } from 'react-redux'
Línea 13... Línea 13...
13
	action,
13
	action,
14
	overview
14
	overview
15
}) => {
15
}) => {
Línea 16... Línea 16...
16
 
16
 
17
	const { register, handleSubmit, setValue, watch } = useForm()
-
 
18
	const [error, setError] = useState(null)
17
	const { register, handleSubmit, setValue, watch } = useForm()
Línea 19... Línea 18...
19
	const dispatch = useDispatch()
18
	const dispatch = useDispatch()
20
 
19
 
21
	const onSubmit = ({ description }) => {
20
	const onSubmit = ({ description }) => {
Línea 40... Línea 39...
40
							)
39
							)
41
						)
40
						)
42
					return
41
					return
43
				}
42
				}
44
				action(data.data.description)
43
				action(data.data.description)
45
			})
-
 
46
			.then(() => {
-
 
47
				setError(null)
-
 
48
				closeModal()
44
				closeModal()
49
			})
45
			})
50
			.catch((err) => setError(err))
46
			.catch((err) =>
-
 
47
				dispatch(addNotification({
-
 
48
					style: 'danger',
-
 
49
					msg: err
-
 
50
				})))
51
	}
51
	}
Línea 52... Línea 52...
52
 
52
 
Línea 53... Línea 53...
53
	useEffect(() => register('description'), [])
53
	useEffect(() => register('description'), [])
Línea 63... Línea 63...
63
				<Modal.Title>Visión general</Modal.Title>
63
				<Modal.Title>Visión general</Modal.Title>
64
			</Modal.Header>
64
			</Modal.Header>
65
			<form onSubmit={handleSubmit(onSubmit)}>
65
			<form onSubmit={handleSubmit(onSubmit)}>
66
				<Modal.Body>
66
				<Modal.Body>
67
					<div className="mb-3">
67
					<div className="mb-3">
68
						<label className="form-label">Visión general</label>
-
 
69
						<CKEditor
68
						<CKEditor
70
							data={watch('description')}
69
							data={watch('description')}
71
							onChange={(e) => {
70
							onChange={(e) => {
72
								const text = e.editor.getData()
71
								const text = e.editor.getData()
73
								setValue('description', text)
72
								setValue('description', text)
Línea 87... Línea 86...
87
								removePlugins: 'elementspath,Anchor',
86
								removePlugins: 'elementspath,Anchor',
88
								heigth: 100
87
								heigth: 100
89
							}}
88
							}}
90
							name="description"
89
							name="description"
91
						/>
90
						/>
92
						{error && <p>{error}</p>}
-
 
93
					</div>
91
					</div>
94
				</Modal.Body>
92
				</Modal.Body>
95
				<Modal.Footer>
93
				<Modal.Footer>
96
					<Button
94
					<Button
97
						variant="primary"
95
						variant="primary"