15761 |
stevensc |
1 |
/* eslint-disable camelcase */
|
|
|
2 |
/* eslint-disable react/prop-types */
|
|
|
3 |
import React, { useEffect, useState } from 'react'
|
|
|
4 |
import { axios, debounce } from '../../../utils'
|
|
|
5 |
import { Modal } from 'react-bootstrap'
|
|
|
6 |
import { useDispatch } from 'react-redux'
|
|
|
7 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
|
|
8 |
import SendIcon from '@mui/icons-material/Send'
|
|
|
9 |
|
|
|
10 |
// Components
|
|
|
11 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
|
|
12 |
|
|
|
13 |
const ContactsModal = ({ show, onClose }) => {
|
|
|
14 |
const [isShow, setIsShow] = useState(show)
|
|
|
15 |
const [contacts, setContacts] = useState([])
|
|
|
16 |
const [loading, setLoading] = useState(false)
|
|
|
17 |
const dispatch = useDispatch()
|
|
|
18 |
|
|
|
19 |
const closeModal = () => {
|
|
|
20 |
setIsShow(false)
|
|
|
21 |
setContacts([])
|
|
|
22 |
onClose()
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
const handleSearch = debounce((value) => getContacts(value), 500)
|
|
|
26 |
|
|
|
27 |
const getContacts = (searchValue = '') => {
|
|
|
28 |
setLoading(true)
|
|
|
29 |
axios.get(`/chat/users?search=${searchValue.toLowerCase()}`)
|
|
|
30 |
.then(({ data: response }) => {
|
|
|
31 |
if (!response.success) {
|
|
|
32 |
return dispatch(addNotification({ style: 'danger', msg: 'Ha ocurrido un error' }))
|
|
|
33 |
}
|
|
|
34 |
setContacts(response.data)
|
|
|
35 |
})
|
|
|
36 |
.finally(() => setLoading(false))
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
const startConversation = (create_url = '') => {
|
|
|
40 |
setLoading(true)
|
|
|
41 |
axios.post(create_url)
|
|
|
42 |
.then(({ data: response }) => {
|
|
|
43 |
if (response.success) closeModal()
|
|
|
44 |
})
|
|
|
45 |
.finally(() => setLoading(false))
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
useEffect(() => {
|
|
|
49 |
setIsShow(show)
|
|
|
50 |
}, [show])
|
|
|
51 |
|
|
|
52 |
return (
|
|
|
53 |
<Modal show={isShow} onHide={closeModal}>
|
|
|
54 |
<Modal.Header closeButton>
|
|
|
55 |
<h3 className="card-title font-weight-bold">Iniciar conversación</h3>
|
|
|
56 |
</Modal.Header>
|
|
|
57 |
<Modal.Body className='pb-3'>
|
|
|
58 |
<div className="form-group">
|
|
|
59 |
<label htmlFor="search-people">Escribe el nombre</label>
|
|
|
60 |
<input
|
|
|
61 |
type="text"
|
|
|
62 |
className="form-control"
|
|
|
63 |
placeholder="Escribe el nombre de la persona"
|
|
|
64 |
onChange={(e) => handleSearch(e.target.value)}
|
|
|
65 |
/>
|
|
|
66 |
</div>
|
|
|
67 |
{loading
|
|
|
68 |
? <Spinner />
|
|
|
69 |
: contacts.map(({ name, image, link_open_or_create }) => (
|
|
|
70 |
<div key={name} className="d-flex align-items-center justify-content-around" style={{ gap: '.5rem' }}>
|
|
|
71 |
<div className="d-flex align-items-center" style={{ gap: '.5rem' }}>
|
|
|
72 |
<img src={image} alt={`User ${name} image`} width={40} height={40} style={{ borderRadius: '50%' }}/>
|
|
|
73 |
<p>{name}</p>
|
|
|
74 |
</div>
|
|
|
75 |
|
|
|
76 |
<button className='btn btn-primary' onClick={() => startConversation(link_open_or_create)}>
|
|
|
77 |
<SendIcon />
|
|
|
78 |
</button>
|
|
|
79 |
</div>
|
|
|
80 |
))}
|
|
|
81 |
</Modal.Body>
|
|
|
82 |
</Modal>
|
|
|
83 |
)
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
export default ContactsModal
|