Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
986 stevensc 1
import { async } from "postcss-js";
976 stevensc 2
import React, { useCallback } from "react";
1 www 3
import { useState, useEffect } from "react";
976 stevensc 4
import { axios } from "../../utils";
1 www 5
import Contacts from "./contacts/Contacts";
6
import Groups from "./groups/Groups";
7
import PersonalChat from "./personal-chat/PersonalChat";
8
 
9
const notifyAudio = new Audio("/audio/chat.mp3");
10
 
11
const Chat = (props) => {
12
  // states
681 steven 13
  const [fullChats, setFullChats] = useState([]);
1 www 14
  const [contacts, setContacts] = useState([]);
15
  const [groups, setGroups] = useState([]);
16
  const [activeChats, setActiveChats] = useState([]);
17
  const [isChatOpen, setIsChatOpen] = useState(false);
18
  const [isMuted, setIsMuted] = useState(false);
19
  const [activeTab, setActiveTab] = useState("user");
669 steven 20
  const defaultChatInterval = 1500;
21
  const [chatInterval, setChatInterval] = useState(defaultChatInterval);
976 stevensc 22
  const [search, setSearch] = useState('');
23
 
994 stevensc 24
  const filtredContacts = contacts.filter(({ name }) => name.toLowerCase().includes(search.toLowerCase()))
25
  const filtredGroups = groups.filter(({ name }) => name.toLowerCase().includes(search.toLowerCase()))
976 stevensc 26
 
1 www 27
  // Time intervals
28
  let heartBeatInterval;
976 stevensc 29
  const handleEntities = entities => {
687 steven 30
    setFullChats([...entities]);
31
    let newUserContacts = [];
32
    let newGroups = [];
33
    entities.map((entity) => {
34
      if (entity.is_open) {
35
        handleOpenConversation(entity, true);
36
      }
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
  }
55
  const heartBeat = async () => {
689 steven 56
    try {
57
      const res = await axios.get("/chat/heart-beat")
681 steven 58
      let entities = [];
689 steven 59
      const resData = res.data;
1 www 60
      if (resData.success) {
61
        entities = resData.data;
689 steven 62
        handleEntities(entities);
1 www 63
      }
689 steven 64
      return entities;
65
    } catch (error) {
976 stevensc 66
      console.log('>>: chat error > ', error)
689 steven 67
    }
687 steven 68
  };
1 www 69
 
976 stevensc 70
 
71
 
1 www 72
  const handleUpdateOnline = (entity) => {
73
    const existingChatId = activeChats.findIndex(
74
      (activeChat) => activeChat.id === entity.id
75
    );
76
    if (existingChatId >= 0) {
77
      if (activeChats[existingChatId].online !== entity.online) {
78
        const newActiveChats = [...activeChats];
79
        newActiveChats[existingChatId].online = entity.online;
80
        setActiveChats(newActiveChats);
81
      }
82
    }
83
  };
84
 
85
  const handleNewMessage = async (unseeEntity) => {
86
    await axios.post(unseeEntity.url_mark_received).then((response) => {
976 stevensc 87
      ('')
1 www 88
    });
89
    if (!activeChats.some((activeChat) => activeChat.id === unseeEntity.id)) {
90
      setActiveChats([...activeChats, { ...unseeEntity, minimized: false }]);
91
      playNotifyAudio();
92
    } else {
93
      const existingChatId = activeChats.findIndex(
94
        (activeChat) => activeChat.id === unseeEntity.id
95
      );
96
      if (!activeChats[existingChatId].unsee_messages) {
97
        const newActiveChats = [...activeChats];
98
        newActiveChats[existingChatId].unsee_messages = true;
99
        setActiveChats(newActiveChats);
100
        playNotifyAudio(newActiveChats[existingChatId].minimized);
101
      }
102
    }
103
  };
104
 
105
  const handleOpenConversation = (entity, minimized = false) => {
978 stevensc 106
    if (activeChats.length < 3 && !activeChats.some((el) => el.id === entity.id)) {
1 www 107
      setActiveChats([...activeChats, { ...entity, minimized: minimized }]);
108
    }
986 stevensc 109
    if (activeChats.length >= 3 && !activeChats.some((el) => el.id === entity.id)) {
110
      activeChats.map((el, index) => {
111
        if (index === 0) {
112
          axios.post(el.url_close)
113
        }
114
      })
115
      const newActiveChats = activeChats.filter((el, index) => index !== 0)
116
      setActiveChats([...newActiveChats, { ...entity, minimized: minimized }]);
117
    }
1 www 118
  };
119
 
120
  const handleReadChat = (index) => {
121
    if (activeChats[index].unsee_messages) {
122
      const newActiveChats = [...activeChats];
123
      newActiveChats[index].unsee_messages = false;
124
      setActiveChats(newActiveChats);
125
    }
126
  };
127
 
128
  const handleMinimizeChat = (chatIndex, minimize) => {
129
    const newActiveChats = [...activeChats];
130
    switch (minimize) {
131
      case false:
132
        newActiveChats[chatIndex].minimized = false;
133
        break;
134
      default:
135
        newActiveChats[chatIndex].minimized =
136
          !newActiveChats[chatIndex].minimized;
137
        break;
138
    }
139
    setActiveChats(newActiveChats);
140
  };
141
 
142
  const handleCloseChat = (entityId, url_close) => {
143
    let newActiveChats = [];
144
    axios.post(url_close).then((response) => {
145
      const resData = response.data;
146
    });
147
    newActiveChats = activeChats.filter(
148
      (activeChat) => activeChat.id !== entityId
149
    );
150
    setActiveChats(newActiveChats);
151
  };
152
 
153
  const playNotifyAudio = (minimized = true) => {
154
    if (!isMuted && minimized) {
155
      notifyAudio.play();
156
    }
157
  };
158
 
159
  const handleMute = () => {
160
    setIsMuted(!isMuted);
161
    if (isMuted) {
162
      notifyAudio.play();
163
    }
164
  };
165
 
166
  const handleChangeTab = (tab) => {
167
    setActiveTab(tab);
168
  };
169
 
170
  useEffect(() => {
691 steven 171
    let entities = [];
1 www 172
    clearInterval(heartBeatInterval);
976 stevensc 173
    heartBeatInterval = setInterval(async () => {
691 steven 174
      entities = await heartBeat() || [];
669 steven 175
    }, chatInterval);
976 stevensc 176
    if ((entities === fullChats) && (chatInterval !== defaultChatInterval * 2)) {
691 steven 177
      clearInterval(heartBeatInterval);
178
      setChatInterval(defaultChatInterval * 2);
179
    }
1 www 180
    return () => {
181
      clearInterval(heartBeatInterval);
182
    };
689 steven 183
  }, [chatInterval, fullChats]);
978 stevensc 184
 
1 www 185
  useEffect(() => {
186
    emojione.imageType = "png";
187
    emojione.sprites = false;
188
    emojione.ascii = true;
189
    emojione.imagePathPNG = props.emojiOnePath;
190
  }, []);
191
 
192
  return window.innerWidth > 1000 ? (
193
    <React.Fragment>
194
      <div id="drupalchat-wrapper">
195
        <div id="drupalchat">
196
          <div className="item-list" id="chatbox_chatlist">
197
            <ul id="mainpanel">
198
              <li id="chatpanel" className="first last">
199
                <div className="subpanel" style={{ display: "block" }}>
200
                  <div
201
                    className="subpanel_title"
202
                    onClick={(e) => {
203
                      if (e.currentTarget === e.target)
204
                        setIsChatOpen(!isChatOpen);
205
                    }}
206
                  >
207
                    <div
208
                      style={{ width: "89%", height: "100%" }}
209
                      id="minmaxchatlist"
210
                      onClick={() => {
211
                        setIsChatOpen(!isChatOpen);
212
                      }}
213
                    >
214
                      <a
215
                        href="/chat"
216
                        className="text-white"
217
                      >
218
                        Chat
219
                      </a>
220
                    </div>
221
                    <span
222
                      className="min localhost-icon-minus-1"
223
                      id="mute-sound"
224
                    >
225
                      <i
976 stevensc 226
                        className={`icon ${isMuted ? "icon-volume-off" : "icon-volume-2"
227
                          } text-20`}
1 www 228
                        aria-hidden="true"
229
                        onClick={handleMute}
230
                      ></i>
231
                    </span>
232
                    {/* <span
233
                      className="min localhost-icon-minus-1"
234
                      id="new-chat-group"
235
                      style={{ marginRight: "5%" }}
236
                      title="Crear grupo"
237
                    >
238
                      <i className="fa fa-edit"></i>
239
                    </span> */}
240
                  </div>
241
                  <div
242
                    id="showhidechatlist"
243
                    style={{ display: isChatOpen ? "block" : "none" }}
244
                  >
245
                    <div
246
                      className="drupalchat_search_main chatboxinput"
247
                      style={{ background: "#f9f9f9" }}
248
                    >
249
                      <div
250
                        className="drupalchat_search"
251
                        style={{ height: "auto" }}
252
                      >
253
                        <input
254
                          className="drupalchat_searchinput live-search-box"
255
                          id="live-search-box"
256
                          placeholder="Buscar"
257
                          size="24"
258
                          type="text"
976 stevensc 259
                          name='search'
260
                          value={search}
261
                          onChange={e => {
262
                            setSearch(e.target.value || '')
263
                          }}
1 www 264
                        />
265
                        <button
266
                          className="searchbutton"
267
                          id="searchbutton"
268
                          title=""
269
                          style={{
270
                            height: "30px",
271
                            border: "none",
272
                            margin: "0px",
273
                            paddingRight: "13px",
274
                            verticalAlign: "middle",
275
                          }}
276
                          type="submit"
277
                        ></button>
278
                        <div
279
                          id="search_result"
280
                          style={{
281
                            textAlign: "center",
282
                            fontSize: "11px",
283
                            display: "none",
284
                          }}
285
                        >
286
                          Sin resultados
287
                        </div>
288
                      </div>
289
                    </div>
290
                    <div
291
                      className="drupalchat_search_main chatboxinput"
292
                      style={{ background: "#f9f9f9" }}
293
                    >
294
                      <div
295
                        style={{
296
                          width: "50%",
297
                          float: "left",
298
                          display: "inline-block",
299
                          padding: "5px",
300
                          textAlign: "center",
301
                          fontSize: "14px",
302
                        }}
303
                      >
304
                        <a
305
                          href="#"
306
                          className="blue-color chat-contacts"
307
                          onClick={(e) => {
308
                            e.preventDefault();
309
                            handleChangeTab("user");
310
                          }}
311
                        >
312
                          Contactos
313
                        </a>
314
                      </div>
315
                      <div
316
                        style={{
317
                          width: "50%",
318
                          display: "inline-block",
319
                          padding: "5px",
320
                          textAlign: "center",
321
                          fontSize: "14px",
322
                        }}
323
                      >
324
                        <a
325
                          href="#"
326
                          className="chat-groups"
327
                          onClick={(e) => {
328
                            e.preventDefault();
329
                            handleChangeTab("group");
330
                          }}
331
                        >
332
                          Grupos
333
                        </a>
334
                      </div>
335
                    </div>
336
                    <div
337
                      className="contact-list chatboxcontent"
338
                      style={{
339
                        display: activeTab === "user" ? "block" : "none",
340
                      }}
341
                    >
342
                      <Contacts
976 stevensc 343
                        contacts={filtredContacts}
1 www 344
                        onOpenConversation={handleOpenConversation}
345
                      />
346
                    </div>
347
                    <div
348
                      className="group-list chatboxcontent"
349
                      style={{
350
                        display: activeTab === "group" ? "block" : "none",
351
                      }}
352
                    >
353
                      <ul id="group-list-ul" className="live-search-list-group">
354
                        <Groups
988 stevensc 355
                          groups={filtredGroups}
1 www 356
                          onOpenConversation={handleOpenConversation}
357
                        />
358
                      </ul>
359
                    </div>
360
                    <div
361
                      className="group-contacts-list chatboxcontent"
362
                      style={{ display: "none" }}
363
                    >
364
                      <div style={{ textAlign: "center", fontSize: "13px" }}>
365
                        Integrantes del grupo
366
                      </div>
367
                      <ul
368
                        id="contact-group-list-ul"
369
                        className="live-search-list"
370
                      ></ul>
371
                    </div>
372
                  </div>
373
                </div>
374
              </li>
375
            </ul>
376
          </div>
377
        </div>
378
      </div>
379
      <div style={{ display: "flex" }}>
380
        {activeChats.map((entity, index) => (
381
          <PersonalChat
382
            key={entity.id}
383
            entity={entity}
384
            index={index}
385
            onClose={handleCloseChat}
386
            onMinimize={handleMinimizeChat}
387
            onRead={handleReadChat}
388
          />
389
        ))}
390
      </div>
391
    </React.Fragment>
392
  ) : (
393
    ""
394
  );
395
};
396
 
397
export default Chat;