Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
976 stevensc 1
import React, { useCallback } from "react";
1 www 2
import { useState, useEffect } from "react";
976 stevensc 3
import { axios } from "../../utils";
1 www 4
import Contacts from "./contacts/Contacts";
1335 stevensc 5
import NotificationAlert from "../../shared/notification/NotificationAlert";
1 www 6
import Groups from "./groups/Groups";
7
import PersonalChat from "./personal-chat/PersonalChat";
2739 stevensc 8
import { FiMaximize2 } from 'react-icons/fi'
1 www 9
 
10
const notifyAudio = new Audio("/audio/chat.mp3");
11
 
12
const Chat = (props) => {
13
  // states
681 steven 14
  const [fullChats, setFullChats] = useState([]);
1 www 15
  const [contacts, setContacts] = useState([]);
16
  const [groups, setGroups] = useState([]);
17
  const [activeChats, setActiveChats] = useState([]);
18
  const [isChatOpen, setIsChatOpen] = useState(false);
19
  const [isMuted, setIsMuted] = useState(false);
20
  const [activeTab, setActiveTab] = useState("user");
2973 stevensc 21
  const defaultChatInterval = 1500;
22
  const [chatInterval, setChatInterval] = useState(defaultChatInterval);
976 stevensc 23
  const [search, setSearch] = useState('');
1775 stevensc 24
  const [loading, setLoading] = useState(false);
976 stevensc 25
 
994 stevensc 26
  const filtredContacts = contacts.filter(({ name }) => name.toLowerCase().includes(search.toLowerCase()))
27
  const filtredGroups = groups.filter(({ name }) => name.toLowerCase().includes(search.toLowerCase()))
976 stevensc 28
 
2973 stevensc 29
  // Time intervals
30
  let heartBeatInterval;
31
 
976 stevensc 32
  const handleEntities = entities => {
2791 stevensc 33
    setFullChats([...entities]);
687 steven 34
    let newUserContacts = [];
35
    let newGroups = [];
36
    entities.map((entity) => {
37
      if (entity.not_received_messages) {
38
        handleNewMessage(entity);
39
      }
40
      switch (entity.type) {
41
        case "user":
42
          newUserContacts = [...newUserContacts, entity];
43
          handleUpdateOnline(entity);
44
          break;
45
        case "group":
46
          newGroups = [...newGroups, entity];
47
          break;
48
        default:
49
          break;
50
      }
51
    });
52
    setContacts(newUserContacts);
53
    setGroups(newGroups);
54
  }
2790 stevensc 55
 
56
  useEffect(() => {
57
    axios.get("/chat/heart-beat")
58
      .then(({ data }) => {
59
        if (data.success) {
60
          const entities = data.data
61
 
62
          entities.map(entity => {
2792 stevensc 63
            if (entity.is_open !== 0) {
64
              handleOpenConversation(entity, false);
2790 stevensc 65
            }
66
          })
67
        }
68
      })
69
  }, [])
70
 
687 steven 71
  const heartBeat = async () => {
689 steven 72
    try {
2973 stevensc 73
      const res = await axios.get("/chat/heart-beat")
74
      let entities = [];
75
      const resData = res.data;
76
      if (resData.success) {
77
        entities = resData.data;
2965 stevensc 78
        handleEntities(entities)
1 www 79
      }
689 steven 80
      return entities;
81
    } catch (error) {
976 stevensc 82
      console.log('>>: chat error > ', error)
689 steven 83
    }
687 steven 84
  };
1 www 85
 
976 stevensc 86
 
1 www 87
  const handleUpdateOnline = (entity) => {
88
    const existingChatId = activeChats.findIndex(
89
      (activeChat) => activeChat.id === entity.id
90
    );
91
    if (existingChatId >= 0) {
92
      if (activeChats[existingChatId].online !== entity.online) {
93
        const newActiveChats = [...activeChats];
94
        newActiveChats[existingChatId].online = entity.online;
95
        setActiveChats(newActiveChats);
96
      }
97
    }
98
  };
99
 
100
  const handleNewMessage = async (unseeEntity) => {
101
    await axios.post(unseeEntity.url_mark_received).then((response) => {
976 stevensc 102
      ('')
1 www 103
    });
104
    if (!activeChats.some((activeChat) => activeChat.id === unseeEntity.id)) {
105
      setActiveChats([...activeChats, { ...unseeEntity, minimized: false }]);
106
      playNotifyAudio();
107
    } else {
108
      const existingChatId = activeChats.findIndex(
109
        (activeChat) => activeChat.id === unseeEntity.id
110
      );
111
      if (!activeChats[existingChatId].unsee_messages) {
112
        const newActiveChats = [...activeChats];
113
        newActiveChats[existingChatId].unsee_messages = true;
114
        setActiveChats(newActiveChats);
115
        playNotifyAudio(newActiveChats[existingChatId].minimized);
116
      }
117
    }
118
  };
119
 
120
  const handleOpenConversation = (entity, minimized = false) => {
978 stevensc 121
    if (activeChats.length < 3 && !activeChats.some((el) => el.id === entity.id)) {
1 www 122
      setActiveChats([...activeChats, { ...entity, minimized: minimized }]);
123
    }
986 stevensc 124
    if (activeChats.length >= 3 && !activeChats.some((el) => el.id === entity.id)) {
125
      activeChats.map((el, index) => {
126
        if (index === 0) {
127
          axios.post(el.url_close)
128
        }
129
      })
130
      const newActiveChats = activeChats.filter((el, index) => index !== 0)
131
      setActiveChats([...newActiveChats, { ...entity, minimized: minimized }]);
132
    }
1 www 133
  };
134
 
2166 steven 135
  const handleReadChat = async (index) => {
2169 steven 136
    const newActiveChats = [...activeChats];
2166 steven 137
    if (activeChats[index].not_seen_messages) {
138
      const seen = await axios.post(activeChats[index].url_mark_seen);
2548 stevensc 139
      if (seen.data.success) {
2167 steven 140
        newActiveChats[index].not_seen_messages = false;
141
      }
1 www 142
    }
2169 steven 143
    if (activeChats[index].not_received_messages) {
144
      const seen = await axios.post(activeChats[index].url_mark_received);
2548 stevensc 145
      if (seen.data.success) {
2169 steven 146
        newActiveChats[index].not_received_messages = false;
147
      }
148
    }
2548 stevensc 149
    if (activeChats !== newActiveChats)
2169 steven 150
      setActiveChats(newActiveChats);
1 www 151
  };
152
 
153
  const handleMinimizeChat = (chatIndex, minimize) => {
154
    const newActiveChats = [...activeChats];
155
    switch (minimize) {
156
      case false:
157
        newActiveChats[chatIndex].minimized = false;
158
        break;
159
      default:
160
        newActiveChats[chatIndex].minimized =
161
          !newActiveChats[chatIndex].minimized;
162
        break;
163
    }
164
    setActiveChats(newActiveChats);
165
  };
166
 
167
  const handleCloseChat = (entityId, url_close) => {
168
    let newActiveChats = [];
1775 stevensc 169
    setLoading(true)
1 www 170
    axios.post(url_close).then((response) => {
171
      const resData = response.data;
172
    });
173
    newActiveChats = activeChats.filter(
174
      (activeChat) => activeChat.id !== entityId
2548 stevensc 175
    );
176
    setActiveChats(newActiveChats);
177
    setLoading(false)
1 www 178
  };
179
 
180
  const playNotifyAudio = (minimized = true) => {
181
    if (!isMuted && minimized) {
182
      notifyAudio.play();
183
    }
184
  };
185
 
186
  const handleMute = () => {
187
    setIsMuted(!isMuted);
188
    if (isMuted) {
189
      notifyAudio.play();
190
    }
191
  };
192
 
193
  const handleChangeTab = (tab) => {
194
    setActiveTab(tab);
195
  };
196
 
197
  useEffect(() => {
2548 stevensc 198
    if (!loading) {
2973 stevensc 199
      const fetchData = async () => {
2966 stevensc 200
        setLoading(true)
2973 stevensc 201
        const entities = await heartBeat() || [];
2966 stevensc 202
        setLoading(false)
2973 stevensc 203
 
204
        return entities
2966 stevensc 205
      }
206
 
2989 stevensc 207
      setTimeout(() => {
208
        fetchData()
209
      }, "2000")
691 steven 210
    }
2965 stevensc 211
  }, [loading]);
978 stevensc 212
 
1 www 213
  useEffect(() => {
214
    emojione.imageType = "png";
215
    emojione.sprites = false;
216
    emojione.ascii = true;
217
    emojione.imagePathPNG = props.emojiOnePath;
218
  }, []);
219
 
2069 steven 220
  return (window.innerWidth > 1000 && window.location.pathname !== '/chat') ? (
1 www 221
    <React.Fragment>
222
      <div id="drupalchat-wrapper">
223
        <div id="drupalchat">
224
          <div className="item-list" id="chatbox_chatlist">
225
            <ul id="mainpanel">
226
              <li id="chatpanel" className="first last">
2550 stevensc 227
                <div className="subpanel">
1 www 228
                  <div
229
                    className="subpanel_title"
2554 stevensc 230
                    onClick={(e) => (e.currentTarget === e.target) && setIsChatOpen(!isChatOpen)}
1 www 231
                  >
2554 stevensc 232
                    <a
233
                      href="/chat"
234
                      className="text-gray text-chat-title"
1 www 235
                    >
2554 stevensc 236
                      Chat
2739 stevensc 237
                      <FiMaximize2 className="ml-3" />
2554 stevensc 238
                    </a>
239
                    <div className="subpanel_title-icons">
2555 stevensc 240
                      <i
241
                        className={`icon ${isMuted ? "icon-volume-off" : "icon-volume-2"} text-20`}
242
                        onClick={handleMute}
243
                      />
244
                      <i
245
                        className={`fa ${isChatOpen ? "fa-angle-down" : "fa-angle-up"} text-20`}
246
                        onClick={() => setIsChatOpen(!isChatOpen)}
247
                      />
1 www 248
                    </div>
249
                  </div>
250
                  <div
251
                    id="showhidechatlist"
2551 stevensc 252
                    style={{ display: isChatOpen ? "grid" : "none" }}
1 www 253
                  >
254
                    <div
255
                      className="drupalchat_search_main chatboxinput"
256
                      style={{ background: "#f9f9f9" }}
257
                    >
2561 stevensc 258
                      <input
259
                        className="drupalchat_searchinput live-search-box"
260
                        id="live-search-box"
261
                        type="text"
262
                        name='search'
263
                        value={search}
264
                        onChange={e => setSearch(e.target.value || '')}
265
                      />
266
                      <i className="searchbutton fas fa-search" />
1 www 267
                    </div>
268
                    <div
269
                      className="drupalchat_search_main chatboxinput"
270
                      style={{ background: "#f9f9f9" }}
271
                    >
2548 stevensc 272
                      <button
2549 stevensc 273
                        className={`${activeTab === 'user' ? 'active' : ''}`}
2548 stevensc 274
                        onClick={() => handleChangeTab("user")}
1 www 275
                      >
2548 stevensc 276
                        Contactos
277
                      </button>
278
                      <button
2549 stevensc 279
                        className={`${activeTab === 'group' ? 'active' : ''}`}
2548 stevensc 280
                        onClick={() => handleChangeTab("group")}
1 www 281
                      >
2548 stevensc 282
                        Grupos
283
                      </button>
1 www 284
                    </div>
285
                    <div
286
                      className="contact-list chatboxcontent"
287
                      style={{
288
                        display: activeTab === "user" ? "block" : "none",
289
                      }}
290
                    >
291
                      <Contacts
976 stevensc 292
                        contacts={filtredContacts}
1 www 293
                        onOpenConversation={handleOpenConversation}
294
                      />
295
                    </div>
296
                    <div
297
                      className="group-list chatboxcontent"
298
                      style={{
299
                        display: activeTab === "group" ? "block" : "none",
300
                      }}
301
                    >
302
                      <ul id="group-list-ul" className="live-search-list-group">
303
                        <Groups
988 stevensc 304
                          groups={filtredGroups}
1 www 305
                          onOpenConversation={handleOpenConversation}
306
                        />
307
                      </ul>
308
                    </div>
309
                    <div
310
                      className="group-contacts-list chatboxcontent"
311
                      style={{ display: "none" }}
312
                    >
313
                      <div style={{ textAlign: "center", fontSize: "13px" }}>
314
                        Integrantes del grupo
315
                      </div>
316
                      <ul
317
                        id="contact-group-list-ul"
318
                        className="live-search-list"
319
                      ></ul>
320
                    </div>
321
                  </div>
322
                </div>
323
              </li>
324
            </ul>
325
          </div>
326
        </div>
327
      </div>
328
      <div style={{ display: "flex" }}>
329
        {activeChats.map((entity, index) => (
330
          <PersonalChat
331
            key={entity.id}
332
            entity={entity}
333
            index={index}
334
            onClose={handleCloseChat}
335
            onMinimize={handleMinimizeChat}
336
            onRead={handleReadChat}
337
          />
338
        ))}
339
      </div>
1335 stevensc 340
      <NotificationAlert />
1 www 341
    </React.Fragment>
342
  ) : (
343
    ""
344
  );
345
};
346
 
347
export default Chat;