6753 |
stevensc |
1 |
import React, { useEffect, useState } from 'react'
|
|
|
2 |
import { Button, Modal } from 'react-bootstrap'
|
|
|
3 |
import { axios } from '../../../utils'
|
|
|
4 |
import { useForm } from 'react-hook-form'
|
|
|
5 |
import { useDispatch, useSelector } from 'react-redux'
|
|
|
6 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
|
|
7 |
|
|
|
8 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
|
|
9 |
import TagsInput from '../../../shared/tags-input/TagsInput'
|
|
|
10 |
|
|
|
11 |
const HobbiesModal = ({
|
|
|
12 |
show = false,
|
|
|
13 |
userIdEncrypted = '',
|
|
|
14 |
userHobbiesAndInterests = [],
|
|
|
15 |
hobbiesAndInterestsOptions = [],
|
|
|
16 |
closeModal = () => {},
|
|
|
17 |
setUserHobbiesAndInterests = () => {},
|
|
|
18 |
}) => {
|
|
|
19 |
const [modalLoading, setModalLoading] = useState(false)
|
|
|
20 |
const labels = useSelector(({ intl }) => intl.labels)
|
|
|
21 |
const dispatch = useDispatch()
|
|
|
22 |
|
|
|
23 |
const { register, handleSubmit, setValue } = useForm()
|
|
|
24 |
|
|
|
25 |
const handleTagsChange = (tags) => {
|
|
|
26 |
setValue('hobbiesAndInterests', tags)
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
const onSubmitHandler = async ({ hobbiesAndInterests }) => {
|
|
|
30 |
setModalLoading(true)
|
|
|
31 |
const formData = new FormData()
|
|
|
32 |
|
|
|
33 |
hobbiesAndInterests.map((language) =>
|
|
|
34 |
formData.append('hobbies_and_interests[]', language.value)
|
|
|
35 |
)
|
|
|
36 |
|
|
|
37 |
axios
|
|
|
38 |
.post(
|
|
|
39 |
`/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
|
|
|
40 |
formData
|
|
|
41 |
)
|
|
|
42 |
.then(({ data: response }) => {
|
|
|
43 |
const { data, success } = response
|
|
|
44 |
if (!success) {
|
|
|
45 |
const errorMessage = data.hobbies_and_interests[0]
|
|
|
46 |
dispatch(addNotification({ style: 'danger', msg: errorMessage }))
|
|
|
47 |
return
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
setUserHobbiesAndInterests(hobbiesAndInterests)
|
|
|
51 |
dispatch(
|
|
|
52 |
addNotification({ style: 'success', msg: 'Registro actualizado' })
|
|
|
53 |
)
|
|
|
54 |
closeModal()
|
|
|
55 |
})
|
|
|
56 |
.catch((error) => {
|
|
|
57 |
dispatch(addNotification({ style: 'danger', msg: error }))
|
|
|
58 |
throw new Error(error)
|
|
|
59 |
})
|
|
|
60 |
.finally(() => setModalLoading(false))
|
|
|
61 |
}
|
|
|
62 |
|
|
|
63 |
useEffect(() => {
|
|
|
64 |
register('hobbiesAndInterests')
|
|
|
65 |
}, [])
|
|
|
66 |
|
|
|
67 |
useEffect(() => {
|
|
|
68 |
show
|
|
|
69 |
? setValue('hobbiesAndInterests', userHobbiesAndInterests)
|
|
|
70 |
: setValue('hobbiesAndInterests', [''])
|
|
|
71 |
}, [show])
|
|
|
72 |
|
|
|
73 |
return (
|
|
|
74 |
<Modal show={show} onHide={closeModal}>
|
|
|
75 |
<Modal.Header closeButton>
|
|
|
76 |
<Modal.Title>{labels.hobbies_and_interests}</Modal.Title>
|
|
|
77 |
</Modal.Header>
|
|
|
78 |
<form onSubmit={handleSubmit(onSubmitHandler)}>
|
|
|
79 |
<Modal.Body>
|
|
|
80 |
<div className="form-group">
|
|
|
81 |
<TagsInput
|
|
|
82 |
suggestions={hobbiesAndInterestsOptions}
|
|
|
83 |
settedTags={userHobbiesAndInterests}
|
|
|
84 |
onChange={handleTagsChange}
|
|
|
85 |
/>
|
|
|
86 |
</div>
|
|
|
87 |
</Modal.Body>
|
|
|
88 |
<Modal.Footer>
|
|
|
89 |
<Button size="sm" type="submit">
|
|
|
90 |
{labels.accept}
|
|
|
91 |
</Button>
|
|
|
92 |
<Button size="sm" variant="danger" onClick={closeModal}>
|
|
|
93 |
{labels.cancel}
|
|
|
94 |
</Button>
|
|
|
95 |
</Modal.Footer>
|
|
|
96 |
</form>
|
|
|
97 |
{modalLoading && <Spinner />}
|
|
|
98 |
</Modal>
|
|
|
99 |
)
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
export default HobbiesModal
|