Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6351 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6351 Rev 6352
Línea 19... Línea 19...
19
}) => {
19
}) => {
20
  const { register, handleSubmit, setValue } = useForm()
20
  const { register, handleSubmit, setValue } = useForm()
21
  const [modalLoading, setModalLoading] = useState(false)
21
  const [modalLoading, setModalLoading] = useState(false)
22
  const dispatch = useDispatch()
22
  const dispatch = useDispatch()
Línea 23... Línea -...
23
 
-
 
24
  const onClose = () => {
-
 
25
    setValue('aptitudes', '')
-
 
26
    closeModal()
-
 
27
  }
-
 
28
 
23
 
29
  const handleTagsChange = (tags) => {
24
  const handleTagsChange = (tags) => {
30
    setValue('aptitudes', tags)
25
    setValue('aptitudes', tags)
Línea 31... Línea 26...
31
  }
26
  }
Línea 49... Línea 44...
49
        setAptitudes(aptitudes)
44
        setAptitudes(aptitudes)
50
        dispatch(
45
        dispatch(
51
          addNotification({ style: 'success', msg: 'Registro actualizado' })
46
          addNotification({ style: 'success', msg: 'Registro actualizado' })
52
        )
47
        )
Línea 53... Línea 48...
53
 
48
 
54
        onClose()
49
        closeModal()
55
      })
50
      })
56
      .catch((error) => {
51
      .catch((error) => {
57
        dispatch(addNotification({ style: 'danger', msg: error }))
52
        dispatch(addNotification({ style: 'danger', msg: error }))
58
        throw new Error(error)
53
        throw new Error(error)
Línea 67... Línea 62...
67
  useEffect(() => {
62
  useEffect(() => {
68
    show ? setValue('aptitudes', userAptitudes) : setValue('aptitudes', [''])
63
    show ? setValue('aptitudes', userAptitudes) : setValue('aptitudes', [''])
69
  }, [show])
64
  }, [show])
Línea 70... Línea 65...
70
 
65
 
71
  return (
66
  return (
72
    <Modal show={show} onHide={onClose}>
67
    <Modal show={show} onHide={closeModal}>
73
      <Modal.Header closeButton>
68
      <Modal.Header closeButton>
74
        <Modal.Title>Aptitudes</Modal.Title>
69
        <Modal.Title>Aptitudes</Modal.Title>
75
      </Modal.Header>
70
      </Modal.Header>
76
      <form onSubmit={handleSubmit(onSubmitHandler)}>
71
      <form onSubmit={handleSubmit(onSubmitHandler)}>
Línea 85... Línea 80...
85
        </Modal.Body>
80
        </Modal.Body>
86
        <Modal.Footer>
81
        <Modal.Footer>
87
          <Button size="sm" type="submit">
82
          <Button size="sm" type="submit">
88
            Enviar
83
            Enviar
89
          </Button>
84
          </Button>
90
          <Button size="sm" variant="danger" onClick={onClose}>
85
          <Button size="sm" variant="danger" onClick={closeModal}>
91
            Cancelar
86
            Cancelar
92
          </Button>
87
          </Button>
93
        </Modal.Footer>
88
        </Modal.Footer>
94
      </form>
89
      </form>
95
      {modalLoading && <Spinner />}
90
      {modalLoading && <Spinner />}