Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6352 | 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
 
6353 stevensc 33
    console.log(hobbiesAndInterests)
34
 
6352 stevensc 35
    hobbiesAndInterests.map((language) =>
6353 stevensc 36
      formData.append('hobbies_and_interests[]', language.value)
6352 stevensc 37
    )
38
 
39
    axios
5489 stevensc 40
      .post(
41
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
42
        formData
43
      )
6352 stevensc 44
      .then(({ data: response }) => {
45
        const { data, success } = response
46
        if (!success) {
6353 stevensc 47
          const errorMessage = data.hobbies_and_interests[0]
6352 stevensc 48
          dispatch(addNotification({ style: 'danger', msg: errorMessage }))
49
          return
5489 stevensc 50
        }
6352 stevensc 51
 
52
        setUserHobbiesAndInterests(hobbiesAndInterests)
53
        dispatch(
54
          addNotification({ style: 'success', msg: 'Registro actualizado' })
55
        )
56
        closeModal()
5489 stevensc 57
      })
6352 stevensc 58
      .catch((error) => {
59
        dispatch(addNotification({ style: 'danger', msg: error }))
60
        throw new Error(error)
61
      })
62
      .finally(() => setModalLoading(false))
5489 stevensc 63
  }
64
 
65
  useEffect(() => {
6352 stevensc 66
    register('hobbiesAndInterests')
5489 stevensc 67
  }, [])
68
 
6352 stevensc 69
  useEffect(() => {
70
    show
71
      ? setValue('hobbiesAndInterests', userHobbiesAndInterests)
72
      : setValue('hobbiesAndInterests', [''])
73
  }, [show])
74
 
5489 stevensc 75
  return (
6352 stevensc 76
    <Modal show={show} onHide={closeModal}>
5489 stevensc 77
      <Modal.Header closeButton>
78
        <Modal.Title>Pasatiempos e intereses</Modal.Title>
79
      </Modal.Header>
80
      <form onSubmit={handleSubmit(onSubmitHandler)}>
81
        <Modal.Body>
82
          <div className="form-group">
83
            <TagsInput
84
              suggestions={hobbiesAndInterestsOptions}
85
              settedTags={userHobbiesAndInterests}
86
              onChange={handleTagsChange}
87
            />
88
            {errors.hobbiesAndInterests && (
89
              <FormErrorFeedback>
90
                {errors.hobbiesAndInterests.message}
91
              </FormErrorFeedback>
92
            )}
93
          </div>
94
        </Modal.Body>
95
        <Modal.Footer>
96
          <Button size="sm" type="submit">
97
            Enviar
98
          </Button>
6352 stevensc 99
          <Button size="sm" variant="danger" onClick={closeModal}>
5489 stevensc 100
            Cancelar
101
          </Button>
102
        </Modal.Footer>
103
      </form>
104
      {modalLoading && <Spinner />}
105
    </Modal>
106
  )
107
}
108
 
109
export default HobbiesModal