Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 12846 Rev 12991
Línea 1... Línea 1...
1
import React, { useEffect } from 'react'
1
import React, { useEffect } from 'react'
2
import { Button, Modal } from 'react-bootstrap'
2
import { Button, Modal } from 'react-bootstrap'
3
import { useForm } from 'react-hook-form'
3
import { useForm } from 'react-hook-form'
4
import DescriptionInput from '../../../shared/DescriptionInput'
4
import DescriptionInput from '../../../shared/DescriptionInput'
Línea 5... Línea 5...
5
 
5
 
Línea 6... Línea 6...
6
const SectionModal = ({ show, closeModal, section, onSubmit, type }) => {
6
const SectionModal = ({ show, closeModal, section, onSubmit, sectionType }) => {
Línea 7... Línea 7...
7
 
7
 
8
	const { handleSubmit, errors, register, setValue } = useForm()
8
	const { handleSubmit, errors, register, setValue } = useForm()
9
 
9
 
10
	useEffect(() => {
10
	useEffect(() => {
11
		register('text')
11
		register('text')
Línea 12... Línea 12...
12
		setValue('name', section.name)
12
		setValue('name', section.name)
13
		setValue('text', section.text)
13
		setValue('text', section.text)
14
	}, [section])
14
	}, [section])
15
 
15
 
16
	const submit = (data) => {
16
	const submit = (data) => {
Línea 17... Línea 17...
17
		type === 'add' && onSubmit({ name: data.name, text: data.text })
17
		sectionType === 'add' && onSubmit(data.name, data.text)
18
		type === 'edit' && onSubmit({ name: data.name, text: data.text, slug: section.slug_section })
18
		sectionType === 'edit' && onSubmit(data.name, data.text, section.slug_section)
19
		closeModal()
19
		closeModal()
20
	}
20
	}
21
 
21
 
22
	return (
22
	return (
23
		<Modal size="md" onHide={closeModal} show={show}>
23
		<Modal size="md" onHide={closeModal} show={show}>
24
			<Modal.Header closeButton>
24
			<Modal.Header closeButton>
25
				<Modal.Title>{`${type === 'add' ? 'Agregar' : 'Editar'} sección`}</Modal.Title>
25
				<Modal.Title>{`${sectionType === 'add' ? 'Agregar' : 'Editar'} sección`}</Modal.Title>