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