Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 8522 Rev 11152
Línea 3... Línea 3...
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 { getData } from '../../../helpers/fetchHelpers'
5
import { getData } from '../../../helpers/fetchHelpers'
Línea 6... Línea 6...
6
 
6
 
7
const IndustryModal = ({
7
const IndustryModal = ({
8
    isOpen,
8
	isOpen,
9
    closeModal,
9
	closeModal,
10
    editUrl,
10
	editUrl,
11
    action
11
	action
Línea 12... Línea 12...
12
}) => {
12
}) => {
13
 
13
 
14
    const { handleSubmit, register } = useForm()
14
	const { handleSubmit, register } = useForm()
15
    const [error, setError] = useState(null);
15
	const [error, setError] = useState(null)
16
    const [industries, setIndustries] = useState([]);
16
	const [industries, setIndustries] = useState([])
17
    const [currentIndustry, setCurrentIndustry] = useState("");
17
	const [currentIndustry, setCurrentIndustry] = useState('')
18
 
18
 
19
    const onSubmit = ({ industry }) => {
19
	const onSubmit = ({ industry }) => {
20
 
20
 
21
        const data = new FormData()
21
		const data = new FormData()
22
        data.append("industry_id", industry)
22
		data.append('industry_id', industry)
23
 
23
 
24
        axios.post(editUrl, data)
24
		axios.post(editUrl, data)
25
            .then(({ data }) => {
25
			.then(({ data }) => {
26
                if (!data.success) {
26
				if (!data.success) {
27
                    return setError("Error en la respuesta")
27
					return setError('Error en la respuesta')
28
                }
28
				}
29
                action(data.data)
29
				action(data.data)
30
            })
30
			})
31
            .then(() => {
31
			.then(() => {
32
                setError(null)
32
				setError(null)
33
                closeModal()
33
				closeModal()
34
            })
34
			})
35
            .catch((err) => console.log(err))
35
			.catch((err) => console.log(err))
36
    }
36
	}
37
 
37
 
38
    useEffect(() => {
38
	useEffect(() => {
39
        getData(editUrl)
39
		getData(editUrl)
40
            .then(({ industries, industry_id }) => {
40
			.then(({ industries, industry_id }) => {
41
                Object.entries(industries).map(([key, value]) => {
41
				Object.entries(industries).map(([key, value]) => {
42
                    setIndustries(prev => [...prev, { value: key, name: value }])
42
					setIndustries(prev => [...prev, { value: key, name: value }])
43
                })
43
				})
44
 
44
 
45
                setCurrentIndustry(industry_id)
45
				setCurrentIndustry(industry_id)
46
            })
46
			})
47
    }, [isOpen]);
47
	}, [isOpen])
48
 
48
 
49
    return (
49
	return (
50
        <Modal
50
		<Modal
51
            size="md"
51
			size="md"
52
            show={isOpen}
52
			show={isOpen}
53
            onHide={closeModal}
53
			onHide={closeModal}
54
            autoFocus={false}
54
			autoFocus={false}
55
        >
55
		>
56
            <Modal.Header closeButton>
56
			<Modal.Header closeButton>
57
                <Modal.Title>Cambiar</Modal.Title>
57
				<Modal.Title>Cambiar</Modal.Title>
58
            </Modal.Header>
58
			</Modal.Header>
59
            <form onSubmit={handleSubmit(onSubmit)}>
59
			<form onSubmit={handleSubmit(onSubmit)}>
60
                <Modal.Body>
60
				<Modal.Body>
61
                    <div className="mb-3">
61
					<div className="mb-3">
62
                        <label className="form-label">Industria</label>
62
						<label className="form-label">Industria</label>
63
                        <select
63
						<select
64
                            className='form-control'
64
							className='form-control'
65
                            name="industry"
65
							name="industry"
66
                            ref={register}
66
							ref={register}
67
                        >
67
						>
68
                            {
68
							{
69
                                industries.map(({ value, name }) => (
69
								industries.map(({ value, name }) => (
70
                                    <option key={value} value={value}>{name}</option>
70
									<option key={value} value={value}>{name}</option>
71
                                ))
71
								))
72
                            }
72
							}
73
                        </select>
73
						</select>
74
                    </div>
74
					</div>
75
                    {error && <p>{error}</p>}
75
					{error && <p>{error}</p>}
76
                </Modal.Body>
76
				</Modal.Body>
77
                <Modal.Footer>
77
				<Modal.Footer>
78
                    <Button
78
					<Button
79
                        variant="primary"
79
						variant="primary"
80
                        type="submit"
80
						type="submit"
81
                    >
81
					>
82
                        Enviar
82
                        Enviar
83
                    </Button>
83
					</Button>
84
                    <Button
84
					<Button
85
                        variant="default"
85
						className='btn-tertiary'
86
                        onClick={closeModal}
86
						onClick={closeModal}
87
                    >
87
					>
88
                        Cancelar
88
                        Cancelar
89
                    </Button>
89
					</Button>
90
                </Modal.Footer>
90
				</Modal.Footer>
91
            </form>
91
			</form>
92
        </Modal >
92
		</Modal >
Línea 93... Línea 93...
93
    )
93
	)
94
}
94
}