Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7324 | Rev 7326 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
7317 stevensc 1
import React, { useEffect, useRef, useState } from 'react'
2
import { axios } from '../../../utils'
3
import { useSelector } from 'react-redux'
4
import styled from 'styled-components'
5
 
6
import TextBox from './TextBox'
7
import ChatList from './ChatList'
8
import EmptySection from '../../UI/EmptySection'
9
import ConfirmModal from '../../modals/ConfirmModal'
10
import ConferenceModal from '../../modals/ConferenceModal'
7324 stevensc 11
import { Avatar, IconButton } from '@mui/material'
7322 stevensc 12
import { Add, ArrowBackIos } from '@mui/icons-material'
13
import SearchInput from '../../UI/SearchInput'
7317 stevensc 14
 
15
const StyledShowOptions = styled.div`
7325 stevensc 16
  align-items: flex-start;
17
  display: flex;
18
  flex-direction: column;
7317 stevensc 19
  height: 342px;
20
  overflow-y: auto;
7325 stevensc 21
  ul {
22
    width: 100%;
23
  }
7317 stevensc 24
  &.show {
25
    display: flex;
26
  }
27
  &.hide {
28
    display: none;
29
  }
7324 stevensc 30
  .option-tab {
31
    align-items: center;
32
    border-bottom: 1px solid #e2e2e2;
7317 stevensc 33
    cursor: pointer;
7324 stevensc 34
    display: flex;
35
    gap: 0.5rem;
36
    padding: 0.5rem;
7325 stevensc 37
    width: 100%;
7324 stevensc 38
    &:hover {
39
      background-color: #e2e2e2;
7317 stevensc 40
    }
41
  }
7322 stevensc 42
  .contact-tab {
43
    align-items: center;
44
    border-bottom: 1px solid #e2e2e2;
7317 stevensc 45
    display: flex;
7322 stevensc 46
    justify-content: space-between;
47
    padding: 0.2rem 0.5rem;
48
    .info {
7317 stevensc 49
      display: flex;
50
      align-items: center;
7322 stevensc 51
      gap: 0.5rem;
7317 stevensc 52
    }
53
  }
54
`
55
 
7325 stevensc 56
const StyledComeBackButton = styled(IconButton)`
57
  border-radius: 0px !important;
58
  font-size: 1rem !important;
59
  width: -webkit-fill-available;
60
  justify-content: flex-start !important;
7324 stevensc 61
`
62
 
7317 stevensc 63
const OPTIONS = {
64
  GROUP: 'group',
65
  CONFERENCE: 'conference',
66
  ADD_CONTACTS: 'addContacts',
67
  LIST_CONTACTS: 'listContacts',
68
  INITIAL: null,
69
}
70
 
