Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4119 stevensc 1
/* eslint-disable react/prop-types */
5037 stevensc 2
import React from "react"
3
import { useState, useEffect } from "react"
4
import { axios } from "../../utils"
2739 stevensc 5
import { FiMaximize2 } from 'react-icons/fi'
4860 stevensc 6
import AddIcon from '@mui/icons-material/Add'
1 www 7
 
5033 stevensc 8
// Components
5037 stevensc 9
import NotificationAlert from "../../shared/notification/NotificationAlert"
10
import PersonalChat from "./personal-chat/PersonalChat"
11
import ContactsModal from "./components/ContactsModal"
12
import ContactsList from "./components/ContactsList"
13
import contactsFilters from "./components/contactsFilters"
5033 stevensc 14
 
5037 stevensc 15
const notifyAudio = new Audio("/audio/chat.mp3")
1 www 16
 
17
const Chat = (props) => {
5033 stevensc 18
  const { defaultNetwork } = props
19
 
1 www 20
  // states
5037 stevensc 21
  const [contacts, setContacts] = useState([])
22
  const [activeChats, setActiveChats] = useState([])
5033 stevensc 23
 
5037 stevensc 24
  const [isChatOpen, setIsChatOpen] = useState(false)
25
  const [isMuted, setIsMuted] = useState(false)
26
  const [showModal, setShowModal] = useState(false)
27
  const [loading, setLoading] = useState(false)
5033 stevensc 28
 
4868 stevensc 29
  const [pendingConversation, setPendingConversation] = useState('')
5027 stevensc 30
 
976 stevensc 31
  const handleEntities = entities => {
687 steven 32
    entities.map((entity) => {
3111 stevensc 33
      if (entity.not_received_messages) handleNewMessage(entity)
34
      if (entity.not_seen_messages) handleNotSeenMessage(entity)
5035 stevensc 35
      if (entity.is_open) handleOpenConversation(entity, false)
36
      if (entity.type === 'user') handleUpdateOnline(entity)
37
    })
38
    setContacts(entities)
687 steven 39
  }
2790 stevensc 40
 
687 steven 41
  const heartBeat = async () => {
689 steven 42
    try {
3119 stevensc 43
      const { data } = await axios.get("/chat/heart-beat")
5037 stevensc 44
      if (data.success) handleEntities(data.data)
45
      return data.data
689 steven 46
    } catch (error) {
976 stevensc 47
      console.log('>>: chat error > ', error)
689 steven 48
    }
5037 stevensc 49
  }
1 www 50
 
51
  const handleUpdateOnline = (entity) => {
52
    const existingChatId = activeChats.findIndex(
53
      (activeChat) => activeChat.id === entity.id
5037 stevensc 54
    )
1 www 55
    if (existingChatId >= 0) {
56
      if (activeChats[existingChatId].online !== entity.online) {
5037 stevensc 57
        const newActiveChats = [...activeChats]
58
        newActiveChats[existingChatId].online = entity.online
59
        setActiveChats(newActiveChats)
1 www 60
      }
61
    }
5037 stevensc 62
  }
1 www 63
 
64
  const handleNewMessage = async (unseeEntity) => {
3596 stevensc 65
    await axios.post(unseeEntity.url_mark_received)
1 www 66
    if (!activeChats.some((activeChat) => activeChat.id === unseeEntity.id)) {
5037 stevensc 67
      setActiveChats([...activeChats, { ...unseeEntity, minimized: false }])
68
      playNotifyAudio()
1 www 69
    } else {
70
      const existingChatId = activeChats.findIndex(
71
        (activeChat) => activeChat.id === unseeEntity.id
5037 stevensc 72
      )
1 www 73
      if (!activeChats[existingChatId].unsee_messages) {
5037 stevensc 74
        const newActiveChats = [...activeChats]
75
        newActiveChats[existingChatId].unsee_messages = true
76
        setActiveChats(newActiveChats)
77
        playNotifyAudio(newActiveChats[existingChatId].minimized)
1 www 78
      }
79
    }
5037 stevensc 80
  }
1 www 81
 
3122 stevensc 82
  const handleCloseConversation = async (entity) => {
3127 stevensc 83
    const { data } = await axios.post(entity.url_close)
84
    if (!data.success) console.log('Error in entity close')
85
    setActiveChats(activeChats.filter(prevActiveChats => prevActiveChats.id !== entity.id))
3122 stevensc 86
  }
87
 
88
  const handleOpenConversation = async (entity, minimized = false) => {
3129 stevensc 89
    if (activeChats.length < 3 && !activeChats.some((el) => el.id === entity.id)) {
5037 stevensc 90
      setActiveChats([...activeChats, { ...entity, minimized: minimized }])
3127 stevensc 91
    }
3129 stevensc 92
    if (activeChats.length >= 3 && !activeChats.some((el) => el.id === entity.id)) {
93
      await handleCloseConversation(activeChats[0])
5037 stevensc 94
      setActiveChats(prevActiveChats => [...prevActiveChats, { ...entity, minimized: minimized }])
986 stevensc 95
    }
5037 stevensc 96
  }
1 www 97
 
3122 stevensc 98
  const handleReadConversation = async (entity) => {
99
    try {
100
      const { data } = await axios.post(entity.url_mark_seen)
101
      if (!data.success) console.log('Ha ocurrido un error')
102
      setActiveChats(prevActiveChats => [...prevActiveChats].map(chat => {
103
        if (entity.id === chat.id) return { ...chat, not_seen_messages: false }
5037 stevensc 104
        return chat
3122 stevensc 105
      }))
106
    } catch (error) {
107
      console.log(`Error: ${error}`)
1 www 108
    }
5037 stevensc 109
  }
1 www 110
 
3123 stevensc 111
  const handleMinimizeConversation = (entity, minimized = null) => {
112
    return setActiveChats(prevActiveChats => [...prevActiveChats].map(chat => {
3130 stevensc 113
      if (entity.id === chat.id) return { ...chat, minimized: minimized ?? !chat.minimized }
3123 stevensc 114
      return chat
115
    }))
116
  }
1 www 117
 
3119 stevensc 118
  const handleNotSeenMessage = (entity) => {
3111 stevensc 119
    const index = activeChats.findIndex(chat => chat.id === entity.id)
120
 
121
    if (index !== -1) {
122
      setActiveChats(prev => [...prev].map(chat => {
123
        if (chat.id === entity.id) {
124
          return {
125
            ...chat,
126
            not_seen_messages: entity.not_seen_messages
127
          }
128
        }
5037 stevensc 129
        return chat
3111 stevensc 130
      }))
131
    }
3119 stevensc 132
 
133
  }
134
 
1 www 135
  const playNotifyAudio = (minimized = true) => {
136
    if (!isMuted && minimized) {
5037 stevensc 137
      notifyAudio.play()
1 www 138
    }
5037 stevensc 139
  }
1 www 140
 
141
  const handleMute = () => {
5037 stevensc 142
    setIsMuted(!isMuted)
1 www 143
    if (isMuted) {
5037 stevensc 144
      notifyAudio.play()
1 www 145
    }
5037 stevensc 146
  }
1 www 147
 
148
  useEffect(() => {
2548 stevensc 149
    if (!loading) {
2973 stevensc 150
      const fetchData = async () => {
2966 stevensc 151
        setLoading(true)
5037 stevensc 152
        const entities = await heartBeat() || []
2966 stevensc 153
        setLoading(false)
2973 stevensc 154
 
155
        return entities
2966 stevensc 156
      }
157
 
2989 stevensc 158
      setTimeout(() => {
159
        fetchData()
160
      }, "2000")
691 steven 161
    }
5037 stevensc 162
  }, [loading])
978 stevensc 163
 
1 www 164
  useEffect(() => {
4868 stevensc 165
    if (pendingConversation) {
166
      const pendingChat = contacts.find(contact => contact.url_send === pendingConversation)
4872 stevensc 167
 
168
      if (pendingChat) {
169
        handleOpenConversation(pendingChat)
170
        setPendingConversation('')
171
      }
4880 stevensc 172
 
4868 stevensc 173
    }
174
  }, [pendingConversation, contacts])
175
 
176
  useEffect(() => {
5037 stevensc 177
    emojione.imageType = "png"
178
    emojione.sprites = false
179
    emojione.ascii = true
180
    emojione.imagePathPNG = props.emojiOnePath
181
  }, [])
1 www 182
 
5039 stevensc 183
  const FilterContactList = contactsFilters(ContactsList, contacts, { selectConversation: handleOpenConversation })
5036 stevensc 184
 
5033 stevensc 185
  if (window.innerWidth < 1000 || window.location.pathname === '/chat') return null
5037 stevensc 186
 
5033 stevensc 187
  return (
5027 stevensc 188
    <>
5033 stevensc 189
      <div className="chat-helper">
5028 stevensc 190
        <div className="subpanel_title" onClick={(e) => (e.currentTarget === e.target) && setIsChatOpen(!isChatOpen)}>
191
          <a href="/chat" className="text-chat-title">
192
            Chat
193
            <FiMaximize2 className="ml-3" />
194
          </a>
195
          <div className="subpanel_title-icons">
196
            <i
197
              className={`icon ${isMuted ? "icon-volume-off" : "icon-volume-2"} text-20`}
198
              onClick={handleMute}
199
            />
200
            <i
201
              className={`fa ${isChatOpen ? "fa-angle-down" : "fa-angle-up"} text-20`}
202
              onClick={() => setIsChatOpen(!isChatOpen)}
203
            />
204
          </div>
205
        </div>
5035 stevensc 206
        {defaultNetwork !== 'y' &&
207
          <div
208
            className="d-flex align-items-center cursor-pointer"
209
            style={{ gap: '.5rem', background: '#fff' }}
210
            onClick={() => setShowModal(true)}
211
          >
212
            <AddIcon />
213
            <span>Iniciar conversación</span>
5028 stevensc 214
          </div>
5035 stevensc 215
        }
216
        <FilterContactList />
1 www 217
      </div>
3133 stevensc 218
      <div className="active_chats-list">
1 www 219
        {activeChats.map((entity, index) => (
220
          <PersonalChat
3131 stevensc 221
            index={index}
1 www 222
            key={entity.id}
223
            entity={entity}
3106 stevensc 224
            not_seen_messages={entity.not_seen_messages}
3131 stevensc 225
            minimized={entity.minimized}
3122 stevensc 226
            onClose={handleCloseConversation}
3123 stevensc 227
            onMinimize={handleMinimizeConversation}
3122 stevensc 228
            onRead={handleReadConversation}
4119 stevensc 229
            timezones={props.timezones}
1 www 230
          />
231
        ))}
232
      </div>
5033 stevensc 233
      <ContactsModal
4867 stevensc 234
        show={showModal}
4869 stevensc 235
        setConversation={(url) => setPendingConversation(url)}
4866 stevensc 236
      />
1335 stevensc 237
      <NotificationAlert />
5027 stevensc 238
    </>
239
  )
4858 stevensc 240
}
1 www 241
 
5037 stevensc 242
export default Chat