Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5489 Rev 6352
Línea 15... Línea 15...
15
  userHobbiesAndInterests = [],
15
  userHobbiesAndInterests = [],
16
  hobbiesAndInterestsOptions = [],
16
  hobbiesAndInterestsOptions = [],
17
  closeModal = () => {},
17
  closeModal = () => {},
18
  setUserHobbiesAndInterests = () => {},
18
  setUserHobbiesAndInterests = () => {},
19
}) => {
19
}) => {
20
  const { register, errors, handleSubmit, setValue, getValues, setError } =
20
  const { register, errors, handleSubmit, setValue } = useForm()
21
    useForm()
-
 
22
  const [modalLoading, setModalLoading] = useState(false)
21
  const [modalLoading, setModalLoading] = useState(false)
23
  const [settedHobbyAndInterestTags, setSettedHobbyAndInterestTags] = useState(
-
 
24
    []
-
 
25
  )
-
 
26
  const dispatch = useDispatch()
-
 
Línea 27... Línea 22...
27
 
22
 
28
  const handleModalOpen = (event) => {
-
 
29
    event && event.preventDefault()
-
 
30
    Object.keys(getValues()).map(([key]) => setValue(key, ''))
-
 
31
    closeModal()
-
 
Línea 32... Línea 23...
32
  }
23
  const dispatch = useDispatch()
33
 
-
 
34
  const handleTagsChange = (tags) => {
-
 
35
    if (tags.length) {
-
 
36
      let newTags = []
-
 
37
      tags.map((tag) => {
-
 
38
        newTags = [...newTags, tag.value]
24
 
39
      })
-
 
40
      setValue('hobbiesAndInterests', newTags)
-
 
41
      setSettedHobbyAndInterestTags(tags)
-
 
42
    } else {
-
 
43
      setValue('hobbiesAndInterests', '')
-
 
44
      setSettedHobbyAndInterestTags('')
25
  const handleTagsChange = (tags) => {
Línea 45... Línea 26...
45
    }
26
    setValue('hobbiesAndInterests', tags)
46
  }
27
  }
47
 
28
 
-
 
29
  const onSubmitHandler = async ({ hobbiesAndInterests }) => {
48
  const onSubmitHandler = async () => {
30
    setModalLoading(true)
49
    setModalLoading(true)
31
    const formData = new FormData()
50
    const formData = new FormData()
32
 
-
 
33
    hobbiesAndInterests.map((language) =>
51
    getValues('hobbiesAndInterests').map((language) => {
34
      formData.append('hobbies_and_interests[]', language)
52
      formData.append('hobbies_and_interests[]', language)
35
    )
53
    })
36
 
54
    await axios
37
    axios
55
      .post(
38
      .post(
56
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
39
        `/profile/my-profiles/hobby-and-interest/${userIdEncrypted}`,
57
        formData
40
        formData
58
      )
41
      )
59
      .then((response) => {
42
      .then(({ data: response }) => {
60
        const resData = response.data
-
 
61
        if (resData.success) {
-
 
62
          setUserHobbiesAndInterests(settedHobbyAndInterestTags)
-
 
63
          dispatch(
-
 
64
            addNotification({ style: 'success', msg: 'Registro actualizado' })
-
 
65
          )
-
 
66
          handleModalOpen()
-
 
67
        } else {
-
 
68
          const resError = resData.data
-
 
69
          if (resError.constructor.name === 'Object') {
-
 
70
            Object.entries(resError).map(([key, value]) => {
-
 
71
              if (key in getValues()) {
-
 
72
                setError(key, {
-
 
73
                  type: 'manual',
-
 
74
                  message: Array.isArray(value) ? value[0] : value,
-
 
75
                })
-
 
76
              }
43
        const { data, success } = response
77
            })
44
        if (!success) {
78
          } else {
45
          const errorMessage = data.hobbiesAndInterests[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
      })
79
            dispatch(addNotification({ style: 'danger', msg: resError }))
56
      .catch((error) => {
80
          }
57
        dispatch(addNotification({ style: 'danger', msg: error }))
81
        }
58
        throw new Error(error)
Línea 82... Línea 59...
82
      })
59
      })
83
    setModalLoading(false)
60
      .finally(() => setModalLoading(false))
84
  }
-
 
85
 
-
 
86
  useEffect(() => {
61
  }
Línea -... Línea 62...
-
 
62
 
-
 
63
  useEffect(() => {
-
 
64
    register('hobbiesAndInterests')
-
 
65
  }, [])
-
 
66
 
-
 
67
  useEffect(() => {
87
    register('hobbiesAndInterests', {
68
    show
88
      required: 'Por favor seleccione al menos un pasatiempo o interés',
69
      ? setValue('hobbiesAndInterests', userHobbiesAndInterests)
89
    })
70
      : setValue('hobbiesAndInterests', [''])
90
  }, [])
71
  }, [show])
91
 
72
 
92
  return (
73
  return (
93
    <Modal show={show} onHide={handleModalOpen}>
74
    <Modal show={show} onHide={closeModal}>
Línea 111... Línea 92...
111
        </Modal.Body>
92
        </Modal.Body>
112
        <Modal.Footer>
93
        <Modal.Footer>
113
          <Button size="sm" type="submit">
94
          <Button size="sm" type="submit">
114
            Enviar
95
            Enviar
115
          </Button>
96
          </Button>
116
          <Button size="sm" variant="danger" onClick={handleModalOpen}>
97
          <Button size="sm" variant="danger" onClick={closeModal}>
117
            Cancelar
98
            Cancelar
118
          </Button>
99
          </Button>
119
        </Modal.Footer>
100
        </Modal.Footer>
120
      </form>
101
      </form>
121
      {modalLoading && <Spinner />}
102
      {modalLoading && <Spinner />}