Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5489 | Rev 6353 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5489 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 } 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
import FormErrorFeedback from '../../../shared/form-error-feedback/FormErrorFeedback'
11
 
12
const HobbiesModal = ({
13
  show = false,
14
  userIdEncrypted = '',
15
  userHobbiesAndInterests = [],
16
  hobbiesAndInterestsOptions = [],
17
  closeModal = () => {},
18
  setUserHobbiesAndInterests = () => {},
19
}) => {
6352 stevensc 20
  const { register, errors, handleSubmit, setValue } = useForm()
5489 stevensc 21
  const [modalLoading, setModalLoading] = useState(false)
6352 stevensc 22
 
5489 stevensc 23
  const dispatch = useDispatch()
24
 
25
  const handleTagsChange = (tags) => {
6352 stevensc 26
    setValue('hobbiesAndInterests', tags)
5489 stevensc 27
  }
28
 
6352 stevensc 29
  const onSubmitHandler = async ({ hobbiesAndInterests }) => {
5489 stevensc 30
    setModalLoading(true)
31
    const formData = new FormData()
6352 stevensc 32
 
33
    hobbiesAndInterests.map((language) =>
5489 stevensc 34
      formData.append('hobbies_and_interests[]', language)
6352 stevensc 35
    )
36
 
37
    axios
5489 stevensc 38
      .post(
39
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
40
        formData
41
      )
6352 stevensc 42
      .then(({ data: response }) => {
43
        const { data, success } = response
44
        if (!success) {
45
          const errorMessage = data.hobbiesAndInterests[0]
46
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
47
          return
5489 stevensc 48
        }
6352 stevensc 49
 
50
        setUserHobbiesAndInterests(hobbiesAndInterests)
51
        dispatch(
52
          addNotification({ style: 'success', msg: 'Registro actualizado' })
53
        )
54
        closeModal()
5489 stevensc 55
      })
6352 stevensc 56
      .catch((error) => {
57
        dispatch(addNotification({ style: 'danger', msg: error }))
58
        throw new Error(error)
59
      })
60
      .finally(() => setModalLoading(false))
5489 stevensc 61
  }
62
 
63
  useEffect(() => {
6352 stevensc 64
    register('hobbiesAndInterests')
5489 stevensc 65
  }, [])
66
 
6352 stevensc 67
  useEffect(() => {
68
    show
69
      ? setValue('hobbiesAndInterests', userHobbiesAndInterests)
70
      : setValue('hobbiesAndInterests', [''])
71
  }, [show])
72
 
5489 stevensc 73
  return (
6352 stevensc 74
    <Modal show={show} onHide={closeModal}>
5489 stevensc 75
      <Modal.Header closeButton>
76
        <Modal.Title>Pasatiempos e intereses</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
            {errors.hobbiesAndInterests && (
87
              <FormErrorFeedback>
88
                {errors.hobbiesAndInterests.message}
89
              </FormErrorFeedback>
90
            )}
91
          </div>
92
        </Modal.Body>
93
        <Modal.Footer>
94
          <Button size="sm" type="submit">
95
            Enviar
96
          </Button>
6352 stevensc 97
          <Button size="sm" variant="danger" onClick={closeModal}>
5489 stevensc 98
            Cancelar
99
          </Button>
100
        </Modal.Footer>
101
      </form>
102
      {modalLoading && <Spinner />}
103
    </Modal>
104
  )
105
}
106
 
107
export default HobbiesModal