71
const PersonalChat = ({
72
  entity,
73
  onClose,
74
  onMinimize,
75
  onRead,
76
  not_seen_messages,
77
  minimized,
78
}) => {
79
  const [optionTab, setOptionTab] = useState(OPTIONS.INITIAL)
80
  const [availableContactsToAdd, setAvailableContactsToAdd] = useState([])
81
  const [groupContactsList, setGroupContactsList] = useState([])
82
  const [confirmModalShow, setConfirmModalShow] = useState(false)
83
  const [showConferenceModal, setShowConferenceModal] = useState(false)
84
  const [search, setSearch] = useState('')
85
  const [messages, setMessages] = useState([])
86
  const [oldMessages, setOldMessages] = useState([])
87
  const [currentPage, setCurrentPage] = useState(1)
88
  const [lastPage, setLastPage] = useState(1)
89
  const [loading, setLoading] = useState(false)
90
  const labels = useSelector(({ intl }) => intl.labels)
91
 
92
  const filtredGroupList = groupContactsList.filter((conversation) =>
93
    conversation.name.toLowerCase().includes(search.toLowerCase())
94
  )
95
 
96
  // refs
97
  const conversationListEl = useRef(null)
98
  const loader = useRef(null)
99
  const modalActionUrl = useRef('')
100
 
101
  const handleActive = () => {
102
    onRead(entity)
103
    onMinimize(entity)
104
  }
105
 
106
  const handleGetMessages = async () => {
107
    setLoading(true)
108
    const response = await axios.get(entity?.url_get_all_messages)
109
    const resData = response.data
110
    if (!resData.success) {
111
      return 'ha ocurrido un error'
112
    }
113
    const updatedMessages = [...resData.data.items].reverse()
114
    const newMessages = updatedMessages.reduce((acum, updatedMessage) => {
115
      if (
116
        messages.findIndex((message) => message.id === updatedMessage.id) === -1
117
      ) {
118
        acum = [...acum, updatedMessage]
119
      }
120
      return acum
121
    }, [])
122
 
123
    if (newMessages.length > 0) {
124
      setMessages([...messages, ...newMessages])
125
      setLoading(false)
126
      setLastPage(resData.data.pages)
127
      scrollToBottom()
128
    } else {
129
      setLoading(false)
130
    }
131
  }
132
 
133
  const handleLoadMore = async () => {
134
    await axios
135
      .get(`${entity?.url_get_all_messages}?page=${currentPage}`)
136
      .then((response) => {
137
        const resData = response.data
138
        if (resData.success) {
139
          if (resData.data.page > 1) {
140
            const updatedOldMessages = [...resData.data.items].reverse()
141
            setOldMessages([...updatedOldMessages, ...oldMessages])
142
            /* scrollDownBy(100); */
143
          }
144
        }
145
      })
146
  }
147
 
148
  const handleCloseChat = () => onClose(entity)
149
 
150
  const sendMessage = async (message) => {
151
    const formData = new FormData()
152
    formData.append('message', emojione.toShort(message))
153
    await axios.post(entity?.url_send, formData).then((response) => {
154
      const resData = response.data
155
      if (resData.success) {
156
        let newMessage = resData.data
157
 
158
        entity?.online
159
          ? (newMessage = { ...newMessage, not_received: false })
160
          : (newMessage = { ...newMessage, not_received: true })
161
 
162
        setMessages([...messages, newMessage])
163
      }
164
    })
165
    // await handleGetMessages()
166
    // setResponseMessage(null)
167
  }
168
 
169
  const showOptions = (tab = OPTIONS.INITIAL) => {
170
    onMinimize(entity, false)
171
    setOptionTab(tab)
172
  }
173
 
174
  const handleAddPersonToGroup = async (id) => {
175
    const formData = new FormData()
176
    formData.append('uid', id)
177
    await axios
178
      .post(entity?.url_add_user_to_group, formData)
179
      .then((response) => {
180
        const resData = response.data
181
        if (resData.success) {
182
          loadPersonsAvailable()
183
        }
184
      })
185
  }
186
 
187
  const handleConfirmModalAction = async () => {
188
    try {
189
      const { data } = await axios.post(modalActionUrl.current)
190
      if (!data.success) console.log('Error in confirm modal action')
191
      handleConfirmModalShow()
192
      onClose(entity)
193
      return
194
    } catch (error) {
195
      console.log(error)
196
    }
197
  }
198
 
199
  const handleObserver = (entities) => {
200
    const target = entities[0]
201
    if (target.isIntersecting) {
202
      setCurrentPage((prevState) => prevState + 1)
203
    }
204
  }
205
 
206
  const scrollToBottom = () => {
207
    if (conversationListEl.current) {
208
      conversationListEl.current.scrollTop =
209
        conversationListEl.current.scrollHeight * 9
210
    }
211
  }
212
 
213
  const handleConfirmModalShow = () => setConfirmModalShow(!confirmModalShow)
214
 
215
  const handleConfirmModalAccept = () => handleConfirmModalAction()
216
 
217
  /* const handleResponseMessage = (element) => {
218
    element.mtype === 'text'
219
      ? setResponseMessage(element)
220
      : setResponseMessage({ ...element, m: 'Archivo adjunto' })
221
 
222
    textAreaEl.current && textAreaEl.current.focus()
223
  } */
224
 
225
  const displayConferenceModal = () =>
226
    setShowConferenceModal(!showConferenceModal)
227
 
228
  const loadPersonsAvailable = async () => {
229
    await axios
230
      .get(entity?.url_get_contacts_availables_for_group)
231
      .then((response) => {
232
        const resData = response.data
233
        if (resData.success) {
234
          setAvailableContactsToAdd(resData.data)
235
        }
236
      })
237
  }
238
 
239
  const loadGroupContacts = async () => {
240
    await axios.get(entity?.url_get_contact_group_list).then((response) => {
241
      const resData = response.data
242
      if (resData.success) {
243
        setGroupContactsList(resData.data)
244
      }
245
    })
246
  }
247
 
248
  const handleDeletePersonFromGroup = async (urlDeletePersonFromGroup) => {
249
    await axios.post(urlDeletePersonFromGroup).then((response) => {
250
      const resData = response.data
251
      if (resData.success) {
252
        loadGroupContacts()
253
      }
254
    })
255
  }
256
 
257
  const tabsOptions = {
258
    group: (
259
      <ul>
260
        {entity?.url_get_contact_group_list && (
7324 stevensc 261
          <li>
262
            <button
263
              className="option-tab"
264
              onClick={() => showOptions(OPTIONS.LIST_CONTACTS)}
265
            >
7317 stevensc 266
              <i className="fa fa-group" />
267
              Integrantes
7324 stevensc 268
            </button>
7317 stevensc 269
          </li>
270
        )}
271
        {entity?.url_add_user_to_group && (
7324 stevensc 272
          <li>
273
            <button
274
              className="option-tab"
275
              onClick={() => showOptions(OPTIONS.ADD_CONTACTS)}
276
            >
7317 stevensc 277
              <i className="fa fa-user-plus"></i>
7324 stevensc 278
              {labels.add_contacts}
279
            </button>
7317 stevensc 280
          </li>
281
        )}
282
        {entity?.url_zoom && (
7324 stevensc 283
          <li>
284
            <button className="option-tab" onClick={displayConferenceModal}>
7317 stevensc 285
              <i className="fa fa-user-plus" />
7324 stevensc 286
              {labels.create_conference}
287
            </button>
7317 stevensc 288
          </li>
289
        )}
290
        {entity?.url_delete && (
7324 stevensc 291
          <li>
292
            <button
293
              className="option-tab"
294
              onClick={() => {
295
                handleConfirmModalShow()
296
                modalActionUrl.current = entity?.url_delete
297
              }}
298
            >
7317 stevensc 299
              <i className="fa fa-trash"></i>
7324 stevensc 300
              Eliminar grupo
301
            </button>
7317 stevensc 302
          </li>
303
        )}
304
        {!!entity?.url_leave && (
7324 stevensc 305
          <li>
306
            <button
307
              className="option-tab"
308
              onClick={() => {
309
                handleConfirmModalShow()
310
                modalActionUrl.current = entity?.url_leave
311
              }}
312
            >
7317 stevensc 313
              <i className="fa fa-user-times"></i>
7324 stevensc 314
              Dejar grupo
315
            </button>
7317 stevensc 316
          </li>
317
        )}
318
      </ul>
319
    ),
320
    addContacts: (
321
      <>
7322 stevensc 322
        {availableContactsToAdd.length ? (
7323 stevensc 323
          <ul>
324
            {availableContactsToAdd.map(({ image, name, id }) => (
325
              <li key={id}>
326
                <div className="contact-tab">
327
                  <div className="info">
328
                    <Avatar
329
                      src={image}
330
                      alt={`${name} profile image`}
331
                      sx={{
332
                        height: '36px',
333
                        width: '36px',
334
                      }}
335
                    />
336
                    <span>{name}</span>
7322 stevensc 337
                  </div>
7323 stevensc 338
                  <IconButton onClick={() => handleAddPersonToGroup(id)}>
339
                    <Add />
340
                  </IconButton>
341
                </div>
342
              </li>
343
            ))}
344
          </ul>
7322 stevensc 345
        ) : (
7320 stevensc 346
          <EmptySection message={labels.not_contacts} />
7317 stevensc 347
        )}
348
      </>
349
    ),
350
    listContacts: (
351
      <>
7322 stevensc 352
        <SearchInput onChange={(e) => setSearch(e.target.value)} />
7317 stevensc 353
        {filtredGroupList.length ? (
7322 stevensc 354
          <ul>
355
            {filtredGroupList.map(
356
              ({ image, name, url_remove_from_group, id }) => {
357
                return (
358
                  <li key={id}>
359
                    <div className="contact-tab">
360
                      <div className="info">
361
                        <Avatar
362
                          src={image}
363
                          alt={`${name} profile image`}
364
                          sx={{
365
                            height: '36px',
366
                            width: '36px',
367
                          }}
368
                        />
369
                        <span>{name}</span>
370
                      </div>
371
                      {url_remove_from_group && (
372
                        <IconButton
373
                          onClick={() =>
374
                            handleDeletePersonFromGroup(url_remove_from_group)
375
                          }
376
                        >
377
                          <i className="fa fa-user-times" />
378
                        </IconButton>
379
                      )}
380
                    </div>
381
                  </li>
382
                )
383
              }
384
            )}
385
          </ul>
7317 stevensc 386
        ) : (
7322 stevensc 387
          <EmptySection message={labels.not_contacts} />
7317 stevensc 388
        )}
389
      </>
390
    ),
391
  }
392
 
393
  // getMessageOnMaximize and subscribe to infinite Loader
394
  useEffect(async () => {
395
    const options = {
396
      root: null,
397
      rootMargin: '20px',
398
      treshold: 1.0,
399
    }
400
    const observer = new IntersectionObserver(handleObserver, options)
401
    if (!minimized) {
402
      await handleGetMessages()
403
      // loader observer
404
      if (loader.current) {
405
        observer.observe(loader.current)
406
      }
407
    }
408
    return () => {
409
      if (loader.current) {
410
        observer.unobserve(loader.current)
411
      }
412
    }
413
  }, [minimized])
414
 
415
  // LoadMore on change page
416
  useEffect(() => {
417
    let loadMore = () => handleLoadMore()
418
    loadMore()
419
    return () => {
420
      loadMore = null
421
    }
422
  }, [currentPage])
423
 
424
  // getMessagesInterval
425
  useEffect(() => {
426
    if (window.location.pathname === '/group/my-groups') {
427
      const items = document.getElementsByClassName('sc-jSgupP')
428
      if (items && items.length > 0) {
429
        items[0].style.display = 'none'
430
      }
431
    }
432
  }, [minimized])
433
 
434
  useEffect(() => {
435
    let timer
436
    if (!minimized && !loading) {
437
      timer = setTimeout(() => handleGetMessages(), 1000)
438
    }
439
    return () => {
440
      clearTimeout(timer)
441
    }
442
  }, [minimized, loading])
443
 
444
  // useEffect for tabs changing
445
  useEffect(() => {
446
    if (optionTab === 'addContacts') loadPersonsAvailable()
447
    if (optionTab === 'listContacts') loadGroupContacts()
448
  }, [optionTab])
449
 
450
  return (
451
    <>
452
      <div className="personal-chat">
453
        <div className={`chat-header ${not_seen_messages ? 'notify' : ''}`}>
7324 stevensc 454
          <Avatar
455
            src={entity?.image || '/images/users-group.png'}
456
            sx={{ width: '36px', height: '36px' }}
457
          />
7317 stevensc 458
          <div className="info-content">
459
            <a href={entity?.profile} target="_blank" rel="noreferrer">
7323 stevensc 460
              {entity?.name}
7317 stevensc 461
            </a>
462
            {entity?.type === 'user' && (
463
              <small className={entity?.online ? 'online' : 'offline'}>
464
                {entity?.online ? 'En línea' : 'Desconectado'}
465
              </small>
466
            )}
467
          </div>
468
          <div className="options ml-auto">
469
            <i
470
              className="cursor-pointer fa fa-gear"
471
              onClick={() =>
472
                showOptions(
473
                  entity?.type === 'user' ? OPTIONS.CONFERENCE : OPTIONS.GROUP
474
                )
475
              }
476
            />
477
            <i
478
              className={'cursor-pointer fa fa-minus-circle'}
479
              onClick={handleActive}
480
            />
481
            <i
482
              className="cursor-pointer fa fa-times-circle"
483
              onClick={handleCloseChat}
484
            />
485
          </div>
486
        </div>
487
 
488
        <div
489
          className="panel-body"
490
          style={{ display: !minimized ? 'block' : 'none' }}
491
        >
492
          {optionTab ? (
493
            <StyledShowOptions>
7325 stevensc 494
              <StyledComeBackButton
495
                onClick={() => showOptions(OPTIONS.INITIAL)}
496
              >
7323 stevensc 497
                <ArrowBackIos />
7324 stevensc 498
                {labels.back}
7325 stevensc 499
              </StyledComeBackButton>
500
              {tabsOptions[optionTab]}
7317 stevensc 501
            </StyledShowOptions>
502
          ) : (
503
            <>
504
              <ChatList
505
                messages={[...oldMessages, ...messages]}
506
                currentPage={currentPage}
507
                lastPage={lastPage}
508
                conversationList={conversationListEl}
509
                loader={loader}
510
              />
511
              <TextBox
512
                uploadUrl={entity?.url_upload}
513
                isNotSeen={not_seen_messages}
514
                markRead={() => onRead(entity)}
515
                onSend={sendMessage}
516
              />
517
            </>
518
          )}
519
        </div>
520
      </div>
521
      <ConfirmModal
522
        show={confirmModalShow}
523
        onClose={handleConfirmModalShow}
524
        onAccept={handleConfirmModalAccept}
525
      />
526
      <ConferenceModal
527
        show={showConferenceModal}
528
        zoomUrl={entity?.url_zoom}
529
        onClose={() => {
530
          showOptions()
531
          displayConferenceModal()
532
        }}
533
      />
534
    </>
535
  )
536
}
537
 
538
export default React.memo(PersonalChat)