Proyectos de Subversion LeadersLinked - Backend

Rev

Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16666 stevensc 1
import React, { useState } from 'react'
2
import { axios } from '../../utils'
3
 
4
const CommentForm = ({ image, profileUrl, sendUrl, onSubmit }) => {
5
  const [comment, setComment] = useState('')
6
 
7
  const handleSubmit = (e) => {
8
    e.preventDefault()
9
 
10
    const formData = new FormData()
11
    formData.append('comment', comment)
12
 
13
    axios
14
      .post(sendUrl, formData)
15
      .then(({ data }) => {
16
        if (!data.success) {
17
          return console.log('Error de envio')
18
        }
19
 
20
        onSubmit(data)
21
        setComment('')
22
      })
23
      .catch((err) => console.log(err))
24
  }
25
 
26
  const handleInputChange = ({ target }) => {
27
    setComment(target.value)
28
  }
29
 
30
  return (
31
    <form className="d-flex w-100" onSubmit={handleSubmit}>
32
      <a href={profileUrl}>
33
        <img
34
          className="avatar-img rounded-circle"
35
          src={image}
36
          alt="user avatar image"
37
        />
38
      </a>
39
      <input
40
        type="text"
41
        className="form-control"
42
        placeholder="Escribe un comentario"
43
        onChange={handleInputChange}
44
        value={comment}
45
      />
46
      <button type="submit" className="btn btn-primary">
47
        Comentar
48
      </button>
49
    </form>
50
  )
51
}
52
export default CommentForm